diff options
author | tron <tron> | 2013-06-05 12:12:07 +0000 |
---|---|---|
committer | tron <tron> | 2013-06-05 12:12:07 +0000 |
commit | 2ad29b2d89e1fb36a983371884b036e46df93bc9 (patch) | |
tree | 7293f75d35f808a8a9b1c748d5e2bada5e130a5e /x11 | |
parent | 267ace7139bb38d48a60eb33eb434fb7a265097b (diff) | |
download | pkgsrc-2ad29b2d89e1fb36a983371884b036e46df93bc9.tar.gz |
More changes required to fix PR pkg/47882:
1.) Don't divert to the legacy "Xft2" package on systems which use X.org
as the native X11 distribution.
2.) Accept a builtin "libXft" if it is new enough.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/libXft/buildlink3.mk | 4 | ||||
-rw-r--r-- | x11/libXft/builtin.mk | 105 |
2 files changed, 107 insertions, 2 deletions
diff --git a/x11/libXft/buildlink3.mk b/x11/libXft/buildlink3.mk index bb2e00cede4..5b2365d5ffa 100644 --- a/x11/libXft/buildlink3.mk +++ b/x11/libXft/buildlink3.mk @@ -1,8 +1,8 @@ -# $NetBSD: buildlink3.mk,v 1.10 2013/06/04 22:17:27 tron Exp $ +# $NetBSD: buildlink3.mk,v 1.11 2013/06/05 12:12:07 tron Exp $ .include "../../mk/bsd.fast.prefs.mk" -.if ${X11_TYPE} != "modular" +.if ${X11_TYPE} != "modular" && !exists(${X11BASE}/lib/xorg) .include "../../fonts/Xft2/buildlink3.mk" .else diff --git a/x11/libXft/builtin.mk b/x11/libXft/builtin.mk new file mode 100644 index 00000000000..a5674fe5f16 --- /dev/null +++ b/x11/libXft/builtin.mk @@ -0,0 +1,105 @@ +# $NetBSD: builtin.mk,v 1.1 2013/06/05 12:12:07 tron Exp $ + +.if !defined(USE_BUILTIN.fontconfig) +.include "../../fonts/fontconfig/builtin.mk" +.endif +.if !defined(USE_BUILTIN.Xrender) +.include "../../x11/Xrender/builtin.mk" +.endif + +BUILTIN_PKG:= libXft + +BUILTIN_FIND_FILES_VAR:= H_XFT2 +BUILTIN_FIND_FILES.H_XFT2= ${X11BASE}/include/X11/Xft/Xft.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.libXft) +. if empty(H_XFT2:M__nonexistent__) +IS_BUILTIN.libXft= yes +. else +IS_BUILTIN.libXft= no +. endif +.endif +MAKEVARS+= IS_BUILTIN.libXft + +### +### 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.libXft) && \ + !empty(IS_BUILTIN.libXft:M[yY][eE][sS]) && \ + empty(H_XFT2:M__nonexistent__) +# +# Extract the version number from the header file, but if it's not +# there, then pretend it's from version 2.0. +# +BUILTIN_VERSION.libXft!= \ + ${AWK} 'BEGIN { M = 2; m = ".0"; r = "" } \ + /\#define[ ]*XFT_MAJOR/ { M = $$3 } \ + /\#define[ ]*XFT_MINOR/ { m = "."$$3 } \ + /\#define[ ]*XFT_REVISION/ { r = "."$$3 } \ + END { printf "%s%s%s\n", M, m, r }' \ + ${H_XFT2} +BUILTIN_PKG.libXft= libXft-${BUILTIN_VERSION.libXft} +.endif +MAKEVARS+= BUILTIN_PKG.libXft + +### +### Determine whether we should use the built-in implementation if it +### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no"). +### +# +# These are dependencies of libXft. If we need to use the pkgsrc +# versions of any of these, then also use the pkgsrc version of +# libXft. +# +.if !empty(USE_BUILTIN.Xrender:M[nN][oO]) +USE_BUILTIN.libXft= no +.endif +.if !empty(USE_BUILTIN.fontconfig:M[nN][oO]) +USE_BUILTIN.libXft= no +.endif + +.if !defined(USE_BUILTIN.libXft) +. if ${PREFER.libXft} == "pkgsrc" +USE_BUILTIN.libXft= no +. else +USE_BUILTIN.libXft= ${IS_BUILTIN.libXft} +. if defined(BUILTIN_PKG.libXft) && \ + !empty(IS_BUILTIN.libXft:M[yY][eE][sS]) +USE_BUILTIN.libXft= yes +. for _dep_ in ${BUILDLINK_API_DEPENDS.libXft} +. if !empty(USE_BUILTIN.libXft:M[yY][eE][sS]) +USE_BUILTIN.libXft!= \ + if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.libXft:Q}; then \ + ${ECHO} yes; \ + else \ + ${ECHO} no; \ + fi +. endif +. endfor +. endif +. endif # PREFER.libXft +.endif +MAKEVARS+= USE_BUILTIN.libXft + +### +### The section below only applies if we are not including this file +### solely to determine whether a built-in implementation exists. +### + +.include "../../mk/x11.builtin.mk" + +CHECK_BUILTIN.libXft?= no +.if !empty(CHECK_BUILTIN.libXft:M[nN][oO]) + +. if !empty(USE_BUILTIN.libXft:M[nN][oO]) +BUILDLINK_API_DEPENDS.libXft+= libXft>=2.1.10 +. endif + +.endif # CHECK_BUILTIN.libXft |