diff options
author | marcus <marcus@FreeBSD.org> | 2002-09-14 19:51:37 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-09-14 19:51:37 +0000 |
commit | 59be92f8d61b8be632f86a4cda2baf8e69e0a612 (patch) | |
tree | 70620b856fc67c0da41bc4ea9ac3cc61ecea0e7d /audio | |
parent | 2e39649152284725b86066e2f987bd823132ba12 (diff) | |
download | FreeBSD-ports-59be92f8d61b8be632f86a4cda2baf8e69e0a612.zip FreeBSD-ports-59be92f8d61b8be632f86a4cda2baf8e69e0a612.tar.gz |
Add appropriate --disable-* CONFIGURE_ARGS to disable things such as esound
support from being built when esound is already installed on the system.
Reported by: alane
Approved by: timeout from maintainer
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmms/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/audio/xmms/Makefile b/audio/xmms/Makefile index 024c51a..2eb5e77 100644 --- a/audio/xmms/Makefile +++ b/audio/xmms/Makefile @@ -42,6 +42,7 @@ LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod INPUT_PLUGINS+= mikmod PLIST_SUB+= MIKMODPLUGIN:="" .else +CONFIGURE_ARGS+= --disable-mikmod PLIST_SUB+= MIKMODPLUGIN:="@comment " .endif @@ -50,6 +51,7 @@ LIB_DEPENDS+= vorbis.2:${PORTSDIR}/audio/libvorbis INPUT_PLUGINS+= vorbis PLIST_SUB+= VORBISPLUGIN:="" .else +CONFIGURE_ARGS+= --disable-vorbis PLIST_SUB+= VORBISPLUGIN:="@comment " .endif @@ -63,6 +65,7 @@ PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-esound PKGNAMESUFFIX= -esound .endif .else +CONFIGURE_ARGS+= --disable-esd PLIST_SUB+= ESDPLUGIN:="@comment " .endif @@ -75,7 +78,7 @@ PKGNAMESUFFIX= -gnome .endif PLIST_SUB+= DATADIR="share/gnome" .else -CONFIGURE_ARGS= --without-gnome +CONFIGURE_ARGS+= --without-gnome PLIST_SUB+= DATADIR="share" .endif |