diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-18 16:00:03 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-18 16:00:03 +0000 |
commit | cf5d367eb0cfce8bd046e3c3413aabec94eee52c (patch) | |
tree | 6de5715a7834fd73303be968e3816c1cab7c159f /eclass/games.eclass | |
parent | use !build -> ! use build (Manifest recommit) (diff) | |
download | gentoo-2-cf5d367eb0cfce8bd046e3c3413aabec94eee52c.tar.gz gentoo-2-cf5d367eb0cfce8bd046e3c3413aabec94eee52c.tar.bz2 gentoo-2-cf5d367eb0cfce8bd046e3c3413aabec94eee52c.zip |
Changed GAMES_USER to root, changed GAMES_USER_DED to games, and reverted change to gamesowners function. Closing bug #45302.
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index e663406c4ca9..fd7ec29a40f6 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.65 2004/06/14 14:18:13 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.66 2004/06/18 16:00:03 wolf31o2 Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org # @@ -30,8 +30,8 @@ export GAMES_BINDIR="/usr/games/bin" export GAMES_ENVD="90games" # if you want to use a different user/group than games.games, # just add these two variables to your environment (aka /etc/profile) -export GAMES_USER="${GAMES_USER:-games}" -export GAMES_USER_DED="${GAMES_USER_DED:-games-ded}" +export GAMES_USER="${GAMES_USER:-root}" +export GAMES_USER_DED="${GAMES_USER_DED:-games}" export GAMES_GROUP="${GAMES_GROUP:-games}" egamesconf() { @@ -82,8 +82,7 @@ dogameslib.so() { gameswrapper ${FUNCNAME/games} "$@"; } newgamesbin() { gameswrapper ${FUNCNAME/games} "$@"; } newgamessbin() { gameswrapper ${FUNCNAME/games} "$@"; } -#gamesowners() { chown ${GAMES_USER}:${GAMES_GROUP} "$@"; } -gamesowners() { chown root:${GAMES_GROUP} "$@"; } +gamesowners() { chown ${GAMES_USER}:${GAMES_GROUP} "$@"; } gamesperms() { chmod u+rw,g+r-w,o-rwx "$@"; } prepgamesdirs() { local dir="" |