diff options
author | adam <adam@pkgsrc.org> | 2010-08-27 08:24:27 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-08-27 08:24:27 +0000 |
commit | 4a794471acfcb93e879cd9ff4ec7072176f16e49 (patch) | |
tree | 1801936af7f9191ea13365a6ddb32d2ecea97a50 /emulators/hatari/Makefile | |
parent | 741a484848c5f6e2f8834984fbd99575818fc60c (diff) | |
download | pkgsrc-4a794471acfcb93e879cd9ff4ec7072176f16e49.tar.gz |
Changes 1.4.0:
Emulation:
- IDE improvements:
- Support for second drive (IDE slave)
- WIN_FORMAT command (allows HD Driver to format IDE drives)
- GEMDOS HDD emulation:
- Minor fixes to Fseek(), Fopen(), Fdatime() (e.g. Pure debugger works)
- On TOS v4 Fread() size arg is unsigned, on earlier TOS its signed
(bad code can use -1L to read whole file instead getting fail on TOS4)
- Prevent DTA and read/write functions accessing invalid memory areas
- Programs can now change read-only files to be writable
- Falcon sound emulation:
- Microphone (jack) emulation in Falcon mode (requires portaudio library)
- SSI direct sound entrance ("Audio Fun Machine" and winrec are working)
- DMA sound recording
- Crossbar handshake mode transfers
- Max VDI rez increased to TT-hi size (1280x960)
- 68020+FPU changed to 68EC030+FPU (no MMU 030) for Falcon and TT modes
(Some Falcon programs didn't work with 020)
- Video emulation on STF/STE:
- correctly shift the screen 4 pixels to the left when left border is removed
- add support for STE's 224 bytes overscan line without stabilizer
- when reading $ff8205/07/09 on STE, take into account the value
of horizontal scrolling/prefetch and linewidth
- when writing to $ff8205/07/09 on STE, correctly handle the case
where the write is made while display in ON
- LMC1992 emulation / STE sound filtering
Diffstat (limited to 'emulators/hatari/Makefile')
-rw-r--r-- | emulators/hatari/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/emulators/hatari/Makefile b/emulators/hatari/Makefile index e26dd26e03b..ec1c77cdafd 100644 --- a/emulators/hatari/Makefile +++ b/emulators/hatari/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2010/05/23 18:46:27 adam Exp $ +# $NetBSD: Makefile,v 1.28 2010/08/27 08:24:27 adam Exp $ -DISTNAME= hatari-1.3.1 +DISTNAME= hatari-1.4.0 CATEGORIES= emulators MASTER_SITES= http://download.berlios.de/hatari/ EXTRACT_SUFX= .tar.bz2 @@ -11,18 +11,16 @@ COMMENT= Atari ST emulator PKG_DESTDIR_SUPPORT= user-destdir -USE_TOOLS+= gmake -GNU_CONFIGURE= yes +USE_CMAKE= yes +USE_LANGUAGES= c c++ +#USE_TOOLS+= gmake +#GNU_CONFIGURE= yes INSTALLATION_DIRS+= share/doc/hatari -post-install: - cd ${WRKSRC} && ${INSTALL_DATA} *.txt \ - ${DESTDIR}${PREFIX}/share/doc/hatari - cd ${WRKSRC}/doc && ${INSTALL_DATA} *.txt *.html \ - ${DESTDIR}${PREFIX}/share/doc/hatari - +.include "../../audio/portaudio/buildlink3.mk" .include "../../devel/SDL/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../mk/bsd.pkg.mk" |