diff options
Diffstat (limited to 'graphics/xpm/builtin.mk')
-rw-r--r-- | graphics/xpm/builtin.mk | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/graphics/xpm/builtin.mk b/graphics/xpm/builtin.mk new file mode 100644 index 00000000000..1a2c59b7166 --- /dev/null +++ b/graphics/xpm/builtin.mk @@ -0,0 +1,72 @@ +# $NetBSD: builtin.mk,v 1.1 2004/03/10 17:57:14 jlam Exp $ + +.include "../../mk/bsd.prefs.mk" + +_X11_XPM_H= ${X11BASE}/include/X11/xpm.h +_X11_TMPL= ${X11BASE}/lib/X11/config/X11.tmpl + +.if !defined(IS_BUILTIN.xpm) +IS_BUILTIN.xpm= no +. if exists(${_X11_XPM_H}) +. if !empty(X11BASE:M*openwin) +IS_BUILTIN.xpm!= \ + if /usr/sbin/pkgchk -l SUNWxwinc | ${GREP} -q xpm.h; then \ + ${ECHO} "yes"; \ + else \ + ${ECHO} "no"; \ + fi +. elif ${OPSYS} == "IRIX" +IS_BUILTIN.xpm= yes +. elif exists(${_X11_TMPL}) +IS_BUILTIN.xpm!= \ + if ${GREP} -q NormalLibXpm ${_X11_TMPL}; then \ + ${ECHO} "yes"; \ + else \ + ${ECHO} "no"; \ + fi +. else +IS_BUILTIN.xpm= no +. endif +. endif +. if !empty(IS_BUILTIN.xpm:M[yY][eE][sS]) +# +# Create an appropriate package name for the built-in xpm 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. +# +_XPM_MAJOR!= \ + ${AWK} '/\#define[ ]*XpmFormat/ { print $$3 }' ${_X11_XPM_H} +_XPM_MINOR!= \ + ${AWK} '/\#define[ ]*XpmVersion/ { print "."$$3 }' ${_X11_XPM_H} +_XPM_PATCH!= \ + ${AWK} 'BEGIN { split("abcdefghijklmnopqrstuvwxyz", alpha, "") } /\#define[ ]*XpmRevision/ { print alpha[$$3] }' ${_X11_XPM_H} +_XPM_VERSION= ${_XPM_MAJOR}${_XPM_MINOR}${_XPM_PATCH} +BUILTIN_PKG.xpm= xpm-${_XPM_VERSION} +MAKEFLAGS+= BUILTIN_PKG.xpm=${BUILTIN_PKG.xpm} +. endif +MAKEFLAGS+= IS_BUILTIN.xpm=${IS_BUILTIN.xpm} +.endif # USE_BUILTIN.xpm + +CHECK_BUILTIN.xpm?= no +.if !empty(CHECK_BUILTIN.xpm:M[yY][eE][sS]) +USE_BUILTIN.xpm= yes +.endif + +.if !defined(USE_BUILTIN.xpm) +USE_BUILTIN.xpm?= ${IS_BUILTIN.xpm} + +. if defined(BUILTIN_PKG.xpm) +USE_BUILTIN.xpm= yes +. for _depend_ in ${BUILDLINK_DEPENDS.xpm} +. if !empty(USE_BUILTIN.xpm:M[yY][eE][sS]) +USE_BUILTIN.xpm!= \ + if ${PKG_ADMIN} pmatch '${_depend_}' ${BUILTIN_PKG.xpm}; then \ + ${ECHO} "yes"; \ + else \ + ${ECHO} "no"; \ + fi +. endif +. endfor +. endif +.endif # USE_BUILTIN.xpm |