diff options
author | reed <reed> | 2006-04-18 17:14:45 +0000 |
---|---|---|
committer | reed <reed> | 2006-04-18 17:14:45 +0000 |
commit | 2381a918e0b2580bdf68684fc90a9ebabfceff67 (patch) | |
tree | 7067c9b7802ed948192d804d62bab428d154ac95 /x11/randrproto/builtin.mk | |
parent | 622952ebdceba874f7ac49c2339c0c09a37f8f83 (diff) | |
download | pkgsrc-2381a918e0b2580bdf68684fc90a9ebabfceff67.tar.gz |
Import randrproto from pkgsrc-wip.
This provides the Randr extension headers from modular X.org X11
project.
This will replace the randrext package.
Diffstat (limited to 'x11/randrproto/builtin.mk')
-rw-r--r-- | x11/randrproto/builtin.mk | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/x11/randrproto/builtin.mk b/x11/randrproto/builtin.mk new file mode 100644 index 00000000000..07b89c7b225 --- /dev/null +++ b/x11/randrproto/builtin.mk @@ -0,0 +1,90 @@ +# $NetBSD: builtin.mk,v 1.1.1.1 2006/04/18 17:14:45 reed Exp $ + +# TODO: builtin.mk failed to use native on XFree86 +# the two headers are identical with native XFree86 + +BUILTIN_PKG:= randrproto + +BUILTIN_FIND_FILES_VAR:= H_RANDR +BUILTIN_FIND_FILES.H_RANDR= ${X11BASE}/include/X11/extensions/randr.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.randrproto) +IS_BUILTIN.randrproto= no +# +# Here, we skip checking whether the files are under ${LOCALBASE} since +# we'll consider this X11 package to be built-in even if it's a part +# of one of the pkgsrc-installed X11 distributions. +# +. if empty(H_RANDR:M__nonexistent__) +IS_BUILTIN.randrproto= yes +. endif +.endif +MAKEVARS+= IS_BUILTIN.randrproto + +### +### 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.randrproto) && \ + !empty(IS_BUILTIN.randrproto:M[yY][eE][sS]) && \ + empty(H_RANDR:M__nonexistent__) +BUILTIN_VERSION.randrproto!= \ + ${AWK} '/\#define[ ]*RANDR_MAJOR/ { M = $$3 } \ + /\#define[ ]*RANDR_MINOR/ { m = "."$$3 } \ + END { printf "%s%s\n", M, m }' \ + ${H_RANDR} +BUILTIN_PKG.randrproto= randrproto-${BUILTIN_VERSION.randrproto} +.endif +MAKEVARS+= BUILTIN_PKG.randrproto + +### +### 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.randrproto) +. if ${PREFER.randrproto} == "pkgsrc" +USE_BUILTIN.randrproto= no +. else +USE_BUILTIN.randrproto= ${IS_BUILTIN.randrproto} +. if defined(BUILTIN_PKG.randrproto) && \ + !empty(IS_BUILTIN.randrproto:M[yY][eE][sS]) +USE_BUILTIN.randrproto= yes +. for _dep_ in ${BUILDLINK_API_DEPENDS.randrproto} +. if !empty(USE_BUILTIN.randrproto:M[yY][eE][sS]) +USE_BUILTIN.randrproto!= \ + if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.randrproto:Q}; then \ + ${ECHO} yes; \ + else \ + ${ECHO} no; \ + fi +. endif +. endfor +. endif +. endif # PREFER.randrproto +.endif +MAKEVARS+= USE_BUILTIN.randrproto + +### +### The section below only applies if we are not including this file +### solely to determine whether a built-in implementation exists. +### +CHECK_BUILTIN.randrproto?= no +.if !empty(CHECK_BUILTIN.randrproto:M[nN][oO]) + +. if !empty(USE_BUILTIN.randrproto:M[nN][oO]) +BUILDLINK_API_DEPENDS.randrproto+= randrproto>=1.0 +. endif + +. if !empty(USE_BUILTIN.randrproto:M[yY][eE][sS]) +BUILDLINK_PREFIX.randrproto= ${X11BASE} +. include "../../mk/x11.buildlink3.mk" +. include "../../mk/x11.builtin.mk" +. endif + +.endif # CHECK_BUILTIN.randrproto |