diff options
author | kris <kris@FreeBSD.org> | 2001-08-11 06:00:24 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-08-11 06:00:24 +0000 |
commit | f78cec7a42b6ca5df87ae95620606950b42540b4 (patch) | |
tree | 90118f78415271412e498aa64c074b88d7cfd705 /games/fsgs | |
parent | 26ad5f1dd53302b9c322ff6d22f5033df56bceae (diff) | |
download | FreeBSD-ports-f78cec7a42b6ca5df87ae95620606950b42540b4.zip FreeBSD-ports-f78cec7a42b6ca5df87ae95620606950b42540b4.tar.gz |
This port should be installing things setgid games, not setuid games.
Make the change but mark the port FORBIDDEN because it probably needs to
be able to write to some of the files/directories it installs, and so
won't work with this change. I'll let the maintainer fix that.
Diffstat (limited to 'games/fsgs')
-rw-r--r-- | games/fsgs/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/fsgs/Makefile b/games/fsgs/Makefile index 0c4fa85..9eecb96 100644 --- a/games/fsgs/Makefile +++ b/games/fsgs/Makefile @@ -13,14 +13,16 @@ DISTFILES= fsgs07126bsd.tgz fsgs0721lx.tgz MAINTAINER= dburr@FreeBSD.ORG +FORBIDDEN= "Some data files probably need to be made group-writable" + NO_BUILD= yes do-install: ${CP} -Rp ${WRKDIR}/opt/fsgs ${PREFIX}/fsgs ${CP} ${WRKDIR}/release/fsgs ${PREFIX}/fsgs/fsgs ${CP} ${WRKDIR}/release/fsgs_static ${PREFIX}/fsgs/fsgs_static - ${CHOWN} -R games:games ${PREFIX}/fsgs - ${CHMOD} 4711 ${PREFIX}/fsgs/fsgs ${PREFIX}/fsgs/fsgs_static + ${CHOWN} -R root:games ${PREFIX}/fsgs + ${CHMOD} 2711 ${PREFIX}/fsgs/fsgs ${PREFIX}/fsgs/fsgs_static ${INSTALL_SCRIPT} ${FILESDIR}/fsgs.sh ${PREFIX}/etc/rc.d/fsgs.sh @${CAT} ${PKGMESSAGE} |