From owner-svn-ports-all@FreeBSD.ORG Thu May 29 22:02:52 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E87DFCD; Thu, 29 May 2014 22:02:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D68B82CE9; Thu, 29 May 2014 22:02:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4TM2qHF045970; Thu, 29 May 2014 22:02:52 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4TM2qeJ045969; Thu, 29 May 2014 22:02:52 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405292202.s4TM2qeJ045969@svn.freebsd.org> From: John Marino Date: Thu, 29 May 2014 22:02:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355754 - head/math/spooles X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 22:02:53 -0000 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