diff options
author | John Marino <marino@FreeBSD.org> | 2014-06-01 15:28:29 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-06-01 15:28:29 +0000 |
commit | 4a5c97cd515131649397e390a219423754e3d667 (patch) | |
tree | a60835aa71b563cea376eaa0213f34f52f978511 /games/openarena-data | |
parent | b89c89362f4a0ac919af7d57adeb8a1a5a3630b6 (diff) | |
download | ports-4a5c97cd515131649397e390a219423754e3d667.tar.gz ports-4a5c97cd515131649397e390a219423754e3d667.zip |
games: ioquak3* iourbanterror* openarena*: Update and stage support
The patch applied without incident. Tested on DragonFly poudriere,
everything built fine. It include an i386 fix, which is why the
previous commit was reverted.
The only modification was to change EXTRACT_CMD to TAR in a couple
of places.
PR: ports/187859
submitted by; maintainer (Dominic Fandrey)
Notes
Notes:
svn path=/head/; revision=356137
Diffstat (limited to 'games/openarena-data')
-rw-r--r-- | games/openarena-data/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/games/openarena-data/Makefile b/games/openarena-data/Makefile index 5c188763098b..54f931f8b3be 100644 --- a/games/openarena-data/Makefile +++ b/games/openarena-data/Makefile @@ -20,15 +20,14 @@ NO_BUILD= yes OA_DATA= ${PKGNAMEPREFIX}${OA_DATA_VER}.zip OA_DATA_VER= 0.8.8 -NO_STAGE= yes .include "${.CURDIR}/../openarena/Makefile.include" do-install: - ${MKDIR} ${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR} .for _file in ${DISTFILES:C/:[^:]*//} - ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${_file} \ - ${EXTRACT_AFTER_ARGS} -C ${DATADIR} --strip-components 2 \ - ${PKGNAMEPREFIX}\?.\?.\?/baseoa/ + ${TAR} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${_file} \ + ${EXTRACT_AFTER_ARGS} -C ${STAGEDIR}${DATADIR} \ + --strip-components 2 ${PKGNAMEPREFIX}\?.\?.\?/baseoa/ .endfor .include <bsd.port.post.mk> |