# $NetBSD: builtin.mk,v 1.22 2024/01/13 20:07:33 riastradh Exp $ BUILTIN_PKG:= Xft2 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. appropriately ("yes" or "no"). ### .if !defined(IS_BUILTIN.Xft2) . if empty(H_XFT2:M__nonexistent__) IS_BUILTIN.Xft2= yes . else IS_BUILTIN.Xft2= no . endif .endif MAKEVARS+= IS_BUILTIN.Xft2 ### ### If there is a built-in implementation, then set BUILTIN_PKG. to ### a package name to represent the built-in package. ### .if !defined(BUILTIN_PKG.Xft2) && \ !empty(IS_BUILTIN.Xft2: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.Xft2!= \ ${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 }' \ ${_CROSS_DESTDIR:U:Q}${H_XFT2:Q} BUILTIN_PKG.Xft2= Xft2-${BUILTIN_VERSION.Xft2} .endif MAKEVARS+= BUILTIN_PKG.Xft2 ### ### Determine whether we should use the built-in implementation if it ### exists, and set USE_BUILTIN. appropriate ("yes" or "no"). ### .if !defined(USE_BUILTIN.Xft2) . if ${PREFER.Xft2} == "pkgsrc" USE_BUILTIN.Xft2= no . else USE_BUILTIN.Xft2= ${IS_BUILTIN.Xft2} . if defined(BUILTIN_PKG.Xft2) && \ !empty(IS_BUILTIN.Xft2:M[yY][eE][sS]) USE_BUILTIN.Xft2= yes . for _dep_ in ${BUILDLINK_API_DEPENDS.Xft2} . if !empty(USE_BUILTIN.Xft2:M[yY][eE][sS]) USE_BUILTIN.Xft2!= \ if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.Xft2:Q}; then \ ${ECHO} yes; \ else \ ${ECHO} no; \ fi . endif . endfor . endif . endif # PREFER.Xft2 .endif MAKEVARS+= USE_BUILTIN.Xft2 ### ### 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.Xft2?= no .if !empty(CHECK_BUILTIN.Xft2:M[nN][oO]) . if !empty(USE_BUILTIN.Xft2:M[nN][oO]) BUILDLINK_API_DEPENDS.Xft2+= Xft2>=2.1nb2 . endif .endif # CHECK_BUILTIN.Xft2