Add an option to allow a batch mode pcb to be built. Useful for webserver
environments.
This commit is contained in:
parent
8d9c9bf915
commit
6f3772be2d
2 changed files with 9 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -21,6 +21,7 @@ aterm-xterm-scroll Use xterm-scrollbar instead of a NeXT-like one.
|
|||
audiofile
|
||||
authlib
|
||||
avifile
|
||||
batch Enable batch mode support.
|
||||
bdb
|
||||
bittorrent Enable bittorrent support
|
||||
bktr
|
||||
|
|
Loading…
Reference in a new issue