diff options
author | dholland <dholland@pkgsrc.org> | 2010-07-08 04:57:36 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2010-07-08 04:57:36 +0000 |
commit | 2f7458b53db10bf615dcee56207514351572f2f3 (patch) | |
tree | 2df7fde13e69eb07a9e22b7d3d36bc22d57f2fcf /mk/platform/Darwin.mk | |
parent | 82d37be69c3b7244056c53d69c53a16a70fcbcd3 (diff) | |
download | pkgsrc-2f7458b53db10bf615dcee56207514351572f2f3.tar.gz |
Begin cleanup of setgid game infrastructure.
* Introduce USE_GAMESGROUP, which causes the games user and group to
be made available.
* Retain SETGIDGAME as an alias for USE_GAMESGROUP. Describe it as
deprecated.
* Always define GAMES_USER, GAMES_GROUP, GAMEMODE, GAMEDIRMODE, and
GAMEDATAMODE, regardless of whether USE_GAMESGROUP is turned on or not.
* Define these variables in defaults/mk.conf instead of separately in
every platform/*.mk file. The definitions used to be the same for each
of these platforms anyway, except for some where they were randomly
missing or commented out for no clear reason, leading to broken game
packages.
* Handle all these variables properly when unprivileged.
* Update the comments/documentation for these variables.
* Describe GAMEOWN and GAMEGRP as deprecated. These need to be
retained as aliases for GAMES_USER and GAMES_GROUP respectively for
supporting packages that use bsd.*.mk but should otherwise not be
used.
* Add GAMEDATA_PERMS and GAMEDIR_PERMS using GAMEDATAMODE and
GAMEDIRMODE respectively.
* Fix a bug I noticed that was improperly mixing the "games" group
and "games" user.
Things this does *not* do:
- get rid of GAMES_USER, for which there should ultimately be no need.
- move the declaration/documentation/default value of USE_GAMESGROUP
to a suitable place. (It is currently where SETGIDGAME was, which is
suboptimal.)
- touch any of the games, all of which need updating with at least
s/SETGIDGAME/USE_GAMESGROUP/ and probably more.
- update the guide to explain how to handle games properly.
Also, it would be nice if using GAMES_GROUP without setting
USE_GAMESGROUP=yes caused an error but as far as I know there isn't
any particularly good way to arrange this right now.
Note that these changes may alter the build/install behavior of broken
game packages, e.g. some may silently become setgid when they weren't
before or things like that. If you run into any of this file a PR.
While one might arguably bump the PKGREVISION of all games or other
packages using any of these variables as a precaution, that seems like
a bad idea. Instead, I think I will be bumping each game once it
itself has been fixed up to do everything the right way.
Diffstat (limited to 'mk/platform/Darwin.mk')
-rw-r--r-- | mk/platform/Darwin.mk | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/mk/platform/Darwin.mk b/mk/platform/Darwin.mk index 4afcae68da7..bb374e4f281 100644 --- a/mk/platform/Darwin.mk +++ b/mk/platform/Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.42 2009/09/24 06:31:27 tron Exp $ +# $NetBSD: Darwin.mk,v 1.43 2010/07/08 04:57:36 dholland Exp $ # # Variable definitions for the Darwin operating system. @@ -127,17 +127,3 @@ CONFIGURE_ENV+= ac_cv_func_poll=no .if empty(OS_VERSION:M[0-8].*) && exists(/bin/ksh) WRAPPER_BIN_SH?= /bin/ksh .endif - -# If games are to be installed setgid, then SETGIDGAME is set to 'yes' -# (it defaults to 'no' as per defaults/mk.conf). -# Set the group and mode to meaningful values in that case (defaults to -# 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])) -#GAMES_USER= games -#GAMES_GROUP= games -#GAMEOWN= ${GAMES_USER} -#GAMEGRP= ${GAMES_GROUP} -#GAMEMODE= 2555 -#GAMEDIRMODE= 0775 -#.endif |