Received: by mail.netbsd.org (Postfix, from userid 605) id 239E884EC5; Mon, 30 Aug 2021 11:53:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5CAA884EC4 for ; Mon, 30 Aug 2021 11:53:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id BApLapyMNF_5 for ; Mon, 30 Aug 2021 11:53:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9E30A84CBC for ; Mon, 30 Aug 2021 11:53:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 97AE8FA97; Mon, 30 Aug 2021 11:53:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1630324425106980" MIME-Version: 1.0 Date: Mon, 30 Aug 2021 11:53:45 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/math/isl To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20210830115345.97AE8FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1630324425106980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Mon Aug 30 11:53:45 UTC 2021 Added Files: pkgsrc/math/isl: inplace.mk Log Message: math/isl: Add inplace.mk file Intended for gcc-inplace-math option of GCC packages. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/math/isl/inplace.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1630324425106980 Content-Disposition: inline Content-Length: 950 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/math/isl/inplace.mk diff -u /dev/null pkgsrc/math/isl/inplace.mk:1.1 --- /dev/null Mon Aug 30 11:53:45 2021 +++ pkgsrc/math/isl/inplace.mk Mon Aug 30 11:53:45 2021 @@ -0,0 +1,19 @@ +# $NetBSD: inplace.mk,v 1.1 2021/08/30 11:53:45 micha Exp $ +# +# Include this file to extract math/isl source into the WRKSRC of +# another package. This is to be used by GCC packages to avoid the +# numerous dependencies math/isl has. + +.PHONY: fetch-inplace-isl extract-inplace-isl +post-fetch: fetch-inplace-isl + +post-extract: extract-inplace-isl + +fetch-inplace-isl: + (cd ../../math/isl && ${MAKE} WRKDIR=${WRKSRC}/.devel.isl EXTRACT_DIR=${WRKSRC} \ + WRKSRC='$${EXTRACT_DIR}/$${DISTNAME}' SKIP_DEPENDS=YES checksum) + +extract-inplace-isl: + (cd ../../math/isl && ${MAKE} WRKDIR=${WRKSRC}/.devel.isl EXTRACT_DIR=${WRKSRC} \ + WRKSRC='$${EXTRACT_DIR}/$${DISTNAME}' SKIP_DEPENDS=YES patch) + ${MV} ${WRKSRC}/isl-* ${WRKSRC}/isl --_----------=_1630324425106980--