diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2008-02-08 07:20:55 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2008-02-08 07:20:55 +0000 |
commit | ef53de4d354bfa602934feb7534c531b43ee909e (patch) | |
tree | b01b137034cd251cf14f6e61e8f410d89ede9132 /multimedia/xmms | |
parent | 3729ef8e21d9d56e4efe5522f88ab856269976f1 (diff) | |
download | ports-ef53de4d354bfa602934feb7534c531b43ee909e.tar.gz ports-ef53de4d354bfa602934feb7534c531b43ee909e.zip |
Notes
Diffstat (limited to 'multimedia/xmms')
-rw-r--r-- | multimedia/xmms/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/multimedia/xmms/Makefile b/multimedia/xmms/Makefile index 94affb593981..84e4ff5bab9f 100644 --- a/multimedia/xmms/Makefile +++ b/multimedia/xmms/Makefile @@ -40,11 +40,11 @@ VISUALIZATION_PLUGINS= blur_scope sanalyzer opengl_spectrum PLIST_SUB+= DATADIR="share" OPTIONS= NLS "Internationalization" on \ - IPV6 "Use ipv6" on \ - VFILEINFO "Extended Vorbis Fileinfo" off \ - VORBIS "Vorbis Plugin" on \ - MIKMOD "Mikemod Plugin" on \ - SIMD "x86 SIMD (3DNow!/MMX)" on + IPV6 "Enable ipv6" on \ + VFILEINFO "Enable Extended Vorbis Fileinfo" off \ + VORBIS "Enable Vorbis Plugin" on \ + MIKMOD "Enable Mikemod Plugin" on \ + SIMD "Enable x86 SIMD (3DNow!/MMX)" on .include <bsd.port.pre.mk> @@ -56,7 +56,7 @@ CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif -.if defined(WITH_IPV6) +.if !defined(WITHOUT_IPV6) CONFIGURE_ARGS+= --enable-ipv6 .endif @@ -74,7 +74,7 @@ LIB_DEPENDS+= rcd.1:${PORTSDIR}/devel/librcd CFLAGS+= -DALL_VORBIS_TAGS .endif -.if defined(WITH_MIKMOD) +.if !defined(WITHOUT_MIKMOD) LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod INPUT_PLUGINS+= mikmod PLIST_SUB+= MIKMODPLUGIN:="" @@ -83,7 +83,7 @@ CONFIGURE_ARGS+= --disable-mikmod PLIST_SUB+= MIKMODPLUGIN:="@comment " .endif -.if defined(WITH_VORBIS) +.if !defined(WITHOUT_VORBIS) LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis INPUT_PLUGINS+= vorbis PLIST_SUB+= VORBISPLUGIN:="" @@ -105,7 +105,7 @@ PLIST_SUB+= ESDPLUGIN:="@comment " WITHOUT_SIMD+= yes .endif -.if defined(WITH_SIMD) +.if !defined(WITHOUT_SIMD) CONFIGURE_ARGS+= --enable-simd .endif @@ -151,7 +151,7 @@ post-patch: . endfor .endif # If there is no esound installed, the autotools won't find a required macro -.if !${HAVE_GNOME:Mesound}!="" +.if ${HAVE_GNOME:Mesound}=="" ${REINPLACE_CMD} -e '/AM_PATH_ESD/,/have_esd=no/d' ${WRKSRC}/configure.in .endif |