diff options
author | bapt <bapt@FreeBSD.org> | 2013-04-29 16:57:12 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-04-29 16:57:12 +0800 |
commit | 1ca518c98321627ea34bdaae84c439a2f0df0cdf (patch) | |
tree | 526d65e6697f1e03c06ab0d0f901688aa2c4e18d /editors | |
parent | 81215f7fb03620d52b441a5714e6af1fb655c743 (diff) | |
download | freebsd-ports-gnome-1ca518c98321627ea34bdaae84c439a2f0df0cdf.tar.gz freebsd-ports-gnome-1ca518c98321627ea34bdaae84c439a2f0df0cdf.tar.zst freebsd-ports-gnome-1ca518c98321627ea34bdaae84c439a2f0df0cdf.zip |
Rely on bsdtar to autodetermine the format of the distfiles when possible
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.
Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
Diffstat (limited to 'editors')
-rw-r--r-- | editors/elvis/Makefile | 2 | ||||
-rw-r--r-- | editors/lazarus/Makefile.common | 2 | ||||
-rw-r--r-- | editors/libreoffice/Makefile.common | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/elvis/Makefile b/editors/elvis/Makefile index fcffcf6f093e..d8ecb727a059 100644 --- a/editors/elvis/Makefile +++ b/editors/elvis/Makefile @@ -12,7 +12,7 @@ COMMENT= A clone of the ex/vi text editor LICENSE= ART10 -EXTRACT_AFTER_ARGS= | ${TAR} --exclude guiwin32 -xf - +EXTRACT_AFTER_ARGS= --exclude guiwin32 HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix="${PREFIX}" diff --git a/editors/lazarus/Makefile.common b/editors/lazarus/Makefile.common index 6b057f79a280..75ccd6d8f210 100644 --- a/editors/lazarus/Makefile.common +++ b/editors/lazarus/Makefile.common @@ -3,7 +3,7 @@ #USE_BZIP2= yes USE_GMAKE= yes -EXTRACT_AFTER_ARGS= | ${TAR} -xf - ${LCLDIR} ${PORTNAME}/packager/registration \ +EXTRACT_AFTER_ARGS= ${LCLDIR} ${PORTNAME}/packager/registration \ ${PORTNAME}/components/lazutils PATCHDIR= ${.CURDIR}/files FILESDIR= ${.CURDIR}/files diff --git a/editors/libreoffice/Makefile.common b/editors/libreoffice/Makefile.common index 0d46a97b3b39..c8999c1b205c 100644 --- a/editors/libreoffice/Makefile.common +++ b/editors/libreoffice/Makefile.common @@ -61,7 +61,7 @@ DISTFILES+= ${LO_I18N_FILE}_helppack_${LO_I18N:S/_/-/}${EXTRACT_SUFX} .endif COMMENT?= ${LO_I18N} language pack for ${PORTNAME} -EXTRACT_AFTER_ARGS= | ${TAR} -xf - --strip-components 1 +EXTRACT_AFTER_ARGS= --strip-components 1 post-extract: @${MKDIR} ${WRKSRC}; \ |