summaryrefslogtreecommitdiff
path: root/mk/platform/Interix.mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2008-03-04 06:45:33 +0000
committerjlam <jlam@pkgsrc.org>2008-03-04 06:45:33 +0000
commitcf679f661040f2113f3057ca11317a07631b9fb4 (patch)
tree53927b9cc2c07e26be3e7581f09a05ed030ac452 /mk/platform/Interix.mk
parent14b4e16ba88853d4980b05a1e1e029b143fd6ebd (diff)
downloadpkgsrc-cf679f661040f2113f3057ca11317a07631b9fb4.tar.gz
+ Conditionally add GAMES_USER and GAMES_GROUP to the platform *.mk
files. These variables are currently usable if ${SETGIDGAME} == yes. These variables should be used when describing ownership of files and directories to the pkginstall framework, e.g. SPECIAL_PERMS= bin/foogame ${GAMES_USER} ${GAMES_GROUP} 2555 + Rename SETGID_GAME_PERMS to SETGID_GAMES_PERMS because the default group name is "games". + Define SETGID_GAMES_PERMS in terms of GAMES_USER and GAMES_GROUP so that these names are protected from the normal flow of unprivileged.mk. This fixes the +INSTALL scripts in "user-destdir" packages to correctly refer to the games:games instead of the user:group of the user that built the packages.
Diffstat (limited to 'mk/platform/Interix.mk')
-rw-r--r--mk/platform/Interix.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/mk/platform/Interix.mk b/mk/platform/Interix.mk
index 546525c8c5b..6cb36b83e32 100644
--- a/mk/platform/Interix.mk
+++ b/mk/platform/Interix.mk
@@ -1,4 +1,4 @@
-# $NetBSD: Interix.mk,v 1.55 2008/02/21 04:23:58 tnn Exp $
+# $NetBSD: Interix.mk,v 1.56 2008/03/04 06:45:34 jlam Exp $
#
# Variable definitions for the Interix operating system.
@@ -170,8 +170,10 @@ _OPSYS_MAX_CMDLEN_CMD= ${ECHO} 262144
# BINOWN, BINGRP and BINMODE as per defaults/mk.conf).
# FIXME: Adjust to work on this system and enable the lines below.
#.if !(empty(SETGIDGAME:M[yY][eE][sS]))
-#GAMEOWN= games
-#GAMEGRP= games
+#GAMES_USER= games
+#GAMES_GROUP= games
+#GAMEOWN= ${GAMES_USER}
+#GAMEGRP= ${GAMES_GROUP}
#GAMEMODE= 2555
#GAMEDIRMODE= 0775
#.endif