svn commit: r355754 - head/math/spooles

John Marino marino at FreeBSD.org
Thu May 29 22:02:53 UTC 2014


Author: marino
Date: Thu May 29 22:02:52 2014
New Revision: 355754
URL: http://svnweb.freebsd.org/changeset/ports/355754
QAT: https://qat.redports.org/buildarchive/r355754/

Log:
  math/spooles*: 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.
  
  It may be worth looking at the post-extract target here and seeing
  if it's really needed.  Often one can just change the WRKSRC value to
  avoid a custom post-extract taraget.
  
  Approved by:	infrastructure improvements blanket

Modified:
  head/math/spooles/Makefile

Modified: head/math/spooles/Makefile
==============================================================================
--- head/math/spooles/Makefile	Thu May 29 21:57:15 2014	(r355753)
+++ head/math/spooles/Makefile	Thu May 29 22:02:52 2014	(r355754)
@@ -54,7 +54,7 @@ pre-everything::
 .endif
 
 do-extract:
-	${MKDIR} ${WRKSRC} ; cd ${WRKSRC} ; ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS}
+	${MKDIR} ${WRKSRC} ; cd ${WRKSRC} ; ${TAR} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS}
 
 post-patch:
 	${MKDIR} ${WRKSRC}_SHARED ; ${CP} -r ${WRKSRC}/* ${WRKSRC}_SHARED


More information about the svn-ports-all mailing list