92 lines
2.7 KiB
Makefile
92 lines
2.7 KiB
Makefile
# $NetBSD: builtin.mk,v 1.4 2005/06/01 18:33:02 jlam Exp $
|
|
|
|
BUILTIN_PKG:= freetype2
|
|
|
|
BUILTIN_FIND_FILES_VAR:= H_FREETYPE2
|
|
BUILTIN_FIND_FILES.H_FREETYPE2= ${X11BASE}/include/freetype2/freetype/freetype.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.freetype2)
|
|
IS_BUILTIN.freetype2= no
|
|
. if exists(${H_FREETYPE2})
|
|
PKGSRC_USE_TOOLS+= imake # XXX
|
|
IMAKE?= ${X11BASE}/bin/imake # XXX
|
|
. if defined(IMAKE) && exists(${IMAKE})
|
|
IS_BUILTIN.freetype2!= \
|
|
${IMAKE} -DUseInstalled -I${X11BASE}/lib/X11/config \
|
|
-f ${BUILDLINK_PKGSRCDIR.freetype2}/builtin-imake.mk \
|
|
-s - | \
|
|
${IMAKE_MAKE} -f - builtin-test
|
|
. endif
|
|
. endif
|
|
.endif
|
|
MAKEVARS+= IS_BUILTIN.freetype2
|
|
|
|
###
|
|
### 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.freetype2) && \
|
|
!empty(IS_BUILTIN.freetype2:M[yY][eE][sS]) && \
|
|
exists(${H_FREETYPE2})
|
|
BUILTIN_VERSION.freetype2!= \
|
|
${AWK} 'BEGIN { p = ".0" } \
|
|
/\#define[ ]*FREETYPE_MAJOR/ { M = $$3 } \
|
|
/\#define[ ]*FREETYPE_MINOR/ { m = "."$$3 } \
|
|
/\#define[ ]*FREETYPE_PATCH/ { p = "."$$3 } \
|
|
END { printf "%s%s%s\n", M, m, p }' \
|
|
${H_FREETYPE2}
|
|
BUILTIN_PKG.freetype2= freetype2-${BUILTIN_VERSION.freetype2}
|
|
.endif
|
|
MAKEVARS+= BUILTIN_PKG.freetype2
|
|
|
|
###
|
|
### 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.freetype2)
|
|
. if ${PREFER.freetype2} == "pkgsrc"
|
|
USE_BUILTIN.freetype2= no
|
|
. else
|
|
USE_BUILTIN.freetype2= ${IS_BUILTIN.freetype2}
|
|
. if defined(BUILTIN_PKG.freetype2) && \
|
|
!empty(IS_BUILTIN.freetype2:M[yY][eE][sS])
|
|
USE_BUILTIN.freetype2= yes
|
|
. for _dep_ in ${BUILDLINK_DEPENDS.freetype2}
|
|
. if !empty(USE_BUILTIN.freetype2:M[yY][eE][sS])
|
|
USE_BUILTIN.freetype2!= \
|
|
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.freetype2:Q}; then \
|
|
${ECHO} yes; \
|
|
else \
|
|
${ECHO} no; \
|
|
fi
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
. endif # PREFER.freetype2
|
|
.endif
|
|
MAKEVARS+= USE_BUILTIN.freetype2
|
|
|
|
###
|
|
### The section below only applies if we are not including this file
|
|
### solely to determine whether a built-in implementation exists.
|
|
###
|
|
CHECK_BUILTIN.freetype2?= no
|
|
.if !empty(CHECK_BUILTIN.freetype2:M[nN][oO])
|
|
|
|
. if !empty(USE_BUILTIN.freetype2:M[nN][oO])
|
|
BUILDLINK_DEPENDS.freetype2+= freetype2>=2.1.3
|
|
. endif
|
|
|
|
. if !empty(USE_BUILTIN.freetype2:M[yY][eE][sS])
|
|
BUILDLINK_PREFIX.freetype2= ${X11BASE}
|
|
. include "../../mk/x11.buildlink3.mk"
|
|
. include "../../mk/x11.builtin.mk"
|
|
. endif
|
|
|
|
.endif # CHECK_BUILTIN.freetype2
|