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/bind9 | |
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/bind9')
-rw-r--r-- | net/bind9/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/bind9/Makefile b/net/bind9/Makefile index 8226bdb3d68..af845a079f4 100644 --- a/net/bind9/Makefile +++ b/net/bind9/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.75 2005/12/29 06:21:57 jlam Exp $ +# $NetBSD: Makefile,v 1.76 2006/04/23 00:12:39 jlam Exp $ DISTNAME= bind-${BIND_VERSION} CATEGORIES= net @@ -26,8 +26,11 @@ CONFIGURE_ARGS+=--with-libtool=yes \ # include at the bottom to use OpenSSL shipped with BIND9. CONFIGURE_ARGS+=--with-openssl=${SSLBASE:Q} -PKG_USERS= ${BIND_USER}:${BIND_GROUP}::Named\ pseudo-user:${BIND_DIR}:${NOLOGIN} PKG_GROUPS= ${BIND_GROUP} +PKG_USERS= ${BIND_USER}:${BIND_GROUP} + +PKG_GECOS.${BIND_USER}= Named pseudo-user +PKG_HOME.${BIND_USER}= ${BIND_DIR} PTHREAD_OPTS+= native |