6c6a9f6a0e
used by the library itself, the version which comes with X11 doesn't do it, and it fixes some cases where GL is loaded dynamically bump PKGREVISION
32 lines
882 B
Makefile
32 lines
882 B
Makefile
# $NetBSD: Makefile,v 1.46 2006/03/02 20:19:31 drochner Exp $
|
|
|
|
PKGNAME= MesaLib-${MESA_VERSION}
|
|
PKGREVISION= 1
|
|
COMMENT= Graphics library similar to SGI's OpenGL
|
|
|
|
.include "../../graphics/Mesa/Makefile.common"
|
|
|
|
INSTLIBS= ${WRKSRC}/src/mesa/libGL.la \
|
|
${WRKSRC}/src/glw/libGLw.la \
|
|
${WRKSRC}/src/mesa/libOSMesa.la
|
|
|
|
# The sparc asm included with Mesa does not build on sparc64
|
|
.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "sparc64"
|
|
CONFIGURE_ARGS+= --disable-sparc
|
|
.endif
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${RM} -fr src/glu src/glut progs
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/GL
|
|
cd ${WRKSRC}/include/GL; for hdr in \
|
|
gl.h gl_mangle.h glext.h glx.h glxext.h glx_mangle.h \
|
|
osmesa.h xmesa.h xmesa_x.h xmesa_xf86.h; \
|
|
do \
|
|
${INSTALL_DATA} $${hdr} ${PREFIX}/include/GL; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|