summaryrefslogtreecommitdiff
path: root/devel/libevent
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-02-05 06:58:02 +0000
committerjlam <jlam@pkgsrc.org>2004-02-05 06:58:02 +0000
commit07a9d8dfb209780130723eba289f41872654e7c3 (patch)
tree435c664e6b88ad088b762f222d98f5c10bace96c /devel/libevent
parentf3d1d8cfb0f2a3d26dc60f5cfbaa917b45790f02 (diff)
downloadpkgsrc-07a9d8dfb209780130723eba289f41872654e7c3.tar.gz
Support a new global variable:
BUILDLINK_PREFER_PKGSRC This variable determines whether or not to prefer the pkgsrc versions of software that is also present in the base system. This variable is multi-state: defined, or "yes" always prefer the pkgsrc versions not defined, or "no" only use the pkgsrc versions if needed by dependency requirements This can also take a list of packages for which to prefer the pkgsrc-installed software. The package names may be found by consulting the value added to BUILDLINK_PACKAGES in the buildlink[23].mk files for that package.
Diffstat (limited to 'devel/libevent')
-rw-r--r--devel/libevent/buildlink2.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/libevent/buildlink2.mk b/devel/libevent/buildlink2.mk
index 8920f73681f..5f5b1d62abb 100644
--- a/devel/libevent/buildlink2.mk
+++ b/devel/libevent/buildlink2.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink2.mk,v 1.2 2003/06/23 13:28:53 wiz Exp $
+# $NetBSD: buildlink2.mk,v 1.3 2004/02/05 06:58:03 jlam Exp $
#
# This Makefile fragment is included by packages that use libevent.
#
@@ -14,6 +14,14 @@ _NEED_LIBEVENT= NO
_NEED_LIBEVENT= YES
.endif
+.if defined(BUILDLINK_PREFER_PKGSRC)
+. if empty(BUILDLINK_PREFER_PKGSRC) || \
+ !empty(BUILDLINK_PREFER_PKGSRC:M[yY][eE][sS]) || \
+ !empty(BUILDLINK_PREFER_PKGSRC:Mlibevent)
+_NEED_LIBEVENT= YES
+. endif
+.endif
+
.if ${_NEED_LIBEVENT} == "YES"
BUILDLINK_PACKAGES+= libevent
BUILDLINK_DEPENDS.libevent?= libevent>=0.6