2003-03-09 20:04:52 +01:00
|
|
|
# $NetBSD: Makefile,v 1.15 2003/03/09 19:04:53 jschauma Exp $
|
2000-10-15 13:41:17 +02:00
|
|
|
|
2002-08-25 20:38:05 +02:00
|
|
|
PKGNAME= MesaLib-${MESA_VERSION}
|
2000-10-15 13:41:17 +02:00
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/Lib//}
|
|
|
|
MAINTAINER= rh@netbsd.org
|
2001-02-16 16:22:13 +01:00
|
|
|
COMMENT= Graphics library similar to SGI's OpenGL
|
2000-10-15 13:41:17 +02:00
|
|
|
|
2002-08-25 20:38:05 +02:00
|
|
|
.include "../Mesa/Makefile.common"
|
2000-10-15 13:41:17 +02:00
|
|
|
|
2002-08-25 20:38:05 +02:00
|
|
|
USE_BUILDLINK2= yes
|
|
|
|
USE_X11BASE= yes
|
|
|
|
CONFIGURE_ARGS+= --without-glut
|
2002-11-18 08:49:24 +01:00
|
|
|
BUILD_DIRS= ${WRKSRC}/src
|
2000-10-15 13:41:17 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2003-03-09 20:04:52 +01:00
|
|
|
# XXX should be >= 3.4.2
|
|
|
|
.if empty(MESA_REQD:M5.[0-9]*)
|
|
|
|
#MESA_VERSION= 3.4.2
|
|
|
|
|
2002-08-25 20:38:05 +02:00
|
|
|
# Check if we got Mesa distributed with XFree86 4.x.
|
2002-11-18 08:49:24 +01:00
|
|
|
.if exists(${X11BASE}/include/GL/glx.h) && \
|
|
|
|
exists(${X11BASE}/lib/X11/config/X11.tmpl)
|
2002-08-25 20:38:05 +02:00
|
|
|
_IS_BUILTIN_MESA!= ${EGREP} -c BuildGLXLibrary ${X11BASE}/lib/X11/config/X11.tmpl || ${TRUE}
|
|
|
|
.else
|
|
|
|
_IS_BUILTIN_MESA= 0
|
|
|
|
.endif
|
|
|
|
|
2002-11-18 08:49:24 +01:00
|
|
|
.if (${X11PREFIX} == ${X11BASE}) && (${_IS_BUILTIN_MESA} != "0")
|
2002-12-07 03:38:52 +01:00
|
|
|
PKG_SKIP_REASON= "${PKGNAME} is part of your X11 distribution"
|
2000-10-15 13:41:17 +02:00
|
|
|
.endif
|
|
|
|
|
2003-03-09 20:04:52 +01:00
|
|
|
.endif # MESA_REQD
|
|
|
|
|
2000-10-15 13:41:17 +02:00
|
|
|
post-install:
|
2002-08-25 20:38:05 +02:00
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/GL
|
|
|
|
cd ${WRKSRC}/include/GL; for hdr in \
|
|
|
|
gl.h gl_mangle.h glext.h glx.h glx_mangle.h osmesa.h \
|
|
|
|
xmesa.h xmesa_x.h xmesa_xf86.h; \
|
|
|
|
do \
|
|
|
|
${INSTALL_DATA} $${hdr} ${PREFIX}/include/GL; \
|
|
|
|
done
|
2000-10-15 13:41:17 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
2003-03-09 20:04:52 +01:00
|
|
|
|
|
|
|
# must be below bsd.pkg.mk to overwrite values
|
|
|
|
PREFIX= ${LOCALBASE}
|
|
|
|
X11PREFIX= ${LOCALBASE}
|