4390d56940
the owner of all installed files is a non-root user. This change affects most packages that require special users or groups by making them use the specified unprivileged user and group instead. (1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to unprivileged.mk. These two variables are lists of other bmake variables that define package-specific users and groups. Packages that have user-settable variables for users and groups, e.g. apache and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP}, etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER} and ${UNPRIVILEGED_GROUP}. (2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
35 lines
999 B
Makefile
35 lines
999 B
Makefile
# $NetBSD: Makefile,v 1.19 2007/07/04 20:54:39 jlam Exp $
|
|
|
|
PKGREVISION= 2
|
|
CANNA_MODULE= server
|
|
|
|
.include "../../inputmethod/canna/Makefile.common"
|
|
|
|
INSTALL_TARGET= instserver
|
|
|
|
MESSAGE_SUBST+= CANNA_USER=${CANNA_USER}
|
|
MESSAGE_SUBST+= CANNA_GROUP=${CANNA_GROUP}
|
|
|
|
PKG_GROUPS= ${CANNA_GROUP}
|
|
PKG_USERS= ${CANNA_USER}:${CANNA_GROUP}
|
|
|
|
MAKE_DIRS+= ${IMDICTDIR}
|
|
OWN_DIRS+= ${IMDICTDIR}/canna
|
|
OWN_DIRS+= ${IMDICTDIR}/canna/canna
|
|
OWN_DIRS_PERMS+= ${CANNA_SPOOL} \
|
|
${CANNA_USER} ${CANNA_GROUP} ${CANNA_MODE}
|
|
|
|
RCD_SCRIPTS= canna
|
|
|
|
.include "../../inputmethod/canna-lib/buildlink3.mk"
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/Imakefile ${WRKSRC}/Imakefile.orig
|
|
${SED} -e 's|\(SUBDIRS = \).*|\1 canna lib server cmd doc|' \
|
|
-e 's|\(SERVERDIR = \).*|\1 server cmd doc|' \
|
|
${WRKSRC}/Imakefile.orig > ${WRKSRC}/Imakefile
|
|
${MV} ${WRKSRC}/Canna.conf ${WRKSRC}/Canna.conf.orig
|
|
${SED} -e 's|\(DicDir.*=\).*|\1${IMDICTDIR}/canna|' \
|
|
${WRKSRC}/Canna.conf.orig > ${WRKSRC}/Canna.conf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|