summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam>2006-06-04 13:56:20 +0000
committerjlam <jlam>2006-06-04 13:56:20 +0000
commit0c815c333bf79bd189e10f941e3086aeb6f6059d (patch)
treed8d995ad6961ebc541ab06666b66a1de60090659
parentd80d2e6fed935eec9b31cff12dfb165605323420 (diff)
downloadpkgsrc-0c815c333bf79bd189e10f941e3086aeb6f6059d.tar.gz
PKG_USERS should not have more than just <user>:<group>. All else is
specified in additional variables, i.e. PKG_GECOS, PKG_HOME, PKG_SHELL, etc., as stated in both the pkgsrc guide and the pkginstall.mk comments since 2006/04/23, or one month before this package was imported.
-rw-r--r--net/nagios-nrpe/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/nagios-nrpe/Makefile b/net/nagios-nrpe/Makefile
index 33ad113177b..986c6b14bce 100644
--- a/net/nagios-nrpe/Makefile
+++ b/net/nagios-nrpe/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2006/05/26 18:53:25 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2006/06/04 13:56:20 jlam Exp $
#
DISTNAME= nrpe-2.5.1
@@ -23,7 +23,8 @@ NAGIOS_USER?= nagios
NAGIOS_GROUP?= ${NAGIOS_USER}
PKG_GROUPS+= ${NAGIOS_GROUP}
-PKG_USERS+= ${NAGIOS_USER}:${NAGIOS_GROUP}::Nagios\ Runtime\ User
+PKG_USERS+= ${NAGIOS_USER}:${NAGIOS_GROUP}
+PKG_GECOS.${NAGIOS_USER}= Nagios Runtime User
CONFIGURE_ARGS+= --with-nrpe-user=${NAGIOS_USER:Q}
CONFIGURE_ARGS+= --with-nrpe-group=${NAGIOS_GROUP:Q}