aboutsummaryrefslogtreecommitdiff
path: root/games/xemeraldia
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-08-17 06:56:12 +0000
committerKris Kennaway <kris@FreeBSD.org>2000-08-17 06:56:12 +0000
commita4f6f2cd97897578fa9e3623276dae2a30266804 (patch)
tree4a0ea301cf01b7094ef1906831c551476df0a305 /games/xemeraldia
parent58e56e39ce79216332bb1f4e06e345ee0cbf6caf (diff)
downloadports-a4f6f2cd97897578fa9e3623276dae2a30266804.tar.gz
ports-a4f6f2cd97897578fa9e3623276dae2a30266804.zip
Make this setgid games to avoid a world-writable file
Notes
Notes: svn path=/head/; revision=31700
Diffstat (limited to 'games/xemeraldia')
-rw-r--r--games/xemeraldia/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile
index 8a1886e1da41..2c9503ba04a9 100644
--- a/games/xemeraldia/Makefile
+++ b/games/xemeraldia/Makefile
@@ -21,8 +21,11 @@ USE_IMAKE= yes
NO_INSTALL_MANPAGES= yes
post-install:
+ @${CHOWN} root:games ${PREFIX}/bin/xemeraldia
+ @${CHMOD} 2755 ${PREFIX}/bin/xemeraldia
@${MKDIR} ${PREFIX}/lib/X11/xemeraldia
@${TOUCH} ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores
- @${CHMOD} 666 ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores
+ @${CHOWN} root:games ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores
+ @${CHMOD} 664 ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores
.include <bsd.port.mk>