diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-23 19:26:48 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-23 19:26:48 +0000 |
commit | 34d11d8a0f59e1c62bc5b1cc1046d3275e061062 (patch) | |
tree | ca311365ad4be7fa955c6e626140f094e60c3647 /archivers/bzip2 | |
parent | 8ca42bcf7c09eef6cbb13b534ad4d0a51c780fb1 (diff) | |
download | pkgsrc-34d11d8a0f59e1c62bc5b1cc1046d3275e061062.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 'archivers/bzip2')
-rw-r--r-- | archivers/bzip2/buildlink.mk | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/archivers/bzip2/buildlink.mk b/archivers/bzip2/buildlink.mk index dc20ebe6b44..b98aa7e02ef 100644 --- a/archivers/bzip2/buildlink.mk +++ b/archivers/bzip2/buildlink.mk @@ -1,10 +1,11 @@ -# $NetBSD: buildlink.mk,v 1.1 2001/06/21 22:36:54 jlam Exp $ +# $NetBSD: buildlink.mk,v 1.2 2001/06/23 19:26:48 jlam Exp $ # # This Makefile fragment is included by packages that use bzip2. # # To use this Makefile fragment, simply: # -# (1) Optionally define BZIP2_REQD to the version of bzip2 desired. +# (1) Optionally define BUILDLINK_DEPENDS.bzip2 to the dependency pattern +# for the version of bzip2 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,9 +15,9 @@ .if !defined(BZIP2_BUILDLINK_MK) BZIP2_BUILDLINK_MK= # defined -.include "../../mk/bsd.prefs.mk" +BUILDLINK_DEPENDS.bzip2?= bzip2>=1.0.1 -BZIP2_REQD?= 1.0.1 +.include "../../mk/bsd.prefs.mk" .if exists(/usr/include/bzlib.h) # @@ -34,7 +35,7 @@ _NEED_BZIP2= NO .endif .if ${_NEED_BZIP2} == "YES" -DEPENDS+= bzip2>=${BZIP2_REQD}:../../archivers/bzip2 +DEPENDS+= ${BUILDLINK_DEPENDS.bzip2}:../../archivers/bzip2 BUILDLINK_PREFIX.bzip2= ${LOCALBASE} .else BUILDLINK_PREFIX.bzip2= /usr |