diff options
author | obache <obache@pkgsrc.org> | 2014-02-06 05:51:54 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-02-06 05:51:54 +0000 |
commit | 4e3d332530f73b0e8ed7c153635b4743927feb00 (patch) | |
tree | 4a6deffd4d30f6071b4e5e379ce19de44890da06 /x11/libXrender | |
parent | 2365acba5bafd3cdc8e2109a891e7116094e1ca0 (diff) | |
download | pkgsrc-4e3d332530f73b0e8ed7c153635b4743927feb00.tar.gz |
Use pkg-config to detect builtin pkg, pre-pc builtin version is redirected to
Xrender in buildlink3.mk.
Diffstat (limited to 'x11/libXrender')
-rw-r--r-- | x11/libXrender/builtin.mk | 50 |
1 files changed, 3 insertions, 47 deletions
diff --git a/x11/libXrender/builtin.mk b/x11/libXrender/builtin.mk index f8d427c7293..c9371345a79 100644 --- a/x11/libXrender/builtin.mk +++ b/x11/libXrender/builtin.mk @@ -1,51 +1,7 @@ -# $NetBSD: builtin.mk,v 1.2 2008/10/05 21:36:33 cube Exp $ +# $NetBSD: builtin.mk,v 1.3 2014/02/06 05:51:54 obache Exp $ BUILTIN_PKG:= libXrender +PKGCONFIG_FILE.libXrender= ${X11BASE}/lib/pkgconfig/xrender.pc -BUILTIN_FIND_FILES_VAR:= H_XRENDER -BUILTIN_FIND_FILES.H_XRENDER= ${X11BASE}/include/X11/extensions/Xrender.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 ${X11BASE} == ${LOCALBASE} -IS_BUILTIN.libXrender= no -.elif !defined(IS_BUILTIN.libXrender) -IS_BUILTIN.libXrender= no -. if empty(H_XRENDER:M__nonexistent__) -IS_BUILTIN.libXrender= yes -. endif -.endif -MAKEVARS+= IS_BUILTIN.libXrender - -### -### 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.libXrender) -. if ${PREFER.libXrender} == "pkgsrc" -USE_BUILTIN.libXrender= no -. else -USE_BUILTIN.libXrender= ${IS_BUILTIN.libXrender} -. if defined(BUILTIN_PKG.libXrender) && \ - !empty(IS_BUILTIN.libXrender:M[yY][eE][sS]) -USE_BUILTIN.libXrender= yes -. for _dep_ in ${BUILDLINK_API_DEPENDS.libXrender} -. if !empty(USE_BUILTIN.libXrender:M[yY][eE][sS]) -USE_BUILTIN.libXrender!= \ - if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.libXrender:Q}; then \ - ${ECHO} yes; \ - else \ - ${ECHO} no; \ - fi -. endif -. endfor -. endif -. endif # PREFER.libXrender -.endif -MAKEVARS+= USE_BUILTIN.libXrender - +.include "../../mk/buildlink3/pkgconfig-builtin.mk" .include "../../mk/x11.builtin.mk" |