Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 May 2014 22:02:52 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r355754 - head/math/spooles
Message-ID:  <201405292202.s4TM2qeJ045969@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405292202.s4TM2qeJ045969>