diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-29 09:09:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-29 09:09:47 +0000 |
commit | 7329286fd19e4f3a118b7d6db79d2380f8847b9c (patch) | |
tree | f2888bcadcebfdf4c2dbd0a0bf7fd7aebf218d59 /eclass/games.eclass | |
parent | force --build by default to match new portage behavior and only run usermod i... (diff) | |
download | gentoo-2-7329286fd19e4f3a118b7d6db79d2380f8847b9c.tar.gz gentoo-2-7329286fd19e4f3a118b7d6db79d2380f8847b9c.tar.bz2 gentoo-2-7329286fd19e4f3a118b7d6db79d2380f8847b9c.zip |
give users copy & paste examples for gnu/darwin systems
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 2a5528edb584..a3e2b0eb6c5d 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.98 2005/05/29 09:01:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.99 2005/05/29 09:09:47 vapier Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -185,7 +185,10 @@ games_pkg_postinst() { ewarn "Remember, in order to play games, you have to" ewarn "be in the '${GAMES_GROUP}' group." echo - einfo "See the -a option in the gpasswd(1) manpage for more information." + case ${USERLAND} in + GNU) einfo "Just run 'gpasswd -a <USER> ${GAMES_GROUP}'";; + DARWIN) einfo "Just run 'niutil -appendprop / /groups/games users <USER>'";; + esac echo } |