52c54296e2
Increase the pkgsrc UID range to 300-499. We can no longer afford to avoid conflicts with the 400-499 range used by Fink, as pkgsrc now has around 200 users and the previous range was insufficient for bulk builds. Ideally there would be a way to use a temporary OpenDirectory database for builds, as while a large range is required for full bulk builds and we're going to hit even this additional limit soon, it's unlikely a user installation will require the full range. However, finding a way to do this is proving elusive.
25 lines
696 B
Makefile
25 lines
696 B
Makefile
# $NetBSD: Makefile,v 1.14 2015/10/15 10:40:52 jperkin Exp $
|
|
#
|
|
|
|
DISTNAME= user-darwin-20151015
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
COMMENT= Limited NetBSD-compatible useradd/groupadd commands
|
|
|
|
ONLY_FOR_PLATFORM= Darwin-*-*
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
INSTALLATION_DIRS= sbin
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${FILESDIR}/useradd.sh ${DESTDIR}${PREFIX}/sbin/useradd
|
|
${INSTALL_SCRIPT} ${FILESDIR}/userdel.sh ${DESTDIR}${PREFIX}/sbin/userdel
|
|
${INSTALL_SCRIPT} ${FILESDIR}/groupadd.sh ${DESTDIR}${PREFIX}/sbin/groupadd
|
|
${INSTALL_SCRIPT} ${FILESDIR}/groupdel.sh ${DESTDIR}${PREFIX}/sbin/groupdel
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|