summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2010-05-24 04:52:40 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2010-05-24 04:52:40 +0000
commite0b8608d46203e234443708148845d0501ee3cd9 (patch)
treee272981cc80d41dc1536302ea82881833ca47b27 /graphics
parent- update CONFLICTS (diff)
- option WITH_SMYRNA depends on WITH_GTK
Submitted by: nork
Notes
Notes: svn path=/head/; revision=254947
Diffstat (limited to 'graphics')
-rw-r--r--graphics/graphviz/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile
index 8ac55f1f4536..07b4ac18d57e 100644
--- a/graphics/graphviz/Makefile
+++ b/graphics/graphviz/Makefile
@@ -70,7 +70,6 @@ OPTIONS= ICONV "Build with ICONV support" on \
XPM "Build with XPM support" on \
DIGCOLA "DIGCOLA features in neato layout engine" on \
IPSEPCOLA "IPSEPCOLA features in neato layout engine" on \
- SMYRNA "SMYRNA large graph viewer" off \
NLS "Build with gettext support" on \
TK "Build with TK support" off \
PANGOCAIRO "build with pangocairo support" on \
@@ -78,6 +77,7 @@ OPTIONS= ICONV "Build with ICONV support" on \
GTK "build with gtk plugin" off \
GDK_PIXBUF "build with gdk pixbuf support" off \
GNOMEUI "build with libgnomeui support" off \
+ SMYRNA "SMYRNA large graph viewer (GTK is required)" off \
MING "Build with ming plugin" off \
DEVIL "Build with devil plugin" off \
GHOSTSCRIPT "Build with ghostscript plugin" off \
@@ -208,6 +208,9 @@ CONFIGURE_ARGS+= --without-gnomeui
.if defined(WITH_SMYRNA)
CONFIGURE_ARGS+= --with-glade=yes
USE_GNOME+= gnomelibs libglade2
+.if !defined(WITH_GTK)
+IGNORE= option WITH_GTK is required for option WITH_SMYRNA
+.endif
.else
CONFIGURE_ARGS+= --without-glade
.endif