b5468d064f
New: - added OSMesaColorClamp() function/feature - added wglGetExtensionStringARB() function Bug fixes: - fixed some problems when building on Windows - GLw header files weren't installed by installmesa script (bug 5396) - GL/glfbdev.h file was missing from tarballs - fixed TNL initialization bug which could lead to crash (bug 5791)
29 lines
712 B
Makefile
29 lines
712 B
Makefile
# $NetBSD: Makefile,v 1.44 2006/02/09 12:27:42 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/MesaLib/glu/}
|
|
COMMENT= GLU polygon tessellation facility for Mesa
|
|
|
|
CONFLICTS+= Mesa-glx-[0-9]*
|
|
CONFLICTS+= Mesa<3.2.1
|
|
|
|
.include "../../graphics/Mesa/Makefile.common"
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
INSTLIBS= ${WRKSRC}/src/glu/sgi/libGLU.la
|
|
|
|
BUILDLINK_DEPENDS.MesaLib+= MesaLib>=${MESA_VERSION}
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${RM} -fr src/mesa src/glut src/glw progs
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/GL
|
|
cd ${WRKSRC}/include/GL; for hdr in \
|
|
glu.h glu_mangle.h; \
|
|
do \
|
|
${INSTALL_DATA} $${hdr} ${PREFIX}/include/GL; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|