summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorjlam <jlam>2001-06-23 19:26:48 +0000
committerjlam <jlam>2001-06-23 19:26:48 +0000
commit5b2c8b48db2ee1d0436c0891fd223c20cdf5d434 (patch)
treeca311365ad4be7fa955c6e626140f094e60c3647 /print
parenta22484eaf1d72499b5caeed38ea9627ead371252 (diff)
downloadpkgsrc-5b2c8b48db2ee1d0436c0891fd223c20cdf5d434.tar.gz
Generalize how the dependency pattern may be specified. Instead of just
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib. Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
Diffstat (limited to 'print')
-rw-r--r--print/cups/buildlink.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/print/cups/buildlink.mk b/print/cups/buildlink.mk
index 7d61f33c494..8311126d6c7 100644
--- a/print/cups/buildlink.mk
+++ b/print/cups/buildlink.mk
@@ -1,10 +1,11 @@
-# $NetBSD: buildlink.mk,v 1.6 2001/06/11 01:59:37 jlam Exp $
+# $NetBSD: buildlink.mk,v 1.7 2001/06/23 19:26:59 jlam Exp $
#
# This Makefile fragment is included by packages that use libcups.
#
# To use this Makefile fragment, simply:
#
-# (1) Optionally define CUPS_REQD to the version of cups desired.
+# (1) Optionally define BUILDLINK_DEPENDS.cups to the dependency pattern
+# for the version of cups desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
@@ -14,8 +15,8 @@
.if !defined(CUPS_BUILDLINK_MK)
CUPS_BUILDLINK_MK= # defined
-CUPS_REQD?= 1.1.1
-DEPENDS+= cups>=${CUPS_REQD}:../../print/cups
+BUILDLINK_DEPENDS.cups?= cups>=1.1.1
+DEPENDS+= ${BUILDLINK_DEPENDS.cups}:../../print/cups
BUILDLINK_PREFIX.cups= ${LOCALBASE}
BUILDLINK_FILES.cups= include/cups/*