diff options
author | wiz <wiz@pkgsrc.org> | 2005-07-18 12:07:32 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-07-18 12:07:32 +0000 |
commit | 9dfa7334527b1ee7510ed7fa1ddbbcebd91f5266 (patch) | |
tree | 5ff1c3595742b463d15b655eea23c32cafcf7af3 /multimedia | |
parent | a854b563441a517bef2ee7b3dff5513b213eefa5 (diff) | |
download | pkgsrc-9dfa7334527b1ee7510ed7fa1ddbbcebd91f5266.tar.gz |
Add an aalib option to mplayer. Patch from Leonard Schmidt on tech-pkg.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer-share/options.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/multimedia/mplayer-share/options.mk b/multimedia/mplayer-share/options.mk index 81b0e1fb28d..e0390b334fe 100644 --- a/multimedia/mplayer-share/options.mk +++ b/multimedia/mplayer-share/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2005/06/08 16:18:44 dillo Exp $ +# $NetBSD: options.mk,v 1.5 2005/07/18 12:07:33 wiz Exp $ .if defined(PKGNAME) && empty(PKGNAME:Mmplayer-share*) @@ -15,7 +15,7 @@ PKG_SUPPORTED_OPTIONS= gif jpeg mad dv dvdread oss png theora vorbis # Set options based on the specific package being built. .if !empty(PKGNAME:M*mplayer*) -PKG_SUPPORTED_OPTIONS+= esound mplayer-menu nas sdl +PKG_SUPPORTED_OPTIONS+= aalib esound mplayer-menu nas sdl . if ${OPSYS} != "SunOS" PKG_SUPPORTED_OPTIONS+= arts @@ -45,7 +45,7 @@ PKG_SUPPORTED_OPTIONS+= mplayer-real # Define PKG_SUGGESTED_OPTIONS. # ------------------------------------------------------------------------- -.for _o_ in arts cdparanoia dv dvdread esound gif jpeg \ +.for _o_ in aalib arts cdparanoia dv dvdread esound gif jpeg \ lame mad mplayer-menu mplayer-real \ mplayer-runtime-cpudetection mplayer-win32 \ nas oss png sdl theora vorbis xvid @@ -78,6 +78,13 @@ PKG_OPTIONS_LEGACY_VARS+= MPLAYER_USE_MEDIALIB:mlib .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Maalib) +CONFIGURE_ARGS+= --enable-aa +. include "../../graphics/aalib-x11/buildlink3.mk" +.else +CONFIGURE_ARGS+= --disable-aa +.endif + .if !empty(PKG_OPTIONS:Marts) CONFIGURE_ARGS+= --enable-arts . include "../../audio/arts/buildlink3.mk" |