diff options
author | jlam <jlam> | 2001-06-23 19:26:48 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-06-23 19:26:48 +0000 |
commit | 5b2c8b48db2ee1d0436c0891fd223c20cdf5d434 (patch) | |
tree | ca311365ad4be7fa955c6e626140f094e60c3647 /audio/esound | |
parent | a22484eaf1d72499b5caeed38ea9627ead371252 (diff) | |
download | pkgsrc-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 'audio/esound')
-rw-r--r-- | audio/esound/buildlink.mk | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/audio/esound/buildlink.mk b/audio/esound/buildlink.mk index 5753a939c64..9ff9cb45750 100644 --- a/audio/esound/buildlink.mk +++ b/audio/esound/buildlink.mk @@ -1,10 +1,11 @@ -# $NetBSD: buildlink.mk,v 1.1 2001/06/16 19:23:18 jlam Exp $ +# $NetBSD: buildlink.mk,v 1.2 2001/06/23 19:26:49 jlam Exp $ # # This Makefile fragment is included by packages that use esound. # # To use this Makefile fragment, simply: # -# (1) Optionally define ESOUND_REQD to the version of esound desired. +# (1) Optionally define BUILDLINK_DEPENDS.esound to the dependency pattern +# for the version of esound 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(ESOUND_BUILDLINK_MK) ESOUND_BUILDLINK_MK= # defined -ESOUND_REQD?= 0.2.18 -DEPENDS+= esound>=${ESOUND_REQD}:../../audio/esound +BUILDLINK_DEPENDS.esound?= esound>=0.2.18 +DEPENDS+= ${BUILDLINK_DEPENDS.esound}:../../audio/esound BUILDLINK_PREFIX.esound= ${LOCALBASE} BUILDLINK_FILES.esound= include/esd.h |