aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakc <makc@FreeBSD.org>2010-09-18 23:57:28 +0800
committermakc <makc@FreeBSD.org>2010-09-18 23:57:28 +0800
commitded18e3273b22fdb2371f5820dd99acd19653b4d (patch)
treeabf6ca2a19645089f6beb442cc76c521ae12ec7e
parent67f714dbd8f3586a9d4c80bd3368b46628088f6e (diff)
downloadfreebsd-ports-gnome-ded18e3273b22fdb2371f5820dd99acd19653b4d.tar.gz
freebsd-ports-gnome-ded18e3273b22fdb2371f5820dd99acd19653b4d.tar.zst
freebsd-ports-gnome-ded18e3273b22fdb2371f5820dd99acd19653b4d.zip
Fix CONFIGURE_ARGS
PR: ports/150662 Submitted by: KATO Tsuguru <tkato432 at yahoo.com>
-rw-r--r--audio/ecasound/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/audio/ecasound/Makefile b/audio/ecasound/Makefile
index 0b3694377ca9..ce2494d301e6 100644
--- a/audio/ecasound/Makefile
+++ b/audio/ecasound/Makefile
@@ -7,6 +7,7 @@
PORTNAME= ecasound
PORTVERSION= 2.7.2
+PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://ecasound.seul.org/download/
@@ -64,12 +65,14 @@ CONFIGURE_ARGS+= --disable-jack
.if defined(WITH_LO)
LIB_DEPENDS+= lo.7:${PORTSDIR}/audio/liblo
-CONFIGURE_ARGS+= --enable-liblo
+.else
+CONFIGURE_ARGS+= --disable-liblo
.endif
.if defined(WITH_OIL)
LIB_DEPENDS+= oil-0.3.0:${PORTSDIR}/devel/liboil
-CONFIGURE_ARGS+= --enable-liboil
+.else
+CONFIGURE_ARGS+= --disable-liboil
.endif
.if defined(WITH_SAMPLERATE)