diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-04-07 13:26:20 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-04-07 13:26:20 +0000 |
commit | 113d291e1d44b8b6d432ae0d10aff37e68b64dc5 (patch) | |
tree | f7200639a0272ee7bbc76530b80468257079b711 /games | |
parent | 69bfde79150c31751515222d4b4406206d2f8ac6 (diff) | |
download | ports-113d291e1d44b8b6d432ae0d10aff37e68b64dc5.tar.gz ports-113d291e1d44b8b6d432ae0d10aff37e68b64dc5.zip |
- tar -> ${TAR} (since we have now a bsdtar ;)
Notes
Notes:
svn path=/head/; revision=106396
Diffstat (limited to 'games')
-rw-r--r-- | games/farblazer/Makefile | 4 | ||||
-rw-r--r-- | games/nil/Makefile | 2 | ||||
-rw-r--r-- | games/quakeserver/Makefile | 2 | ||||
-rw-r--r-- | games/rocksndiamonds/Makefile | 4 | ||||
-rw-r--r-- | games/twitch/Makefile | 4 | ||||
-rw-r--r-- | games/xgammon/Makefile | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/games/farblazer/Makefile b/games/farblazer/Makefile index c8d901a8f307..2d8124c47c3b 100644 --- a/games/farblazer/Makefile +++ b/games/farblazer/Makefile @@ -23,8 +23,8 @@ do-build: do-install: @${MKDIR} ${DATADIR} - (cd ${WRKSRC}; tar cf - .) | \ - (cd ${DATADIR}; tar --exclude=\*.orig --unlink -xf -) + (cd ${WRKSRC}; ${TAR} cf - .) | \ + (cd ${DATADIR}; ${TAR} --exclude=\*.orig --unlink -xf -) @printf "#!/bin/sh\ncd ${DATADIR} && \ exec ${PYTHON_CMD} ${DATADIR}/${PORTNAME}.py \"$$\@\"\n" > ${WRKDIR}/${PORTNAME}.sh @${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME} diff --git a/games/nil/Makefile b/games/nil/Makefile index bee6a4c7d51e..5458de835662 100644 --- a/games/nil/Makefile +++ b/games/nil/Makefile @@ -33,7 +33,7 @@ post-configure: post-install: @${MKDIR} ${PREFIX}/share/nil - @cd ${WRKSRC}/..; tar cf - gfx | \ + @cd ${WRKSRC}/..; ${TAR} cf - gfx | \ (cd ${PREFIX}/share/nil ; ${TAR} --unlink -xf - ) @${INSTALL_MAN} ${WRKSRC}/../docs/NiL-HOWTO.txt ${PREFIX}/share/nil/README @${ECHO_MSG} "" diff --git a/games/quakeserver/Makefile b/games/quakeserver/Makefile index 916e9be56a66..934a88a2a7e8 100644 --- a/games/quakeserver/Makefile +++ b/games/quakeserver/Makefile @@ -30,7 +30,7 @@ do-extract: @ unzip -q -o ${DISTDIR}/quake106.zip -d ${WRKDIR} resource.* @ ${CAT} ${WRKDIR}/resource.dat ${WRKDIR}/resource.1 > ${WRKDIR}/resource.exe @ cd ${WRKDIR}; lha xfq resource.exe id1/pak0.pak - @ cd ${WRKDIR}; tar zxf ${DISTDIR}/unixded-${PORTVERSION}-i386-unknown-bsdi3.0.tar.gz + @ cd ${WRKDIR}; ${TAR} zxf ${DISTDIR}/unixded-${PORTVERSION}-i386-unknown-bsdi3.0.tar.gz do-configure: @ ${CP} ${FILESDIR}/readme.port ${WRKSRC} diff --git a/games/rocksndiamonds/Makefile b/games/rocksndiamonds/Makefile index 866eac1814af..a058fd1f9f92 100644 --- a/games/rocksndiamonds/Makefile +++ b/games/rocksndiamonds/Makefile @@ -40,8 +40,8 @@ pre-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/rocksndiamonds ${PREFIX}/bin @${MKDIR} ${GAME_DIR} - @cd ${WRKSRC}; tar cpf - graphics levels scores sounds | \ - (cd ${GAME_DIR}; tar xpf -) + @cd ${WRKSRC}; ${TAR} cpf - graphics levels scores sounds | \ + (cd ${GAME_DIR}; ${TAR} xpf -) @${CHMOD} 777 ${GAME_DIR}/scores .if !defined(NOPPORTDOCS) @${MKDIR} ${DOC_DIR} diff --git a/games/twitch/Makefile b/games/twitch/Makefile index e327405a151a..b99f17c4c724 100644 --- a/games/twitch/Makefile +++ b/games/twitch/Makefile @@ -24,8 +24,8 @@ do-build: do-install: @${MKDIR} ${PREFIX}/share/twitch - (cd ${WRKSRC}; tar cf - images sound levels twitch.*) | \ - (cd ${PREFIX}/share/twitch; tar xf -) + (cd ${WRKSRC}; ${TAR} cf - images sound levels twitch.*) | \ + (cd ${PREFIX}/share/twitch; ${TAR} xf -) @printf "#!/bin/sh\ncd ${PREFIX}/share/twitch && \ ${PYTHON_CMD} ${PREFIX}/share/twitch/twitch.py\n" > ${WRKDIR}/twitch.sh @${INSTALL_SCRIPT} ${WRKDIR}/twitch.sh ${PREFIX}/bin/twitch diff --git a/games/xgammon/Makefile b/games/xgammon/Makefile index 30acb076b6a8..7c7fdec52a02 100644 --- a/games/xgammon/Makefile +++ b/games/xgammon/Makefile @@ -29,7 +29,7 @@ do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} @rpm2cpio.pl ${_DISTDIR}${DISTFILES} | (cd ${WRKDIR}; ${CPIO} -i) - @tar -xzf ${WRKDIR}/${DISTNAME}.tar.gz -C ${WRKDIR} + @${TAR} -xzf ${WRKDIR}/${DISTNAME}.tar.gz -C ${WRKDIR} pre-patch: @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}" |