1467aa06e7
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.
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
# $NetBSD: buildlink3.mk,v 1.12 2015/11/25 12:53:42 jperkin Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use xmlcatmgr.
|
|
#
|
|
# The following variables are automatically defined for free use in packages:
|
|
# XMLCATMGR - Path to the xmlcatmgr program.
|
|
# SGML_DEFAULT_CATALOG - Path to the system-wide (tunable) SGML catalog.
|
|
# XML_DEFAULT_CATALOG - Path to the system-wide (tunable) XML catalog.
|
|
#
|
|
# Packages that recognize a system-wide catalog file should be configured
|
|
# to use SGML_DEFAULT_CATALOG or XML_DEFAULT_CATALOG, depending on the
|
|
# type of tool they are.
|
|
#
|
|
|
|
BUILDLINK_TREE+= xmlcatmgr
|
|
|
|
.if !defined(XMLCATMGR_BUILDLINK3_MK)
|
|
XMLCATMGR_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.xmlcatmgr+= xmlcatmgr>=2.0beta1
|
|
BUILDLINK_PKGSRCDIR.xmlcatmgr?= ../../textproc/xmlcatmgr
|
|
|
|
# Location of the xmlcatmgr binary program.
|
|
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
|
|
|
|
# System-wide configurable catalogs.
|
|
.if defined(PKG_SYSCONFDIR.xmlcatmgr) && !empty(PKG_SYSCONFDIR.xmlcatmgr)
|
|
SGML_DEFAULT_CATALOG= ${PKG_SYSCONFDIR.xmlcatmgr}/sgml/catalog
|
|
XML_DEFAULT_CATALOG= ${PKG_SYSCONFDIR.xmlcatmgr}/xml/catalog
|
|
.else
|
|
SGML_DEFAULT_CATALOG= ${PKG_SYSCONFBASEDIR}/sgml/catalog
|
|
XML_DEFAULT_CATALOG= ${PKG_SYSCONFBASEDIR}/xml/catalog
|
|
.endif
|
|
|
|
.endif # XMLCATMGR_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -xmlcatmgr
|