diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-09-14 19:51:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-09-14 19:51:37 +0000 |
commit | 57f07d16a7e6839a2797bcb089b17531b9e18e36 (patch) | |
tree | 2859ff2a1dd1d9e7695b9adce113c2759bfdc11e /audio | |
parent | don't depend on perl (diff) |
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
Notes
Notes:
svn path=/head/; revision=66308
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 024c51af3903..2eb5e77956e3 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 |