diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-18 21:29:48 +0800 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-18 21:29:48 +0800 |
commit | 86df52a374db4e00648ad6126961eb71da78b49a (patch) | |
tree | fc61761b7338fba98af90f274fb57a76d2e29f97 /graphics | |
parent | 119f91f2035382aefdbf248e2b1088c9839b9ab7 (diff) | |
download | freebsd-ports-gnome-86df52a374db4e00648ad6126961eb71da78b49a.tar.gz freebsd-ports-gnome-86df52a374db4e00648ad6126961eb71da78b49a.tar.zst freebsd-ports-gnome-86df52a374db4e00648ad6126961eb71da78b49a.zip |
- GTK is required by PLUGIN
PR: ports/110459
Submitted by: Dmitry Marakasov <amdmi3 at amdmi3.ru> (maintainer)
Diffstat (limited to 'graphics')
-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 |