diff options
author | beech <beech@FreeBSD.org> | 2008-02-08 15:20:55 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-02-08 15:20:55 +0800 |
commit | ee431dbe2b64ac972e4a5d51b756e53fd007ca76 (patch) | |
tree | 25689da81d8c960e3214caae6c9b6e06d33752ac /multimedia | |
parent | ed905e1ea847de6e004435f3cb0369beca4ac052 (diff) | |
download | freebsd-ports-gnome-ee431dbe2b64ac972e4a5d51b756e53fd007ca76.tar.gz freebsd-ports-gnome-ee431dbe2b64ac972e4a5d51b756e53fd007ca76.tar.zst freebsd-ports-gnome-ee431dbe2b64ac972e4a5d51b756e53fd007ca76.zip |
- Go with "old style" options defines
- Makefile cleanup
PR: ports/120351
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com>
Diffstat (limited to 'multimedia')
-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 |