7657096bbc
values that MesaLib/buildlink3.mk converts into a single _MESA_REQD that is the highest version required. If including the Mesa/buildlink3.mk file, then require the same version of Mesa as required by glut.
32 lines
780 B
Makefile
32 lines
780 B
Makefile
# $NetBSD: Makefile,v 1.29 2004/02/11 02:03:41 jlam 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"
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= yes
|
|
MESA_REQD+= ${MESA_VERSION}
|
|
|
|
INSTLIBS= ${WRKSRC}/src/glut/glx/libglut.la
|
|
|
|
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 "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../graphics/glu/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|