blob: 9841c4f4cb5eedeae9e7c247a377b04d7b7fd05e (
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
62
63
|
# $NetBSD: builtin.mk,v 1.3 2008/10/05 21:36:34 cube Exp $
BUILTIN_PKG:= xineramaproto
BUILTIN_FIND_FILES_VAR:= PC_XINERAMAPROTO
BUILTIN_FIND_FILES.PC_XINERAMAPROTO= ${X11BASE}/lib/pkgconfig/xineramaproto.pc
.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 ${X11BASE} == ${LOCALBASE}
IS_BUILTIN.xineramaproto= no
.elif !defined(IS_BUILTIN.xineramaproto)
IS_BUILTIN.xineramaproto= no
. if empty(PC_XINERAMAPROTO:M__nonexistent__)
IS_BUILTIN.xineramaproto= yes
. endif
.endif
MAKEVARS+= IS_BUILTIN.xineramaproto
###
### 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.xineramaproto) && \
!empty(IS_BUILTIN.xineramaproto:M[yY][eE][sS]) && \
empty(PC_XINERAMAPROTO:M__nonexistent__)
BUILTIN_VERSION.xineramaproto!= ${SED} -n -e 's/Version: //p' ${PC_XINERAMAPROTO}
BUILTIN_PKG.xineramaproto= xineramaproto-${BUILTIN_VERSION.xineramaproto}
.endif
MAKEVARS+= BUILTIN_PKG.xineramaproto
###
### 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.xineramaproto)
. if ${PREFER.xineramaproto} == "pkgsrc"
USE_BUILTIN.xineramaproto= no
. else
USE_BUILTIN.xineramaproto= ${IS_BUILTIN.xineramaproto}
. if defined(BUILTIN_PKG.xineramaproto) && \
!empty(IS_BUILTIN.xineramaproto:M[yY][eE][sS])
USE_BUILTIN.xineramaproto= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.xineramaproto}
. if !empty(USE_BUILTIN.xineramaproto:M[yY][eE][sS])
USE_BUILTIN.xineramaproto!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.xineramaproto:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.xineramaproto
.endif
MAKEVARS+= USE_BUILTIN.xineramaproto
.include "../../mk/x11.builtin.mk"
|