svn commit: r355987 - head/devel/cvs2svn

John Marino marino at FreeBSD.org
Sat May 31 14:58:34 UTC 2014


Author: marino
Date: Sat May 31 14:58:33 2014
New Revision: 355987
URL: http://svnweb.freebsd.org/changeset/ports/355987
QAT: https://qat.redports.org/buildarchive/r355987/

Log:
  devel/cvs2svn: Replace EXTRACT_CMD with TAR
  
  This port has distfiles of two formats: .tar.bz2 and .tar.gz.
  The TAR command handles both of them, so explicit specify this tool
  to ensure the port continues to work in the future.
  
  As a comment, it's strange that a custom extract target is needed to
  overcome a possible deficiency in the standard extract target.

Modified:
  head/devel/cvs2svn/Makefile

Modified: head/devel/cvs2svn/Makefile
==============================================================================
--- head/devel/cvs2svn/Makefile	Sat May 31 14:53:53 2014	(r355986)
+++ head/devel/cvs2svn/Makefile	Sat May 31 14:58:33 2014	(r355987)
@@ -81,7 +81,7 @@ do-extract:
 	@${RM} -rf ${WRKDIR}
 	@${MKDIR} ${WRKDIR}
 	@-for f in ${EXTRACT_ONLY}; do \
-		if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$f ${EXTRACT_AFTER_ARGS});\
+		if ! (cd ${WRKDIR} && ${TAR} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$f ${EXTRACT_AFTER_ARGS});\
 		then \
 			exit 1; \
 		fi; \


More information about the svn-ports-all mailing list