diff options
author | tron <tron@pkgsrc.org> | 2013-12-14 09:54:52 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-12-14 09:54:52 +0000 |
commit | 67f2d17bbeb609e2590716de602002d270e7ef51 (patch) | |
tree | c424d609975fa60a42a08d4e48a623fa7f7ea829 /x11 | |
parent | 165cfae00dbce3fd5c7b5fb20fe1fe63eb9d2703 (diff) | |
download | pkgsrc-67f2d17bbeb609e2590716de602002d270e7ef51.tar.gz |
Restore detection of builtin "libXcomposite" which got broken when the
"Xcomposite" package was removed.
This should hopefully restore NetBSD support to a working state.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/libXcomposite/builtin.mk | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/x11/libXcomposite/builtin.mk b/x11/libXcomposite/builtin.mk new file mode 100644 index 00000000000..7cc3ebd4407 --- /dev/null +++ b/x11/libXcomposite/builtin.mk @@ -0,0 +1,51 @@ +# $NetBSD: builtin.mk,v 1.1 2013/12/14 09:54:52 tron Exp $ + +BUILTIN_PKG:= libXcomposite + +BUILTIN_FIND_FILES_VAR:= H_XCOMPOSITE +BUILTIN_FIND_FILES.H_XCOMPOSITE= \ + ${X11BASE}/include/X11/extensions/Xcomposite.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.libXcomposite) +. if empty(H_XCOMPOSITE:M__nonexistent__) +IS_BUILTIN.libXcomposite= yes +. else +IS_BUILTIN.libXcomposite= no +. endif +.endif +MAKEVARS+= IS_BUILTIN.libXcomposite + +### +### 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.libXcomposite) +. if ${PREFER.libXcomposite} == "pkgsrc" +USE_BUILTIN.libXcomposite= no +. else +USE_BUILTIN.libXcomposite= ${IS_BUILTIN.libXcomposite} +. if defined(BUILTIN_PKG.libXcomposite) && \ + !empty(IS_BUILTIN.libXcomposite:M[yY][eE][sS]) +USE_BUILTIN.libXcomposite= yes +. for _dep_ in ${BUILDLINK_API_DEPENDS.libXcomposite} +. if !empty(USE_BUILTIN.libXcomposite:M[yY][eE][sS]) +USE_BUILTIN.libXcomposite!= \ + if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.libXcomposite:Q}; then \ + ${ECHO} yes; \ + else \ + ${ECHO} no; \ + fi +. endif +. endfor +. endif +. endif # PREFER.libXcomposite +.endif +MAKEVARS+= USE_BUILTIN.libXcomposite + +.include "../../mk/x11.builtin.mk" |