diff options
author | joerg <joerg> | 2013-01-11 00:15:39 +0000 |
---|---|---|
committer | joerg <joerg> | 2013-01-11 00:15:39 +0000 |
commit | 87947391b9986595dc1d2e1da09db68bcfad76b9 (patch) | |
tree | e7e3f40c8935b5453ec62d8f56bdcc05c208e722 /games | |
parent | a95468810748fd0d33b4d539ddda0c0ddf793015 (diff) | |
download | pkgsrc-87947391b9986595dc1d2e1da09db68bcfad76b9.tar.gz |
Prefer bsdtar (in-tree) over external GPL3 gtar.
Diffstat (limited to 'games')
-rw-r--r-- | games/quake3server/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/games/quake3server/Makefile b/games/quake3server/Makefile index 104c549ab16..4aa7dd35021 100644 --- a/games/quake3server/Makefile +++ b/games/quake3server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2012/10/06 11:54:51 asau Exp $ +# $NetBSD: Makefile,v 1.16 2013/01/11 00:15:39 joerg Exp $ DISTNAME= linuxq3apoint-1.32b.x86 PKGNAME= quake3server-1.32b @@ -13,8 +13,8 @@ COMMENT= Quake III Arena Dedicated Server for Linux .include "../../games/quake3server/Makefile.common" -USE_TOOLS+= gtar -EXTRACT_CMD= ${SED} '1,265d' ${DOWNLOADED_DISTFILE} | ${GTAR} xzf - +USE_TOOLS+= bsdtar +EXTRACT_CMD= ${SED} '1,265d' ${DOWNLOADED_DISTFILE} | ${TOOLS_PATH.bsdtar} xzf - NO_BUILD= yes WRKSRC= ${WRKDIR} @@ -22,11 +22,6 @@ BASEDOCDIR= ${PREFIX}/share/doc/lokigames/quake3server RCD_SCRIPTS= quake3server .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "DragonFly" -# DragonFly sed(1) adds trailing newline and it confuses gzip(1). Bsdtar, -# which doesn't use gzip but zlib, extracts the archive fine though. -TOOLS_PLATFORM.gtar= /usr/bin/bsdtar -.endif SPECIAL_PERMS+= ${Q3ROOTDIR}/q3ded nobody nogroup 0500 |