diff options
author | adam <adam> | 2004-11-19 10:09:48 +0000 |
---|---|---|
committer | adam <adam> | 2004-11-19 10:09:48 +0000 |
commit | f2a1ffc8ed3e5b9df1db7eb32147d264a8482d9f (patch) | |
tree | 0b8ea62b920fb7cf4d86d8024362ea979b593e22 /emulators/hatari/Makefile | |
parent | 495a1980acdf58a6f53f0b39ab90350f54bf0bd8 (diff) | |
download | pkgsrc-f2a1ffc8ed3e5b9df1db7eb32147d264a8482d9f.tar.gz |
Changes 0.50:
- A lot of internal code cleanup and bug fixes.
- Added a dialog for creating new blank floppy disk images.
- The source code has been optimized for better emulation speed.
- Added RS232 emulation (still very experimental and not very well tested! It
seems not to work reliable yet. Help for debugging is very appreciated!).
- Some bugs in the 68000 emulation have been fixed.
- The emulator now checks for double bus errors and stops the emulation if
necessary (instead of crashing the emulator).
- Timer-D is now patched correctly again.
- The old font has been replaced by two new fonts so that the GUI now looks
better in high resolutions.
- The fonts are now linked into the executable.
- Added support for DIM floppy disk images.
Diffstat (limited to 'emulators/hatari/Makefile')
-rw-r--r-- | emulators/hatari/Makefile | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/emulators/hatari/Makefile b/emulators/hatari/Makefile index a842ee4ffce..b5698299cbe 100644 --- a/emulators/hatari/Makefile +++ b/emulators/hatari/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2004/10/03 00:14:40 tv Exp $ -# +# $NetBSD: Makefile,v 1.12 2004/11/19 10:09:48 adam Exp $ -DISTNAME= hatari-0.45 -PKGREVISION= 1 +DISTNAME= hatari-0.50 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hatari/} @@ -10,21 +8,15 @@ MAINTAINER= cjep@NetBSD.org HOMEPAGE= http://hatari.sourceforge.net/ COMMENT= Atari ST emulator -WRKSRC= ${WRKDIR}/${DISTNAME}/src -USE_BUILDLINK3= YES -USE_X11= YES -USE_GNU_TOOLS+= make +USE_BUILDLINK3= YES +USE_GNU_TOOLS+= make +USE_X11= YES +GNU_CONFIGURE= YES -ALL_TARGET= hatari -MAKE_FLAGS+= DATADIR="${PREFIX}/share/hatari" - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hatari ${PREFIX}/bin - ${INSTALL_DATA_DIR} ${PREFIX}/share/hatari - ${INSTALL_DATA} ${WRKSRC}/font8.bmp ${PREFIX}/share/hatari +post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/hatari - cd ${WRKSRC}/.. && ${INSTALL_DATA} *.txt ${PREFIX}/share/doc/hatari - cd ${WRKSRC}/../doc && ${INSTALL_DATA} *.txt manual.html \ + cd ${WRKSRC} && ${INSTALL_DATA} *.txt ${PREFIX}/share/doc/hatari + cd ${WRKSRC}/doc && ${INSTALL_DATA} *.txt *.html \ ${PREFIX}/share/doc/hatari .include "../../devel/SDL/buildlink3.mk" |