d0b4c54eb6
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
69 lines
1.9 KiB
Makefile
69 lines
1.9 KiB
Makefile
# $NetBSD: builtin.mk,v 1.1 2004/03/10 17:57:15 jlam Exp $
|
|
|
|
_EXPAT_H= ${X11BASE}/include/expat.h
|
|
_X11_TMPL= ${X11BASE}/lib/X11/config/X11.tmpl
|
|
|
|
.if !defined(IS_BUILTIN.expat)
|
|
IS_BUILTIN.expat= no
|
|
. if exists(${_X11_TMPL}) && exists(${_EXPAT_H})
|
|
IS_BUILTIN.expat!= \
|
|
if ${GREP} -q BuildExpatLibrary ${_X11_TMPL}; then \
|
|
${ECHO} "yes"; \
|
|
else \
|
|
${ECHO} "no"; \
|
|
fi
|
|
. if !empty(IS_BUILTIN.expat:M[yY][eE][sS])
|
|
#
|
|
# Create an appropriate package name for the built-in expat distributed
|
|
# with the system. This package name can be used to check against
|
|
# BUILDLINK_DEPENDS.<pkg> to see if we need to install the pkgsrc version
|
|
# or if the built-in one is sufficient.
|
|
#
|
|
_EXPAT_MAJOR!= \
|
|
${AWK} '/\#define[ ]*XML_MAJOR_VERSION/ { print $$3 }' \
|
|
${_EXPAT_H}
|
|
_EXPAT_MINOR!= \
|
|
${AWK} '/\#define[ ]*XML_MINOR_VERSION/ { print $$3 }' \
|
|
${_EXPAT_H}
|
|
_EXPAT_MICRO!= \
|
|
${AWK} '/\#define[ ]*XML_MICRO_VERSION/ { print $$3 }' \
|
|
${_EXPAT_H}
|
|
_EXPAT_VERSION= ${_EXPAT_MAJOR}.${_EXPAT_MINOR}.${_EXPAT_MICRO}
|
|
BUILTIN_PKG.expat= expat-${_EXPAT_VERSION}
|
|
MAKEFLAGS+= BUILTIN_PKG.expat=${BUILTIN_PKG.expat}
|
|
. endif
|
|
. endif
|
|
MAKEFLAGS+= IS_BUILTIN.expat=${IS_BUILTIN.expat}
|
|
.endif
|
|
|
|
CHECK_BUILTIN.expat?= no
|
|
.if !empty(CHECK_BUILTIN.expat:M[yY][eE][sS])
|
|
USE_BUILTIN.expat= yes
|
|
.endif
|
|
|
|
.if !defined(USE_BUILTIN.expat)
|
|
USE_BUILTIN.expat?= ${IS_BUILTIN.expat}
|
|
|
|
. if defined(BUILTIN_PKG.expat)
|
|
USE_BUILTIN.expat= yes
|
|
. for _depend_ in ${BUILDLINK_DEPENDS.expat}
|
|
. if !empty(USE_BUILTIN.expat:M[yY][eE][sS])
|
|
USE_BUILTIN.expat!= \
|
|
if ${PKG_ADMIN} pmatch '${_depend_}' ${BUILTIN_PKG.expat}; then \
|
|
${ECHO} "yes"; \
|
|
else \
|
|
${ECHO} "no"; \
|
|
fi
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
.endif # USE_BUILTIN.expat
|
|
|
|
.if !empty(USE_BUILTIN.expat:M[nN][oO])
|
|
BUILDLINK_DEPENDS.expat+= expat>=1.95.4
|
|
.endif
|
|
|
|
.if !empty(USE_BUILTIN.expat:M[yY][eE][sS])
|
|
BUILDLINK_PREFIX.expat= ${X11BASE}
|
|
USE_X11= yes
|
|
.endif
|