diff options
author | danfe <danfe@FreeBSD.org> | 2013-05-12 21:00:07 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-05-12 21:00:07 +0800 |
commit | 5a132498a52e21e43940dddd6583ca0c16ce712e (patch) | |
tree | 681f2350239e886f37ff6efb61d6978d24b1a3db /games/quake3-data/Makefile | |
parent | 090493bb90c3f2741ba098e699d704f35dbe8cb6 (diff) | |
download | freebsd-ports-gnome-5a132498a52e21e43940dddd6583ca0c16ce712e.tar.gz freebsd-ports-gnome-5a132498a52e21e43940dddd6583ca0c16ce712e.tar.zst freebsd-ports-gnome-5a132498a52e21e43940dddd6583ca0c16ce712e.zip |
Cleanup quake3-data a bit more:
- Remove USE_CRLF knob: instead, when extracting ZIP archives, ask it to
convert text files to Unix style. This should be no-op change, as all
consumers of USE_CRLF also USE_ZIP
- While here, remove unneeded output redirection in `do-extract' target
Diffstat (limited to 'games/quake3-data/Makefile')
-rw-r--r-- | games/quake3-data/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/quake3-data/Makefile b/games/quake3-data/Makefile index 549e639dbda3..fe12e27118d4 100644 --- a/games/quake3-data/Makefile +++ b/games/quake3-data/Makefile @@ -37,8 +37,8 @@ PLIST_SUB+= TEAMARENA="@comment " do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} - @cd ${WRKDIR} && ${TAIL} +356 ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | \ - ${TAR} zxf - >/dev/null + @cd ${WRKDIR} && ${TAIL} +356 \ + ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | ${TAR} xzf - do-install: @${MKDIR} ${DATADIR} |