diff options
author | wiz <wiz> | 2005-07-21 15:20:47 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-07-21 15:20:47 +0000 |
commit | 2d7f2cb7a8432db91da6637e04f07c6b13fffa49 (patch) | |
tree | b2d2bedbfd79cfea02139bbb8a18a325650dc93d /multimedia | |
parent | 05cc6ffe3d4c8263a74864ac462e1bb98d5356c1 (diff) | |
download | pkgsrc-2d7f2cb7a8432db91da6637e04f07c6b13fffa49.tar.gz |
Add ggi option for mplayer, from Christoph Egger in private mail.
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 5c918431487..d4112fc19ad 100644 --- a/multimedia/mplayer-share/options.mk +++ b/multimedia/mplayer-share/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2005/07/21 14:24:48 wiz Exp $ +# $NetBSD: options.mk,v 1.7 2005/07/21 15:20:47 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+= aalib esound mplayer-menu nas sdl +PKG_SUPPORTED_OPTIONS+= aalib esound ggi mplayer-menu nas sdl . if ${OPSYS} != "SunOS" PKG_SUPPORTED_OPTIONS+= arts @@ -48,7 +48,7 @@ PKG_SUPPORTED_OPTIONS+= mplayer-real .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 + nas oss png sdl theora vorbis xvid . if !empty(PKG_SUPPORTED_OPTIONS:M${_o_}) PKG_SUGGESTED_OPTIONS+= ${_o_} . endif @@ -118,6 +118,13 @@ CONFIGURE_ARGS+= --enable-esd CONFIGURE_ARGS+= --disable-esd .endif +.if !empty(PKG_OPTIONS:Mggi) +CONFIGURE_ARGS+= --enable-ggi +. include "../../graphics/libggi/buildlink3.mk" +.else +CONFIGURE_ARGS+= --disable-ggi +.endif + .if !empty(PKG_OPTIONS:Mgif) CONFIGURE_ARGS+= --enable-gif . include "../../graphics/libungif/buildlink3.mk" |