summaryrefslogtreecommitdiff
path: root/multimedia/xmms/Makefile
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-02-08 07:20:55 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-02-08 07:20:55 +0000
commitef53de4d354bfa602934feb7534c531b43ee909e (patch)
treeb01b137034cd251cf14f6e61e8f410d89ede9132 /multimedia/xmms/Makefile
parent- Update to 2.67 (diff)
- Go with "old style" options defines
- Makefile cleanup PR: ports/120351 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com>
Notes
Notes: svn path=/head/; revision=206884
Diffstat (limited to '')
-rw-r--r--multimedia/xmms/Makefile20
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