diff options
author | dholland <dholland@pkgsrc.org> | 2012-09-29 23:34:11 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-09-29 23:34:11 +0000 |
commit | f67bac84ed63d4c493fc8984e3cbeeb72d236a71 (patch) | |
tree | c2f50bedae8d103fccd3dd723944aab70717db33 /graphics | |
parent | 3ffd91c3470c2ffe2166f8fbfff8bb0214439ee1 (diff) | |
download | pkgsrc-f67bac84ed63d4c493fc8984e3cbeeb72d236a71.tar.gz |
Revert version 1.15, which was committed presumably by accident during the
cairo revbump earlier this month and was probably meant to be part of a
yet-uncommitted update. It doesn't appear to be correct with the current
version.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/graphviz/options.mk | 93 |
1 files changed, 63 insertions, 30 deletions
diff --git a/graphics/graphviz/options.mk b/graphics/graphviz/options.mk index e214c63f767..9c7e094abed 100644 --- a/graphics/graphviz/options.mk +++ b/graphics/graphviz/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.15 2012/09/07 19:16:47 adam Exp $ +# $NetBSD: options.mk,v 1.16 2012/09/29 23:34:11 dholland Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz PKG_SUPPORTED_OPTIONS= gd ghostscript gtk guile lua ocaml pangocairo rsvg tcl x11 perl @@ -23,51 +23,84 @@ PLIST_VARS+= gd ghostscript gtk guile lua ocaml pangocairo perl rsvg tcl x11 .include "../../mk/xaw.buildlink3.mk" CONFIGURE_ENV+= X11PREFIX=${X11PREFIX} X11BASE=${X11BASE} PLIST.x11= yes -.else -CONFIGURE_ARGS+= --without-x -.endif -.if !empty(PKG_OPTIONS:Mpangocairo) -.include "../../devel/pango/buildlink3.mk" -.include "../../graphics/cairo/buildlink3.mk" +. if !empty(PKG_OPTIONS:Mpangocairo) +. include "../../devel/pango/buildlink3.mk" +. include "../../graphics/cairo/buildlink3.mk" PLIST.pangocairo= yes -.else -CONFIGURE_ARGS+= --without-pangocairo -.endif -.if !empty(PKG_OPTIONS:Mghostscript) -.include "../../print/ghostscript/buildlink3.mk" +. if !empty(PKG_OPTIONS:Mghostscript) +. include "../../print/ghostscript/buildlink3.mk" PLIST.ghostscript= yes -.else +. else CONFIGURE_ARGS+= --without-ghostscript -.endif +. endif -.if !empty(PKG_OPTIONS:Mgtk) -.include "../../x11/gtk2/buildlink3.mk" +. if !empty(PKG_OPTIONS:Mgtk) +. include "../../x11/gtk2/buildlink3.mk" PLIST.gtk= yes -.else +. else CONFIGURE_ARGS+= --without-gdk-pixbuf CONFIGURE_ARGS+= --without-gtk CONFIGURE_ARGS+= --without-gnomeui -.endif +. endif -.if !empty(PKG_OPTIONS:Mrsvg) -.include "../../graphics/librsvg/buildlink3.mk" +. if !empty(PKG_OPTIONS:Mrsvg) +. include "../../graphics/librsvg/buildlink3.mk" PLIST.rsvg= yes +. else +CONFIGURE_ARGS+= --without-rsvg +. endif + +. else +# + x11, -pangocairo +CONFIGURE_ARGS+= --without-pangocairo + +. if !empty(PKG_OPTIONS:Mghostscript) +PKG_FAIL_REASON+= "option ghostscript needs option pangocairo" +. endif +CONFIGURE_ARGS+= --without-ghostscript + +. if !empty(PKG_OPTIONS:Mgtk) +PKG_FAIL_REASON+= "option gtk needs option pangocairo" +. endif +CONFIGURE_ARGS+= --without-gdk-pixbuf +CONFIGURE_ARGS+= --without-gtk +CONFIGURE_ARGS+= --without-gnomeui + +. if !empty(PKG_OPTIONS:Mrsvg) +PKG_FAIL_REASON+= "option rsvg needs option pangocairo" +. endif +CONFIGURE_ARGS+= --without-rsvg +. endif + .else +# - x11 +CONFIGURE_ARGS+= --without-x + +. if !empty(PKG_OPTIONS:Mpangocairo) +PKG_FAIL_REASON+= "option pangocairo needs option x11" +. endif +CONFIGURE_ARGS+= --without-pangocairo + +. if !empty(PKG_OPTIONS:Mghostscript) +PKG_FAIL_REASON+= "option ghostscript needs option pangocairo and x11" +. endif +CONFIGURE_ARGS+= --without-ghostscript + +. if !empty(PKG_OPTIONS:Mgtk) +PKG_FAIL_REASON+= "option gtk needs option pangocairo and x11" +. endif +CONFIGURE_ARGS+= --without-gdk-pixbuf +CONFIGURE_ARGS+= --without-gtk +CONFIGURE_ARGS+= --without-gnomeui + +. if !empty(PKG_OPTIONS:Mrsvg) +PKG_FAIL_REASON+= "option rsvg needs option pangocairo and x11" +. endif CONFIGURE_ARGS+= --without-rsvg .endif -#. if !empty(PKG_OPTIONS:Mghostscript) -#PKG_FAIL_REASON+= "option ghostscript needs option pangocairo and x11" -#. endif -#. if !empty(PKG_OPTIONS:Mgtk) -#PKG_FAIL_REASON+= "option gtk needs option pangocairo and x11" -#. endif -#. if !empty(PKG_OPTIONS:Mrsvg) -#PKG_FAIL_REASON+= "option rsvg needs option pangocairo and x11" -#. endif - .if !empty(PKG_OPTIONS:Mgd) .include "../../graphics/gd/buildlink3.mk" PLIST.gd= yes |