51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.56 2007/11/03 22:36:06 rillig Exp $
|
|
|
|
PKGNAME= MesaLib-${MESA_VERSION}
|
|
PKGREVISION= 3
|
|
COMMENT= Graphics library similar to SGI's OpenGL
|
|
|
|
.include "../../graphics/Mesa/Makefile.lib"
|
|
|
|
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"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-[12].*)
|
|
.include "../../devel/pthread-stublib/buildlink3.mk"
|
|
PTHREAD_STUBLIB= "-L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lpthstub"
|
|
.else
|
|
PTHREAD_STUBLIB= # provided by libc
|
|
.endif
|
|
PKGSRC_MAKE_ENV+= PTHREAD_STUBLIB=${PTHREAD_STUBLIB}
|
|
|
|
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS])
|
|
MAKE_ENV+= CROSS_COMPILING=yes
|
|
.endif
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/gen_matypes.awk ${WRKSRC}/src/mesa/x86
|
|
${CP} ${FILESDIR}/gen_matypes.sh ${WRKSRC}/src/mesa/x86
|
|
${CHMOD} a+x ${WRKSRC}/src/mesa/x86/gen_matypes.sh
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${RM} -fr src/glu src/glut progs
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${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} ${DESTDIR}${PREFIX}/include/GL; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|