pkgsrc/net/jwhois/options.mk
agc 0b9f02055c Move jwhois to the package options framework.
With thanks to Thomas Klausner for clueing me in - all mistakes are mine.
2005-10-03 21:18:55 +00:00

15 lines
444 B
Makefile

# $NetBSD: options.mk,v 1.1 2005/10/03 21:18:55 agc 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