aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorstas <stas@FreeBSD.org>2006-12-17 21:52:02 +0800
committerstas <stas@FreeBSD.org>2006-12-17 21:52:02 +0800
commitdd0af2895e071df2db148a3614e0d25281d73fea (patch)
tree5f934f899fa398436de7c339522c37e332d6262d /multimedia
parent338a92753d3d640a97c17cae6f0bf6994ec0a979 (diff)
downloadfreebsd-ports-gnome-dd0af2895e071df2db148a3614e0d25281d73fea.tar.gz
freebsd-ports-gnome-dd0af2895e071df2db148a3614e0d25281d73fea.tar.zst
freebsd-ports-gnome-dd0af2895e071df2db148a3614e0d25281d73fea.zip
- Fix OPTIONS handling in the case of batch build
Reported by: corl3ss <corl3ss@corl3ss.com>
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/emotion/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/emotion/Makefile b/multimedia/emotion/Makefile
index 6c4dc261941a..06365b2a19f5 100644
--- a/multimedia/emotion/Makefile
+++ b/multimedia/emotion/Makefile
@@ -32,7 +32,7 @@ OPTIONS= XINE "Build Xine module" on \
IGNORE= is useless without playback library. Please run 'make config' and choose one of XINE and GST
.endif
-.if defined(WITH_XINE)
+.if !defined(WITHOUT_XINE)
LIB_DEPENDS+= xine.16:${PORTSDIR}/multimedia/libxine
CONFIGURE_ARGS+=--enable-xine
PLIST_SUB+= XINE=""
@@ -41,7 +41,7 @@ CONFIGURE_ARGS+=--disable-xine
PLIST_SUB+= XINE="@comment "
.endif
-.if defined(WITH_GST)
+.if !defined(WITHOUT_GST)
USE_GSTREAMER= ffmpeg good
CONFIGURE_ARGS+=--enable-gstreamer
PLIST_SUB+= GST=""