diff options
author | jlam <jlam@pkgsrc.org> | 2006-04-23 00:12:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-04-23 00:12:35 +0000 |
commit | 802ce74fcbb88a27d21b45fde8f40d7ac06aaeff (patch) | |
tree | 6dc352508076c2511c051c32fe25d3b9ea6c8c20 /sysutils | |
parent | 2797f2c4fb216f032f202408065b46d743490144 (diff) | |
download | pkgsrc-802ce74fcbb88a27d21b45fde8f40d7ac06aaeff.tar.gz |
Modify packages that set PKG_USERS and PKG_GROUPS to follow the new
syntax as specified in pkgsrc/mk/install/bsd.pkginstall.mk:1.47.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/amanda-common/Makefile | 7 | ||||
-rw-r--r-- | sysutils/dbus/Makefile | 8 | ||||
-rw-r--r-- | sysutils/ups-nut/Makefile | 6 |
3 files changed, 15 insertions, 6 deletions
diff --git a/sysutils/amanda-common/Makefile b/sysutils/amanda-common/Makefile index 15a6adbdf87..0b9193b9c5d 100644 --- a/sysutils/amanda-common/Makefile +++ b/sysutils/amanda-common/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2006/02/05 23:10:48 joerg Exp $ +# $NetBSD: Makefile,v 1.39 2006/04/23 00:12:42 jlam Exp $ PKGNAME= amanda-common-${VERS} PKGREVISION= 3 @@ -27,7 +27,10 @@ CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no CONFIGURE_ENV+= ac_cv_lib_readline_readline=no PKG_GROUPS= ${AMANDA_GROUP} -PKG_USERS= ${AMANDA_USER}:${AMANDA_GROUP}::Amanda\ user::${SH} +PKG_USERS= ${AMANDA_USER}:${AMANDA_GROUP} + +PKG_GECOS.${AMANDA_USER}= Amanda psuedo-user +PKG_SHELL.${AMANDA_USER}= ${SH} OWN_DIRS_PERMS= ${AMANDA_VAR} ${AMANDA_USER} ${AMANDA_GROUP} 0700 OWN_DIRS_PERMS+= ${AMANDA_VAR}/gnutar-lists ${AMANDA_USER} ${AMANDA_GROUP} 0700 diff --git a/sysutils/dbus/Makefile b/sysutils/dbus/Makefile index 62b42c33cd8..d9baa35c254 100644 --- a/sysutils/dbus/Makefile +++ b/sysutils/dbus/Makefile @@ -1,11 +1,15 @@ -# $NetBSD: Makefile,v 1.11 2006/04/02 18:20:53 joerg Exp $ +# $NetBSD: Makefile,v 1.12 2006/04/23 00:12:42 jlam Exp $ # .include "Makefile.common" PKGREVISION= 1 -PKG_USERS= messagebus:messagebus::System\ message\ bus:${VARBASE}/run/dbus:${NOLOGIN} + PKG_GROUPS= messagebus +PKG_USERS= messagebus:messagebus + +PKG_GECOS.messagebus= System message bus +PKG_HOME.messagebus= ${VARBASE}/run/dbus MAKE_DIRS= ${PKG_SYSCONFDIR}/event.d MAKE_DIRS+= ${PKG_SYSCONFDIR}/system.d diff --git a/sysutils/ups-nut/Makefile b/sysutils/ups-nut/Makefile index ebca9fbdc18..5a0e08f05ca 100644 --- a/sysutils/ups-nut/Makefile +++ b/sysutils/ups-nut/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2006/04/22 07:32:24 lukem Exp $ +# $NetBSD: Makefile,v 1.42 2006/04/23 00:12:42 jlam Exp $ # DISTNAME= nut-2.0.3 @@ -40,7 +40,9 @@ MESSAGE_SUBST+= NUT_EGDIR=${NUT_EGDIR} MESSAGE_SUBST+= NUT_DOCDIR=${NUT_DOCDIR} PKG_GROUPS= ${NUT_GROUP} -PKG_USERS= ${NUT_USER}:${NUT_GROUP}::Network\ UPS\ Tools::${SH} +PKG_USERS= ${NUT_USER}:${NUT_GROUP} +PKG_GECOS.${NUT_USER}= Network UPS Tools +PKG_SHELL.${NUT_USER}= ${SH} CONF_FILES= ${NUT_EGDIR}/ups.conf.sample ${NUT_CONFDIR}/ups.conf CONF_FILES+= ${NUT_EGDIR}/upssched.conf.sample \ |