6d92080aa2
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# $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
|