diff options
author | bacon <bacon@pkgsrc.org> | 2020-10-13 12:11:07 +0000 |
---|---|---|
committer | bacon <bacon@pkgsrc.org> | 2020-10-13 12:11:07 +0000 |
commit | ab58aa2faa9076c0ac9689c838ca3c49d9ab4230 (patch) | |
tree | ddb75689725558ceb5655039e6f2e39b68d27656 /math | |
parent | da2e1ab0a8fa694bb01c75ecec364c3a03881a09 (diff) | |
download | pkgsrc-ab58aa2faa9076c0ac9689c838ca3c49d9ab4230.tar.gz |
math/linpack, math/superlu: Convert to use new BLAS
Convert to use the new mk/blas.buildlink3.mk rather than a specific blas
package
These dependents were overlooked in the initial upgrade and rev bump because
they listed blas in DEPENDS rather than including the bl3.
Diffstat (limited to 'math')
-rw-r--r-- | math/linpack/Makefile | 7 | ||||
-rw-r--r-- | math/superlu/Makefile | 8 |
2 files changed, 7 insertions, 8 deletions
diff --git a/math/linpack/Makefile b/math/linpack/Makefile index 6025872aa38..6405bda0037 100644 --- a/math/linpack/Makefile +++ b/math/linpack/Makefile @@ -1,18 +1,17 @@ -# $NetBSD: Makefile,v 1.15 2019/11/02 16:16:19 rillig Exp $ +# $NetBSD: Makefile,v 1.16 2020/10/13 12:11:07 bacon Exp $ DISTNAME= linpack-20010510 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= math devel MASTER_SITES= ${MASTER_SITE_LOCAL} MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Library of linear algebra Fortran routines -DEPENDS+= blas-[0-9]*:../../math/blas - NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL USE_LANGUAGES= fortran77 WRKSRC= ${WRKDIR}/linpack INSTALLATION_DIRS= lib +.include "../../mk/blas.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/superlu/Makefile b/math/superlu/Makefile index 942df6bc931..b793971bc4e 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2020/08/31 18:06:30 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2020/10/13 12:11:07 bacon Exp $ DISTNAME= superlu-5.2.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=xiaoyeli/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -10,10 +10,10 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://portal.nersc.gov/project/sparse/superlu/ COMMENT= Library for solving large, sparse, nonsymmetric systems of linear equations -DEPENDS+= blas-[0-9]*:../../math/blas - USE_CMAKE= yes USE_LANGUAGES= c fortran TEST_TARGET= test + +.include "../../mk/blas.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |