blob: a506208415c87a585c84d4416372b4398b8384d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.2 2012/10/23 20:49:38 shattered Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.jwhois
PKG_SUPPORTED_OPTIONS= jwhois-enable-cache
PKG_OPTIONS_LEGACY_VARS+= JWHOIS_ENABLE_CACHE:jwhois-enable-cache
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mjwhois-enable-cache)
CONFIGURE_ARGS+= --with-cache
CONF_FILES_PERMS+= /dev/null /${VARBASE}/db/jwhois.db \
${ROOT_USER} nogroup 0666
.else
CONFIGURE_ARGS+= --without-cache
.endif
|