blob: 1ccb6e9655c678dc14d89bab62d63ec2ac0787ad (
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
|
# $NetBSD: builtin.mk,v 1.2 2004/03/29 05:43:36 jlam Exp $
_X11_EXTENSIONS_RANDR_H= ${X11BASE}/include/X11/extensions/randr.h
.if !defined(IS_BUILTIN.randrext)
IS_BUILTIN.randrext= no
. if exists(${_X11_EXTENSIONS_RANDR_H})
IS_BUILTIN.randrext= yes
#
# Create an appropriate package name for the built-in randr distributed
# with the system. This package name can be used to check against
# BUILDLINK_DEPENDS.<pkg> to see if we need to install the pkgsrc version
# or if the built-in one is sufficient.
#
_RANDR_MAJOR!= \
${AWK} '/\#define[ ]*RANDR_MAJOR/ { print $$3 }' \
${_X11_EXTENSIONS_RANDR_H}
_RANDR_MINOR!= \
${AWK} '/\#define[ ]*RANDR_MINOR/ { print "."$$3 }' \
${_X11_EXTENSIONS_RANDR_H}
_RANDR_VERSION= ${_RANDR_MAJOR}${_RANDR_MINOR}
BUILTIN_PKG.randrext= randrext-${_RANDR_VERSION}
BUILDLINK_VARS+= BUILTIN_PKG.randrext
. endif
BUILDLINK_VARS+= IS_BUILTIN.randrext
.endif # IS_BUILTIN.randrext
.if !defined(USE_BUILTIN.randrext)
USE_BUILTIN.randrext?= ${IS_BUILTIN.randrext}
. if defined(BUILTIN_PKG.randrext)
USE_BUILTIN.randrext= yes
. for _depend_ in ${BUILDLINK_DEPENDS.randrext}
. if !empty(USE_BUILTIN.randrext:M[yY][eE][sS])
USE_BUILTIN.randrext!= \
if ${PKG_ADMIN} pmatch '${_depend_}' ${BUILTIN_PKG.randrext}; then \
${ECHO} "yes"; \
else \
${ECHO} "no"; \
fi
. endif
. endfor
. endif
.endif # USE_BUILTIN.randrext
CHECK_BUILTIN.randrext?= no
.if !empty(CHECK_BUILTIN.randrext:M[nN][oO])
.if !empty(USE_BUILTIN.randrext:M[nN][oO])
BUILDLINK_DEPENDS.randrext+= randrext>=1.0
.endif
.if !empty(USE_BUILTIN.randrext:M[yY][eE][sS])
BUILDLINK_PREFIX.randrext= ${X11BASE}
USE_X11= yes
.endif
.endif # CHECK_BUILTIN.randrext
|