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 /net/gofish | |
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 'net/gofish')
-rw-r--r-- | net/gofish/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/net/gofish/Makefile b/net/gofish/Makefile index 88bb3fcf64a..35123e1a2ae 100644 --- a/net/gofish/Makefile +++ b/net/gofish/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/12/29 06:21:59 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2006/04/23 00:12:39 jlam Exp $ DISTNAME= gofish-1.1 PKGREVISION= 1 @@ -23,8 +23,12 @@ GOPHER_USER= gopher GOPHER_GROUP= gopher GOPHER_UID= 30 GOPHER_GID= 30 -PKG_GROUPS= ${GOPHER_GROUP}:${GOPHER_GID} -PKG_USERS= ${GOPHER_USER}:${GOPHER_GROUP}:${GOPHER_UID} + +PKG_GROUPS= ${GOPHER_GROUP} +PKG_USERS= ${GOPHER_USER}:${GOPHER_GROUP} +PKG_GID.${GOPHER_GROUP}= ${GOPHER_GID} +PKG_UID.${GOPHER_USER}= ${GOPHER_UID} + OWN_DIRS_PERMS= ${RUNTIMEDIR} ${GOPHER_USER} ${GOPHER_GROUP} 0750 RCD_SCRIPTS= gopherd |