diff options
author | dillo <dillo> | 2004-07-26 17:22:40 +0000 |
---|---|---|
committer | dillo <dillo> | 2004-07-26 17:22:40 +0000 |
commit | 6e5312a49b0d7b8da2364c7ba2e0db71076bebe8 (patch) | |
tree | 05a13679373eaa7629b22dd06f771f8869f4c370 /emulators/vice/Makefile | |
parent | 7be299159ac7563335e147e5ff9baf3eae4c77b4 (diff) | |
download | pkgsrc-6e5312a49b0d7b8da2364c7ba2e0db71076bebe8.tar.gz |
various improvements:
- enable fullscreen support
- enable PNG screenshots
- only use esound if USE_ESOUND is yes
- add USB joystick support (okayed by kristerw)
PKGREVISION++
Diffstat (limited to 'emulators/vice/Makefile')
-rw-r--r-- | emulators/vice/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 682370760ba..5ff695d4f15 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.45 2004/07/16 22:59:11 kristerw Exp $ +# $NetBSD: Makefile,v 1.46 2004/07/26 17:22:40 dillo Exp $ # DISTNAME= vice-1.14 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= emulators MASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/ \ http://www.nic.funet.fi/pub/cbm/crossplatform/emulators/VICE/ @@ -27,10 +27,12 @@ USE_X11= YES USE_GNU_TOOLS+= make GNU_CONFIGURE= YES USE_GCC_SHLIB= YES +CONFIGURE_ARGS+= --enable-fullscreen INFO_FILES= vice.info BUILD_DEFS+= VICE_USE_FFMPEG +BUILD_DEFS+= USE_ESOUND .include "../../mk/bsd.prefs.mk" @@ -53,10 +55,13 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/vice ${MV} ${PREFIX}/share/doc/vice/*.html ${PREFIX}/share/doc/html/vice +.if !empty(USE_ESOUND:M[Yy][Ee][Ss]) .include "../../audio/esound/buildlink3.mk" +.endif .include "../../devel/readline/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" .include "../../graphics/xpm/buildlink3.mk" .if !empty(VICE_USE_FFMPEG:M[Yy][Ee][Ss]) .include "../../multimedia/ffmpeg/buildlink3.mk" |