diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-18 13:29:48 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-18 13:29:48 +0000 |
commit | 86df52a374db4e00648ad6126961eb71da78b49a (patch) | |
tree | fc61761b7338fba98af90f274fb57a76d2e29f97 | |
parent | - Update to 1.11.6 (diff) |
- GTK is required by PLUGIN
PR: ports/110459
Submitted by: Dmitry Marakasov <amdmi3 at amdmi3.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=187642
-rw-r--r-- | graphics/gnash-devel/Makefile | 4 | ||||
-rw-r--r-- | graphics/gnash/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/gnash-devel/Makefile b/graphics/gnash-devel/Makefile index dbb4efb03125..379eef2259a7 100644 --- a/graphics/gnash-devel/Makefile +++ b/graphics/gnash-devel/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 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 |