blob: f1ab5ead79e55aaf051b4c43ed0365b89ef3ba2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.1 2008/04/21 16:34:45 xtraeme Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.scmgit
PKG_SUPPORTED_OPTIONS= scmgit-gui
PKG_SUGGESTED_OPTIONS= scmgit-gui
.include "../../mk/bsd.options.mk"
PLIST_VARS+= gui
.if !empty(PKG_OPTIONS:Mscmgit-gui)
PLIST.gui= yes
USE_TOOLS+= wish:run
CONFIGURE_ARGS+= --with-tcltk=${WISH:Q}
.else
CONFIGURE_ARGS+= --without-tcltk
.endif
|