- Fix OPTIONS handling in the case of batch build

Reported by:	corl3ss <corl3ss@corl3ss.com>
This commit is contained in:
Stanislav Sedov 2006-12-17 13:52:02 +00:00
parent 15fa02d05f
commit 8b34ce6ab3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=180014

View file

@ -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 IGNORE= is useless without playback library. Please run 'make config' and choose one of XINE and GST
.endif .endif
.if defined(WITH_XINE) .if !defined(WITHOUT_XINE)
LIB_DEPENDS+= xine.16:${PORTSDIR}/multimedia/libxine LIB_DEPENDS+= xine.16:${PORTSDIR}/multimedia/libxine
CONFIGURE_ARGS+=--enable-xine CONFIGURE_ARGS+=--enable-xine
PLIST_SUB+= XINE="" PLIST_SUB+= XINE=""
@ -41,7 +41,7 @@ CONFIGURE_ARGS+=--disable-xine
PLIST_SUB+= XINE="@comment " PLIST_SUB+= XINE="@comment "
.endif .endif
.if defined(WITH_GST) .if !defined(WITHOUT_GST)
USE_GSTREAMER= ffmpeg good USE_GSTREAMER= ffmpeg good
CONFIGURE_ARGS+=--enable-gstreamer CONFIGURE_ARGS+=--enable-gstreamer
PLIST_SUB+= GST="" PLIST_SUB+= GST=""