diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 5281212be38447df70380d4e9e8cd0ef1cf11517 (patch) | |
tree | 655e734faae358d2c0edeefd08e9aeac6202b150 /games/crossfire-client/Makefile | |
parent | Assign USE_XLIB var. Any ports which use XLib needs it. (diff) |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Notes
Notes:
svn path=/head/; revision=20885
Diffstat (limited to 'games/crossfire-client/Makefile')
-rw-r--r-- | games/crossfire-client/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/games/crossfire-client/Makefile b/games/crossfire-client/Makefile index 403879f03d7b..80ef02ee0098 100644 --- a/games/crossfire-client/Makefile +++ b/games/crossfire-client/Makefile @@ -3,7 +3,7 @@ # Date created: So 27 Okt 1996 12:25:55 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.26 1999/01/27 16:33:50 fenner Exp $ +# $Id: Makefile,v 1.27 1999/08/21 17:17:47 andreas Exp $ # DISTNAME= crossfire-${MAJ}.${MIN}.${PL} @@ -64,16 +64,16 @@ post-install: @${MKDIR} ${PREFIX}/share/doc/crossfire @${CP} -r ${WRKDIR}/crossfire-${MAJ}.${MIN}.${PL}-doc/* \ ${PREFIX}/share/doc/crossfire - @touch ${CFDIR}/lib/bookarch - @chmod 664 ${CFDIR}/lib/bookarch - @touch ${CFDIR}/lib/forbid - @chmod 664 ${CFDIR}/lib/forbid - @touch ${CFDIR}/lib/players/.keep_me - @touch ${CFDIR}/lib/unique-items/.keep_me - @chown -R games.games ${CFDIR} - @chmod 0664 ${CFDIR}/lib/highscore - @chown games.games ${PREFIX}/bin/crossfire - @chmod 6555 ${PREFIX}/bin/crossfire + @${TOUCH} ${CFDIR}/lib/bookarch + @${CHMOD} 664 ${CFDIR}/lib/bookarch + @${TOUCH} ${CFDIR}/lib/forbid + @${CHMOD} 664 ${CFDIR}/lib/forbid + @${TOUCH} ${CFDIR}/lib/players/.keep_me + @${TOUCH} ${CFDIR}/lib/unique-items/.keep_me + @${CHOWN} -R games.games ${CFDIR} + @${CHMOD} 0664 ${CFDIR}/lib/highscore + @${CHOWN} games.games ${PREFIX}/bin/crossfire + @${CHMOD} 6555 ${PREFIX}/bin/crossfire ${ECHO} "Note: to start crossfire in clientmode" ${ECHO} " crossfire -xpm" ${ECHO} "Note: don't forget to update ${PREFIX}/etc/rplay.conf" |