842c8f3479
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.
33 lines
946 B
Makefile
33 lines
946 B
Makefile
# $NetBSD: buildlink3.mk,v 1.10 2015/11/25 12:51:16 jperkin Exp $
|
|
|
|
BUILDLINK_TREE+= gcc47
|
|
|
|
.if !defined(GCC47_BUILDLINK3_MK)
|
|
GCC47_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.gcc47+= gcc47>=4.7
|
|
BUILDLINK_ABI_DEPENDS.gcc47+= gcc47>=4.7.0
|
|
BUILDLINK_PKGSRCDIR.gcc47= ../../lang/gcc47
|
|
BUILDLINK_DEPMETHOD.gcc47?= build
|
|
|
|
BUILDLINK_PASSTHRU_DIRS+= ${BUILDLINK_PREFIX.gcc47}/gcc47
|
|
|
|
BUILDLINK_FILES.gcc47= #empty
|
|
BUILDLINK_AUTO_VARS.gcc47= no
|
|
|
|
# Packages that link against shared libraries need a full dependency.
|
|
.if defined(_USE_GCC_SHLIB)
|
|
DEPENDS+= {gcc47,gcc47-libs}>=4.7:../../lang/gcc47-libs
|
|
ABI_DEPENDS+= {gcc47,gcc47-libs}>=4.7.0:../../lang/gcc47-libs
|
|
.endif
|
|
|
|
pkgbase := gcc47
|
|
.include "../../mk/pkg-build-options.mk"
|
|
.if !empty(PKG_BUILD_OPTIONS.gcc47:Mgcc-java)
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.endif # GCC47_BUILDLINK3_MK
|
|
BUILDLINK_TREE+= -gcc47
|