aboutsummaryrefslogtreecommitdiff
path: root/graphics/gnash
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-03-18 13:29:48 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-03-18 13:29:48 +0000
commit86df52a374db4e00648ad6126961eb71da78b49a (patch)
treefc61761b7338fba98af90f274fb57a76d2e29f97 /graphics/gnash
parent119f91f2035382aefdbf248e2b1088c9839b9ab7 (diff)
downloadports-86df52a374db4e00648ad6126961eb71da78b49a.tar.gz
ports-86df52a374db4e00648ad6126961eb71da78b49a.zip
- GTK is required by PLUGIN
PR: ports/110459 Submitted by: Dmitry Marakasov <amdmi3 at amdmi3.ru> (maintainer)
Notes
Notes: svn path=/head/; revision=187642
Diffstat (limited to 'graphics/gnash')
-rw-r--r--graphics/gnash/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gnash/Makefile b/graphics/gnash/Makefile
index dbb4efb03125..379eef2259a7 100644
--- a/graphics/gnash/Makefile
+++ b/graphics/gnash/Makefile
@@ -38,7 +38,7 @@ CONFIGURE_ARGS= --libdir="${PREFIX}/lib/gnash" \
MAN1= gnash.1
OPTIONS= PLUGIN "Enable browser plugin" on \
- GTK "Enable GTK GUI" on \
+ GTK "Enable GTK GUI (required for plugin)" on \
SOUND "Enable sound" on \
GSTREAMER "Use GStreamer sound output instead of SDL" off \
MAD "Support mp3 decoding through libmad" on
@@ -72,7 +72,7 @@ LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad
. endif
.endif
-.if defined(WITHOUT_PLUGIN)
+.if defined(WITHOUT_PLUGIN) || defined(WITHOUT_GTK)
PLIST_SUB+= PLUGIN="@comment "
CONFIGURE_ARGS+= --disable-plugin
.else