e2afa97f51
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
34 lines
925 B
Makefile
34 lines
925 B
Makefile
# $NetBSD: Makefile,v 1.12 2002/08/25 18:39:08 jlam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/MesaLib/glut/}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
DISTFILES+= ${DISTNAME:S/MesaLib/MesaDemos/}${EXTRACT_SUFX}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/Lib//}
|
|
MAINTAINER= rh@netbsd.org
|
|
COMMENT= GLUT Graphics library similar to SGI's OpenGL
|
|
|
|
CONFLICTS+= Mesa-glx-[0-9]*
|
|
CONFLICTS+= Mesa<3.2.1
|
|
|
|
.include "../Mesa/Makefile.common"
|
|
|
|
USE_BUILDLINK2= yes
|
|
USE_X11BASE= yes
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/src-glut && ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} ${ALL_TARGET}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/src-glut && ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} ${INSTALL_TARGET}
|
|
|
|
post-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"
|