diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:41 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:41 +0000 |
commit | aa94606bd1406f193593993d2a73fe542b67ff0d (patch) | |
tree | ab5e3d125f6da389efc69c27693379abbd3734c0 /math/superlu/Makefile | |
parent | c34a5ac0854578e72c415b0b65b57277dd6cd2ec (diff) | |
download | pkgsrc-aa94606bd1406f193593993d2a73fe542b67ff0d.tar.gz |
Remove mk/find-prefix.mk usage from the math category.
The find-prefix infrastructure was required in a pkgviews world where
packages installed from pkgsrc could have different installation
prefixes, and this was a way for a dependency prefix to be determined.
Now that pkgviews has been removed there is no longer any need for the
overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg
for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the
dependency is coming from pkgsrc.
Provides a reasonable performance win due to the reduction of `pkg_info
-qp` calls, some of which were redundant anyway as they were duplicating
the same information provided by BUILDLINK_PREFIX.pkg.
Diffstat (limited to 'math/superlu/Makefile')
-rw-r--r-- | math/superlu/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/math/superlu/Makefile b/math/superlu/Makefile index a8e34fd8cf5..aa2b47778a1 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2015/06/12 10:50:32 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2015/11/25 12:51:42 jperkin Exp $ DISTNAME= superlu_3.0 PKGNAME= superlu-3.0.1 @@ -12,9 +12,6 @@ COMMENT= ANSI C routine library for the solution of sparse linear systems DEPENDS+= blas-[0-9]*:../../math/blas -BLAS_PREFIX_DEFAULT= ${LOCALBASE} -EVAL_PREFIX+= BLAS_PREFIX=blas - DIST_SUBDIR= ${PKGNAME_NOREV} WRKSRC= ${WRKDIR}/SuperLU_3.0 BUILD_TARGET= superlulib |