diff options
author | dillo <dillo@pkgsrc.org> | 2004-06-05 11:56:31 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2004-06-05 11:56:31 +0000 |
commit | 61eff01ffdbba96859331b518888e8341bb5e5a3 (patch) | |
tree | 3a6eae2725b4addecd15983948ec348f680bbf7c /emulators/stella/Makefile | |
parent | 35a3c704971a1a4f3b79ce40905c7a68e3ec0e4c (diff) | |
download | pkgsrc-61eff01ffdbba96859331b518888e8341bb5e5a3.tar.gz |
update to 1.3, prepare for forthcoming stella-sdl, take maintanership
Changes since 1.1:
* Improved TIA sound system so that games with digitized audio work
* Added saving and loading of game state to the core; X11, SDL,
and DOS versions current support saving and loading game state
* Added support for F4 bankswitching method
* Pitfall II DPC sound emulation completed
* Support added for the Commavid (CV) bankswitching method.
* Support added for the Megaboy cartridge.
* Improved Supercharger emulation including a new BIOS that shows
the vertical blue progress bars like the real thing.
* Added snapshot support to the X11 and SDL versions. Pressing F12
saves the current screen in PNG format. Requires PNG library.
* Added pause functionality to the core. Implemented in DOS, X11,
and SDL versions for now.
Diffstat (limited to 'emulators/stella/Makefile')
-rw-r--r-- | emulators/stella/Makefile | 36 |
1 files changed, 7 insertions, 29 deletions
diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile index 0d000763104..55aa6cb7b47 100644 --- a/emulators/stella/Makefile +++ b/emulators/stella/Makefile @@ -1,36 +1,14 @@ -# $NetBSD: Makefile,v 1.16 2004/02/01 01:43:29 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2004/06/05 11:56:31 dillo Exp $ -DISTNAME= stella-1.1-src -PKGNAME= stella-1.1 -CATEGORIES= emulators -MASTER_SITES= ftp://ftp.eos.ncsu.edu/pub/bsvc/stella/1.1/ +PKGNAME= stella-${STELLA_VERSION} +CONFLICTS= stella-sdl-[0-9]* -MAINTAINER= tech-pkg@NetBSD.org -HOMEPAGE= http://stella.atari.org/ -COMMENT= Multi-platform Atari 2600 VCS emulator +.include "Makefile.common" -WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}/src/build USE_X11= yes - -MAKEFILE= makefile +MAKE_ENV+= SOUND_OSS=1 ALL_TARGET= unix-x +STELLA= stella.x11 -.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" -GCC_REQD+= 3.0 -.endif - -MAKE_ENV= CXXFLAGS="${CXXFLAGS} -fno-rtti" - -post-build: - @cd ${WRKSRC}/../ui/sound && ${MAKE} oss - -do-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/stella - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/stella - ${INSTALL_PROGRAM} ${WRKSRC}/xstella ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/../ui/sound/stella-sound ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/../../games/ROMS/* ${PREFIX}/share/stella - ${INSTALL_DATA} ${WRKSRC}/../../games/docs/* ${PREFIX}/share/doc/stella - ${INSTALL_DATA} ${WRKSRC}/../../docs/Stella.pdf ${PREFIX}/share/doc/stella/stella.pdf - +.include "../../mk/ossaudio.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |