summaryrefslogtreecommitdiff
path: root/devel/cdk/builtin.mk
blob: 11110f5f13e75697fa143ab2951dbdec9e551981 (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
# $NetBSD: builtin.mk,v 1.2 2005/06/01 18:02:43 jlam Exp $

BUILTIN_PKG:=	cdk

BUILTIN_FIND_FILES_VAR:=	H_CDK
BUILTIN_FIND_FILES.H_CDK=	/usr/include/cdk/cdk.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.cdk)
IS_BUILTIN.cdk=	no
.  if empty(H_CDK:M${LOCALBASE}/*) && exists(${H_CDK})
IS_BUILTIN.cdk=	yes
.  endif
.endif
MAKEVARS+=	IS_BUILTIN.cdk

###
### 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.cdk)
.  if ${PREFER.cdk} == "pkgsrc"
USE_BUILTIN.cdk=	no
.  else
USE_BUILTIN.cdk=	${IS_BUILTIN.cdk}
.    if defined(BUILTIN_PKG.cdk) && \
        !empty(IS_BUILTIN.cdk:M[yY][eE][sS])
USE_BUILTIN.cdk=	yes
.      for _dep_ in ${BUILDLINK_DEPENDS.cdk}
.        if !empty(USE_BUILTIN.cdk:M[yY][eE][sS])
USE_BUILTIN.cdk!=							\
        if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.cdk:Q}; then	\
		${ECHO} yes;						\
        else								\
		${ECHO} no;						\
	fi
.        endif
.      endfor
.    endif
.  endif  # PREFER.cdk
.endif
MAKEVARS+=	USE_BUILTIN.cdk