mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
8832a0fb59
Same issue as on powerpc64.
46 lines
975 B
Makefile
46 lines
975 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libglvnd
|
|
DISTVERSION= 1.3.2
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= GL Vendor-Neutral Dispatch library
|
|
|
|
LICENSE= APACHE20 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
CONFLICTS_INSTALL= mesa-libs # include/GL/gl.h
|
|
|
|
USES= localbase meson pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITLAB= yes
|
|
GL_SITE= https://gitlab.freedesktop.org
|
|
GL_ACCOUNT= glvnd
|
|
GL_COMMIT= da0edd9728d6d33aa0d058037b694ee91a7ecad5
|
|
|
|
OPTIONS_DEFINE= X11
|
|
OPTIONS_DEFAULT=X11
|
|
OPTIONS_SUB= yes
|
|
|
|
X11_USES= xorg
|
|
X11_USE= XORG=x11,xext,xorgproto
|
|
X11_MESON_ENABLED= x11 glx
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH:Mpowerpc64*}
|
|
USES+= compiler:gcc-c++11-lib
|
|
.else
|
|
USES+= compiler:c++11-lib
|
|
.endif
|
|
|
|
# Lots of software expects gl.pc even when it can build with EGL only
|
|
post-install-X11-off:
|
|
${LN} -s opengl.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/gl.pc
|
|
${REINPLACE_CMD} -e '/Cflags:/s/$$/ -DEGL_NO_X11/' \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/egl.pc
|
|
|
|
.include <bsd.port.mk>
|