blob: 9c6a0c09455e43a04aa504d7755dbeb71a8025c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $NetBSD: builtin.mk,v 1.4 2006/04/06 06:22:44 reed Exp $
BUILTIN_PKG:= skey
BUILTIN_FIND_FILES_VAR:= H_SKEY
BUILTIN_FIND_FILES.H_SKEY= /usr/include/skey.h
.include "../../mk/buildlink3/bsd.builtin.mk"
###
### Determine if there is a built-in implementation of the package and
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
###
.if !defined(IS_BUILTIN.skey)
IS_BUILTIN.skey= no
. if empty(H_SKEY:M__nonexistent__) && empty(H_SKEY:M${LOCALBASE}/*)
IS_BUILTIN.skey= yes
. endif
.endif
MAKEVARS+= IS_BUILTIN.skey
###
### If there is a built-in implementation, then set BUILTIN_PKG.<pkg> to
### a package name to represent the built-in package.
###
.if !defined(BUILTIN_PKG.skey) && \
!empty(IS_BUILTIN.skey:M[yY][eE][sS) && \
empty(H_SKEY:M__nonexistent__)
# XXX
# XXX Consider the native skey to be skey-1.1.5.
# XXX
BUILTIN_PKG.skey= skey-1.1.5
.endif
MAKEVARS+= BUILTIN_PKG.skey
###
### Determine whether we should use the built-in implementation if it
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
###
.if !defined(USE_BUILTIN.skey)
. if ${PREFER.skey} == "pkgsrc"
USE_BUILTIN.skey= no
. else
USE_BUILTIN.skey= ${IS_BUILTIN.skey}
. if defined(BUILTIN_PKG.skey) && \
!empty(IS_BUILTIN.skey:M[yY][eE][sS])
USE_BUILTIN.skey= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.skey}
. if !empty(USE_BUILTIN.skey:M[yY][eE][sS])
USE_BUILTIN.skey!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.skey:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.skey
.endif
MAKEVARS+= USE_BUILTIN.skey
|