blob: 9ca295d32d854edd0334501841414c2d045693d1 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# $NetBSD: builtin.mk,v 1.9 2005/06/03 16:03:09 jlam Exp $
BUILTIN_PKG:= Xft2
BUILTIN_FIND_FILES_VAR:= H_XFT2
BUILTIN_FIND_FILES.H_XFT2= ${X11BASE}/include/X11/Xft.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.Xft2)
IS_BUILTIN.Xft2= no
. if exists(${H_XFT2})
PKGSRC_USE_TOOLS+= imake # XXX
IMAKE?= ${X11BASE}/bin/imake # XXX
. if defined(IMAKE) && exists(${IMAKE})
IS_BUILTIN.Xft2!= \
dir=`cd ${BUILDLINK_PKGSRCDIR.Xft2} && ${PWD_CMD}`; \
cd ${TMPDIR:U/tmp:Q} && \
${IMAKE} -DUseInstalled -I${X11BASE}/lib/X11/config \
-f $$dir/builtin-imake.mk -C builtin-imake.$$$$.c \
-s - | \
${IMAKE_MAKE} -f - builtin-test
. endif
. endif
.endif
MAKEVARS+= IS_BUILTIN.Xft2
###
### 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.Xft2) && \
!empty(IS_BUILTIN.Xft2:M[yY][eE][sS]) && \
exists(${H_XFT2})
#
# Extract the version number from the header file, but if it's not
# there, then pretend it's from version 2.0.
#
BUILTIN_VERSION.Xft2!= \
${AWK} 'BEGIN { M = 2; m = ".0"; r = "" } \
/\#define[ ]*XFT_MAJOR/ { M = $$3 } \
/\#define[ ]*XFT_MINOR/ { m = "."$$3 } \
/\#define[ ]*XFT_REVISION/ { r = "."$$3 } \
END { printf "%s%s%s\n", M, m, r }' \
${H_XFT2}
BUILTIN_PKG.Xft2= Xft2-${BUILTIN_VERSION.Xft2}
.endif
MAKEVARS+= BUILTIN_PKG.Xft2
###
### Determine whether we should use the built-in implementation if it
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
###
#
# These are dependencies of Xft2. If we need to use the pkgsrc
# versions of any of these, then also use the pkgsrc version of
# Xft2.
#
.if defined(USE_BUILTIN.Xrender) && !empty(USE_BUILTIN.Xrender:M[nN][oO])
USE_BUILTIN.Xft2= no
.endif
.if defined(USE_BUILTIN.fontconfig) && !empty(USE_BUILTIN.fontconfig:M[nN][oO])
USE_BUILTIN.Xft2= no
.endif
.if !defined(USE_BUILTIN.Xft2)
. if ${PREFER.Xft2} == "pkgsrc"
USE_BUILTIN.Xft2= no
. else
USE_BUILTIN.Xft2= ${IS_BUILTIN.Xft2}
. if defined(BUILTIN_PKG.Xft2) && \
!empty(IS_BUILTIN.Xft2:M[yY][eE][sS])
USE_BUILTIN.Xft2= yes
. for _dep_ in ${BUILDLINK_DEPENDS.Xft2}
. if !empty(USE_BUILTIN.Xft2:M[yY][eE][sS])
USE_BUILTIN.Xft2!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.Xft2:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.Xft2
.endif
MAKEVARS+= USE_BUILTIN.Xft2
###
### The section below only applies if we are not including this file
### solely to determine whether a built-in implementation exists.
###
CHECK_BUILTIN.Xft2?= no
.if !empty(CHECK_BUILTIN.Xft2:M[nN][oO])
. if !empty(USE_BUILTIN.Xft2:M[nN][oO])
BUILDLINK_DEPENDS.Xft2+= Xft2>=2.1nb2
. endif
. if !empty(USE_BUILTIN.Xft2:M[yY][eE][sS])
BUILDLINK_PREFIX.Xft2= ${X11BASE}
BUILDLINK_FILES.Xft2+= lib/pkgconfig/Xft2.pc
USE_BUILTIN.Xrender= yes
USE_BUILTIN.fontconfig= yes
. endif
.endif # CHECK_BUILTIN.Xft2
|