diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2004-05-02 05:40:34 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2004-05-02 05:40:34 +0000 |
commit | fc97806568815136a365483648eba3c145abc4ec (patch) | |
tree | 6eb1ba6079d3c8e752a5ea43664a404b45233314 /games/etuxracer | |
parent | - update to 4.6.4 (diff) |
Allow non-root/non-wheel users to access tuxracer data files.
PR: ports/66155
Submitted by: Jonathan <j.e.drews@att.net>
Notes
Notes:
svn path=/head/; revision=108133
Diffstat (limited to 'games/etuxracer')
-rw-r--r-- | games/etuxracer/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/etuxracer/Makefile b/games/etuxracer/Makefile index 583eaa7a0c26..f26fee32715d 100644 --- a/games/etuxracer/Makefile +++ b/games/etuxracer/Makefile @@ -20,7 +20,7 @@ COMMENT= A 3d penguin racing game using OpenGL LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 USE_SDL= mixer sdl -USE_MESA= yes +USE_GL= yes USE_GMAKE= yes USE_AUTOMAKE_VER= 14 AUTOMAKE_ARGS= -a @@ -40,7 +40,7 @@ post-extract: post-install: ${MKDIR} ${DATADIR} - (cd ${WORKDATA} && ${TAR} -c -f - *) | \ + (${CHMOD} -R o+r ${WORKDATA} && cd ${WORKDATA} && ${TAR} -c -f - *) | \ (cd ${DATADIR} && ${TAR} -x -f - ) .include <bsd.port.mk> |