pkgsrc-wip/nrpe/Makefile.common
Roland Illig 91a02fafba Ran "pkglint --autofix", which fixed some quoting issues in MAKE_ENV,
CONFIGURE_ARGS, FILES_SUBST and the like.
2005-12-05 22:27:44 +00:00

20 lines
486 B
Text

# $NetBSD: Makefile.common,v 1.2 2005/12/05 22:27:46 rillig Exp $
.include "../../wip/nagios-base/Makefile.common"
NRPE_USER?= ${NAGIOS_USER}
NRPE_GROUP?= ${NAGIOS_GROUP}
CONFIGURE_ARGS+= --with-nrpe-user=${NRPE_USER:Q}
CONFIGURE_ARGS+= --with-nrpe-group=${NRPE_GROUP:Q}
.include "../../mk/bsd.prefs.mk"
PKG_OPTIONS_VAR= PKG_OPTIONS.nrpe
PKG_SUPPORTED_OPTIONS= args
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Margs)
CONFIGURE_ARGS+= --enable-command-args
.endif