diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2007-01-09 11:55:52 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2007-01-09 11:55:52 +0000 |
commit | 6f3772be2d05fdf93882271a240adc05c1226209 (patch) | |
tree | 392c1480aac61b600d94d7168e2b932e0adccffb /cad/pcb | |
parent | 8d9c9bf91570bee437090415c58518f729ae3f37 (diff) | |
download | pkgsrc-6f3772be2d05fdf93882271a240adc05c1226209.tar.gz |
Add an option to allow a batch mode pcb to be built. Useful for webserver
environments.
Diffstat (limited to 'cad/pcb')
-rw-r--r-- | cad/pcb/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cad/pcb/Makefile b/cad/pcb/Makefile index 9a8ea874b65..fd89a43f3c2 100644 --- a/cad/pcb/Makefile +++ b/cad/pcb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2006/08/23 11:26:44 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.38 2007/01/09 11:55:52 dmcmahill Exp $ # DISTNAME= pcb-${SNAPDATE} @@ -22,8 +22,8 @@ INFO_FILES= yes PKG_OPTIONS_VAR= PKG_OPTIONS.pcb PKG_SUPPORTED_OPTIONS= png PKG_OPTIONS_REQUIRED_GROUPS= gui -PKG_OPTIONS_GROUP.gui= gtk motif -PKG_SUGGESTED_OPTIONS= png gtk +PKG_OPTIONS_GROUP.gui= batch gtk motif +PKG_SUGGESTED_OPTIONS= gtk png .include "../../mk/bsd.prefs.mk" .include "../../mk/bsd.options.mk" @@ -31,10 +31,14 @@ PKG_SUGGESTED_OPTIONS= png gtk .if !empty(PKG_OPTIONS:Mmotif) .include "../../mk/motif.buildlink3.mk" CONFIGURE_ARGS+= --with-gui=lesstif -.else +.elif !empty(PKG_OPTIONS:Mgtk) .include "../../devel/glib2/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" CONFIGURE_ARGS+= --with-gui=gtk +.elif !empty(PKG_OPTIONS:Mbatch) +CONFIGURE_ARGS+= --with-gui=none +.else +PKG_FAIL_REASON= Invalid options .endif EXPORTERS= bom gerber ps |