diff options
author | joerg <joerg> | 2006-04-12 21:01:15 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-04-12 21:01:15 +0000 |
commit | 14f0baef686541359f289c445b740104b9f1d1bf (patch) | |
tree | c8e9436b8ea5cc0ca32ebe603b58673df575576f /mk/defaults/mk.conf | |
parent | 52458c8ec43cd00feef0a1d9660648fe0758190d (diff) | |
download | pkgsrc-14f0baef686541359f289c445b740104b9f1d1bf.tar.gz |
Add INSTALL_GAME_DIR to complement INSTALL_GAME_DATA. The directories
are group-writeable by the games user on those platforms, where
GAMEMODE includes setgid. It defaults to PKGDIRMODE otherwise.
Diffstat (limited to 'mk/defaults/mk.conf')
-rw-r--r-- | mk/defaults/mk.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mk/defaults/mk.conf b/mk/defaults/mk.conf index 48574e38002..75977eecdb0 100644 --- a/mk/defaults/mk.conf +++ b/mk/defaults/mk.conf @@ -1,4 +1,4 @@ -# $NetBSD: mk.conf,v 1.115 2006/04/06 06:23:06 reed Exp $ +# $NetBSD: mk.conf,v 1.116 2006/04/12 21:01:15 joerg Exp $ # # This file provides default values for variables that may be overridden @@ -824,6 +824,14 @@ GAMEMODE?= ${BINMODE} # Possible: any mode # Default: ${BINMODE} +GAMEDIRMODE?= ${PKGDIRMODE} +# Used for various games to allow writing to a group-owned directory +# e.g. for logfiles. +# If SETGIDGAME is 'yes', setting this to 0775 would make sense. +# See also: GAMEGRP, GAMEOWN, GAMEMODE, SETGIDGAME +# Possible: any mode +# Default: ${PKGDIRMODE} + GAMEOWN?= ${BINOWN} # Used for various games to allow writing to a group-owned score file. # If SETGIDGAME is 'yes', setting this to a dedicated user, such as 'games' |