pkgsrc/graphics/glut/Makefile
adam b5468d064f 6.4.2 February 2, 2006
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)
2006-02-09 12:27:42 +00:00

30 lines
784 B
Makefile

# $NetBSD: Makefile,v 1.43 2006/02/09 12:27:42 adam Exp $
PKGNAME= ${DISTNAME:S/MesaLib/glut/}
COMMENT= GLUT Graphics library similar to SGI's OpenGL
CONFLICTS+= Mesa-glx-[0-9]*
CONFLICTS+= Mesa<3.2.1
.include "../../graphics/Mesa/Makefile.common"
BUILDLINK_DEPENDS.MesaLib+= MesaLib>=${MESA_VERSION}
BUILDLINK_DEPENDS.glu+= glu>=${MESA_VERSION}
INSTLIBS= ${WRKSRC}/src/glut/glx/libglut.la
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"
pre-build:
cd ${WRKSRC} && ${RM} -fr src/mesa src/glu src/glw progs
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/include/GL
cd ${WRKSRC}/include/GL; for hdr in \
glut.h glutf90.h; \
do \
${INSTALL_DATA} $${hdr} ${PREFIX}/include/GL; \
done
.include "../../mk/bsd.pkg.mk"