pkgsrc/graphics/freetype2/builtin.mk
jlam 08c60ab83d Coalesce the common makefile code in the builtin.mk file that inspect
the X11 distribution using imake into mk/buildlink3/imake-check.mk.
imake-check.mk calls out to a helper shell script mk/buildlink3/imake-check
that generates the required Imakefiles and runs imake.  Remove the
now extraneous builtin-imake.mk files as the builtin.mk files can now
contain the name of the imake symbol to check.
2005-06-03 19:12:49 +00:00

86 lines
2.6 KiB
Makefile

# $NetBSD: builtin.mk,v 1.7 2005/06/03 19:12:49 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})
BUILTIN_IMAKE_CHECK:= freetype2:BuildFreetype2Library
. include "../../mk/buildlink3/imake-check.mk"
IS_BUILTIN.freetype2= ${BUILTIN_IMAKE_CHECK.freetype2}
. 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