diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:16 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-11-25 12:51:16 +0000 |
commit | d79b928ed75cfd495e44622e21345f94071aab4c (patch) | |
tree | e339f459af067df609a92f5f7abb15e63c95cd6e /lang/gauche | |
parent | 13fff98b6f47f54109f1f95e08c9d7d8ce137bb7 (diff) | |
download | pkgsrc-d79b928ed75cfd495e44622e21345f94071aab4c.tar.gz |
Remove mk/find-prefix.mk usage from the lang 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 'lang/gauche')
-rw-r--r-- | lang/gauche/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lang/gauche/Makefile b/lang/gauche/Makefile index 98456a20bd4..6756b924fd6 100644 --- a/lang/gauche/Makefile +++ b/lang/gauche/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2015/02/27 14:35:01 tnn Exp $ +# $NetBSD: Makefile,v 1.68 2015/11/25 12:51:16 jperkin Exp $ # DISTNAME= Gauche-0.9.4 @@ -15,11 +15,9 @@ DEPENDS+= slib-[0-9]*:../../devel/slib .include "options.mk" -EVAL_PREFIX+= SLIB_PREFIX=slib - MAKE_JOBS_SAFE= no GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-slib=${SLIB_PREFIX}/share/slib +CONFIGURE_ARGS+= --with-slib=${LOCALBASE}/share/slib CONFIGURE_ARGS+= --enable-threads=pthreads CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv} |