Received: by mail.netbsd.org (Postfix, from userid 605) id 74FC284F41; Wed, 31 Aug 2022 18:41:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ADA6584E5E for ; Wed, 31 Aug 2022 18:41:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2VFL4FgxAk2l for ; Wed, 31 Aug 2022 18:41:08 +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 0EA8C84D57 for ; Wed, 31 Aug 2022 18:41:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0829EFA8A; Wed, 31 Aug 2022 18:41:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1661971268152710" MIME-Version: 1.0 Date: Wed, 31 Aug 2022 18:41:08 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc/math/R-nimble To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20220831184108.0829EFA8A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1661971268152710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Wed Aug 31 18:41:07 UTC 2022 Modified Files: pkgsrc/math/R-nimble: Makefile Log Message: math/R-nimble: Add tool dependency on gmake. A library, libnimble.a, is compiled by this package using a Gnu makefile. Add a tool dependency on gmake to avoid syntax errors. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/R-nimble/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1661971268152710 Content-Disposition: inline Content-Length: 658 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/R-nimble/Makefile diff -u pkgsrc/math/R-nimble/Makefile:1.4 pkgsrc/math/R-nimble/Makefile:1.5 --- pkgsrc/math/R-nimble/Makefile:1.4 Thu Apr 28 15:52:38 2022 +++ pkgsrc/math/R-nimble/Makefile Wed Aug 31 18:41:07 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2022/04/28 15:52:38 mef Exp $ +# $NetBSD: Makefile,v 1.5 2022/08/31 18:41:07 brook Exp $ R_PKGNAME= nimble R_PKGVER= 0.12.2 @@ -14,6 +14,7 @@ DEPENDS+= R-igraph>=1.2.4.1:../../math/R TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat USE_LANGUAGES= c++ fortran +USE_TOOLS+= gmake EIGEN_FILES+= PardisoSupport EIGEN_FILES+= src/Core/Assign_MKL.h --_----------=_1661971268152710--