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