diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-12 02:35:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-12 02:35:06 +0000 |
commit | d2b62c66fbc6fa5d43546377699557ae9780a930 (patch) | |
tree | abedabb5e0a307cd66dc653a926873635736358e /net/hesiod | |
parent | 8d7a59f64baaca76cd5a0b7d879528cc17e128f4 (diff) | |
download | pkgsrc-d2b62c66fbc6fa5d43546377699557ae9780a930.tar.gz |
Create a new variable PREFER_NATIVE that has the opposite semantics
as PREFER_PKGSRC. Preferences are determined by the most specific
instance of the package in either PREFER_PKGSRC or PREFER_NATIVE. If
a package is specified in neither or in both variables, then PREFER_PKGSRC
has precedence over PREFER_NATIVE.
Diffstat (limited to 'net/hesiod')
-rw-r--r-- | net/hesiod/buildlink2.mk | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/net/hesiod/buildlink2.mk b/net/hesiod/buildlink2.mk index 5e89f709db8..991610b0cc5 100644 --- a/net/hesiod/buildlink2.mk +++ b/net/hesiod/buildlink2.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink2.mk,v 1.6 2004/02/12 01:59:38 jlam Exp $ +# $NetBSD: buildlink2.mk,v 1.7 2004/02/12 02:35:06 jlam Exp $ .if !defined(HESIOD_BUILDLINK2_MK) HESIOD_BUILDLINK2_MK= # defined @@ -20,8 +20,18 @@ _NEED_HESIOD= NO _NEED_HESIOD= YES .endif -.if !empty(PREFER_PKGSRC:M[yY][eE][sS]) || \ - !empty(PREFER_PKGSRC:Mhesiod) +.if !empty(PREFER_NATIVE:M[yY][eE][sS]) && \ + ${_BUILTIN_HESIOD} == "YES" +_NEED_HESIOD= NO +.endif +.if !empty(PREFER_PKGSRC:M[yY][eE][sS]) +_NEED_HESIOD= YES +.endif +.if !empty(PREFER_NATIVE:Mhesiod) && \ + ${_BUILTIN_HESIOD} == "YES" +_NEED_HESIOD= NO +.endif +.if !empty(PREFER_PKGSRC:Mhesiod) _NEED_HESIOD= YES .endif |