svn commit: r355671 - head/sysutils/qzeitgeist

John Marino marino at FreeBSD.org
Thu May 29 07:49:06 UTC 2014


Author: marino
Date: Thu May 29 07:49:06 2014
New Revision: 355671
URL: http://svnweb.freebsd.org/changeset/ports/355671
QAT: https://qat.redports.org/buildarchive/r355671/

Log:
  sysutils/qzeitgeist: specify post-extraction with ${TAR}
  
  It's possible that EXTRACT_CMD won't be predefined in the near future
  in order to support distfiles in multiple formats.  We know the post-
  extraction tool needs to be tar, so let's specify it directly.
  
  Approved by:	infrastructure improvements blanket

Modified:
  head/sysutils/qzeitgeist/Makefile

Modified: head/sysutils/qzeitgeist/Makefile
==============================================================================
--- head/sysutils/qzeitgeist/Makefile	Thu May 29 07:32:35 2014	(r355670)
+++ head/sysutils/qzeitgeist/Makefile	Thu May 29 07:49:06 2014	(r355671)
@@ -31,8 +31,9 @@ USE_LDCONFIG=	yes
 ZEITGEIST_VERSION=	0.8.2
 
 post-extract:
-	@(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
-		${_DISTDIR}/zeitgeist-${ZEITGEIST_VERSION}.tar.gz ${EXTRACT_AFTER_ARGS})
+	@(cd ${WRKDIR} && ${TAR} ${EXTRACT_BEFORE_ARGS} \
+		${_DISTDIR}/zeitgeist-${ZEITGEIST_VERSION}.tar.gz \
+		${EXTRACT_AFTER_ARGS})
 	cd ${WRKDIR}/zeitgeist-${ZEITGEIST_VERSION} && \
 		${CP} zeitgeist/datamodel.py \
 			extra/ontology/*.trig \


More information about the svn-ports-all mailing list