summaryrefslogtreecommitdiff
path: root/mk/defs.Darwin.mk
diff options
context:
space:
mode:
authorjlam <jlam>2001-11-19 16:17:51 +0000
committerjlam <jlam>2001-11-19 16:17:51 +0000
commit7cdb3f64df39d4ce2d4dd4f5327759a4f19517cf (patch)
treeb6481131e8675c6d05058b7eebf0c67e8be57c9e /mk/defs.Darwin.mk
parent0e2743d66838fd573db7c7d351dcbc9592818638 (diff)
downloadpkgsrc-7cdb3f64df39d4ce2d4dd4f5327759a4f19517cf.tar.gz
Add definitions for USERADD and GROUPADD, used to create new users and
groups. These commands follow the basic interface of the NetBSD/Solaris useradd and groupadd programs. For platforms on which these commands don't exist, either sysutils/user is added as a dependency, or these are set to ${FALSE}, and the package admin is responsible for creating them himself prior to the installation of a package.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r--mk/defs.Darwin.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk
index d32f177df22..c3cfb2e3f36 100644
--- a/mk/defs.Darwin.mk
+++ b/mk/defs.Darwin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.Darwin.mk,v 1.2 2001/11/15 12:17:19 agc Exp $
+# $NetBSD: defs.Darwin.mk,v 1.3 2001/11/19 16:17:51 jlam Exp $
#
# Variable definitions for the Darwin operating system.
@@ -50,3 +50,7 @@ TRUE?= true # Shell builtin
TYPE?= type # Shell builtin
WC?= /usr/bin/wc
XARGS?= /usr/bin/xargs
+
+USERADD?= ${FALSE} # XXX - Fix me!
+GROUPADD?= ${FALSE} # XXX - Fix me!
+NOLOGIN?= ${FALSE}