Received: by mail.netbsd.org (Postfix, from userid 605) id E4F6784EFF; Mon, 25 Jul 2022 14:57:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B55084EE9 for ; Mon, 25 Jul 2022 14:57:59 +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 eUulYRY_ts8H for ; Mon, 25 Jul 2022 14:57:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7CE3784CE2 for ; Mon, 25 Jul 2022 14:57:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 76687FB1A; Mon, 25 Jul 2022 14:57:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1658761078153240" MIME-Version: 1.0 Date: Mon, 25 Jul 2022 14:57:58 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/math/plumed To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20220725145758.76687FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1658761078153240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Mon Jul 25 14:57:58 UTC 2022 Modified Files: pkgsrc/math/plumed: Makefile Log Message: math/plumed: needs CBLAS (possibly picks gslcblas otherwise) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/plumed/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1658761078153240 Content-Disposition: inline Content-Length: 1039 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/plumed/Makefile diff -u pkgsrc/math/plumed/Makefile:1.1 pkgsrc/math/plumed/Makefile:1.2 --- pkgsrc/math/plumed/Makefile:1.1 Fri Jul 8 19:47:59 2022 +++ pkgsrc/math/plumed/Makefile Mon Jul 25 14:57:58 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2022/07/08 19:47:59 thor Exp $ +# $NetBSD: Makefile,v 1.2 2022/07/25 14:57:58 thor Exp $ DISTNAME= plumed-2.8.0 CATEGORIES= math @@ -18,7 +18,7 @@ TEST_TARGET= check CONFIGURE_ARGS+= --enable-gsl CONFIGURE_ARGS+= --enable-external-blas --enable-external-lapack -CONFIGURE_ARGS+= LIBS='${LAPACK_LIBS}' +CONFIGURE_ARGS+= LIBS='${LAPACK_LIBS} ${CBLAS_LIBS}' CONFIGURE_ARGS+= LIBRARY_PATH='${LIBRARY_PATH}:${PREFIX}/lib' CONFIGURE_ARGS+= --enable-rpath # Python module should be a separate package, I suppose. @@ -34,6 +34,8 @@ REPLACE_BASH+= scripts/*.sh patches/*.sh .include "options.mk" +BLAS_C_INTERFACE= yes + .include "../../devel/zlib/buildlink3.mk" .include "../../mk/blas.buildlink3.mk" .include "../../math/fftw/buildlink3.mk" --_----------=_1658761078153240--