diff options
author | wiz <wiz@pkgsrc.org> | 2004-09-01 23:07:57 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-09-01 23:07:57 +0000 |
commit | 7a8b13c9617ad4039006466e1fa5fb2e5db82759 (patch) | |
tree | a0523846c437178509601c9caba6fc6c4c33dd5e /emulators/vice | |
parent | df98995a34505c49a5ce28ec592391e173ab7256 (diff) | |
download | pkgsrc-7a8b13c9617ad4039006466e1fa5fb2e5db82759.tar.gz |
Add --enable-ffmpeg to configure arguments if ffmpeg option
is wanted (not done automatically any longer).
Bump PKGREVISION.
Diffstat (limited to 'emulators/vice')
-rw-r--r-- | emulators/vice/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 9f9753caa2a..89eef5ae792 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.50 2004/08/31 15:53:09 dillo Exp $ +# $NetBSD: Makefile,v 1.51 2004/09/01 23:07:57 wiz Exp $ # DISTNAME= vice-1.15 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/ \ http://www.nic.funet.fi/pub/cbm/crossplatform/emulators/VICE/ @@ -45,6 +46,10 @@ PKG_SUPPORTED_OPTIONS= esound ffmpeg gnome CONFIGURE_ENV+= ac_cv_header_sys_soundcard_h=no .endif +.if !empty(PKG_OPTIONS:Mffmpeg) +CONFIGURE_ARGS+= --enable-ffmpeg +.endif + .if !empty(PKG_OPTIONS:Mgnome) CONFIGURE_ARGS+= --enable-gnomeui .endif |