diff options
author | shattered <shattered@pkgsrc.org> | 2010-12-17 19:05:35 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2010-12-17 19:05:35 +0000 |
commit | 2a5ba4670e02fc8ee0967b95ad5262154fb59252 (patch) | |
tree | 40e96aec54b8413edd0a99e3e45582c123728565 /multimedia/mplayer-share | |
parent | d2749b396b20bd15ba735b1343bb2740c715d23a (diff) | |
download | pkgsrc-2a5ba4670e02fc8ee0967b95ad5262154fb59252.tar.gz |
PR/37694: add optional support for libcaca. Tested on 4.0/i386.
Diffstat (limited to 'multimedia/mplayer-share')
-rw-r--r-- | multimedia/mplayer-share/options.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/multimedia/mplayer-share/options.mk b/multimedia/mplayer-share/options.mk index 58be40b2d66..d50d41f2445 100644 --- a/multimedia/mplayer-share/options.mk +++ b/multimedia/mplayer-share/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.41 2010/09/16 18:56:12 wiz Exp $ +# $NetBSD: options.mk,v 1.42 2010/12/17 19:05:35 shattered Exp $ .if defined(PKGNAME) && empty(PKGNAME:Mmplayer-share*) @@ -27,7 +27,7 @@ PKG_SUGGESTED_OPTIONS+= mplayer-internal-faad # Set options based on the specific package being built. .if !empty(PKGNAME:M*mplayer*) -PKG_SUPPORTED_OPTIONS+= aalib esound ggi mplayer-menu nas pulseaudio sdl +PKG_SUPPORTED_OPTIONS+= aalib caca esound ggi mplayer-menu nas pulseaudio sdl .if ${VDPAU_AVAILABLE} == "yes" PKG_SUPPORTED_OPTIONS+= vdpau @@ -115,6 +115,11 @@ EXTRA_LIBS+= -lartsc CONFIGURE_ARGS+= --disable-arts .endif +.if !empty(PKG_OPTIONS:Mcaca) +CONFIGURE_ARGS+= --enable-caca +. include "../../graphics/libcaca/buildlink3.mk" +.endif + .if !empty(PKG_OPTIONS:Mcdparanoia) CONFIGURE_ARGS+= --enable-cdparanoia . include "../../audio/cdparanoia/buildlink3.mk" |