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