75 lines
2 KiB
Makefile
75 lines
2 KiB
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
|
|
PORTNAME= mesa-libs
|
|
PORTVERSION= ${MESAVERSION}
|
|
CATEGORIES= graphics
|
|
|
|
COMMENT= OpenGL libraries that support GLX and EGL clients
|
|
|
|
CONFLICTS_INSTALL= libglvnd # include/GL/gl.h
|
|
|
|
OPTIONS_GROUP= PLATFORM
|
|
OPTIONS_GROUP_PLATFORM= PLATFORM_X11 PLATFORM_WAYLAND
|
|
PLATFORM_X11_DESC= Enable X11 support for GBM/EGL
|
|
PLATFORM_WAYLAND_DESC= Enable Wayland support for GBM/EGL
|
|
PLATFORM_WAYLAND_IMPLIES= WAYLAND
|
|
|
|
OPTIONS_DEFINE= WAYLAND ZSTD
|
|
OPTIONS_DEFAULT=WAYLAND PLATFORM_X11 PLATFORM_WAYLAND ZSTD
|
|
OPTIONS_SUB= yes
|
|
|
|
WAYLAND_DESC= Enable support for the Wayland platform in EGL
|
|
WAYLAND_BUILD_DEPENDS= wayland-protocols>=1.8:graphics/wayland-protocols
|
|
WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland
|
|
WAYLAND_IMPLIES= PLATFORM_WAYLAND
|
|
|
|
ZSTD_DESC= Use ZSTD for shader cache
|
|
ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd
|
|
ZSTD_MESON_ENABLED= zstd
|
|
|
|
.include <bsd.port.options.mk>
|
|
.include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common"
|
|
|
|
MESON_ARGS+= -Dgallium-drivers="" \
|
|
-Dgallium-vdpau=disabled \
|
|
-Dgallium-xvmc=disabled \
|
|
-Dgallium-omx=disabled \
|
|
-Dgallium-va=disabled \
|
|
-Dgallium-xa=disabled \
|
|
-Dgallium-nine=false \
|
|
-Dgallium-clover=disabled \
|
|
-Dosmesa=none \
|
|
-Dtools="" \
|
|
-Degl=enabled \
|
|
-Dgbm=enabled \
|
|
-Dvulkan-drivers="" \
|
|
-Dprefer-iris=true
|
|
# Building EGL and GBM requires a dri driver so add swrast
|
|
MESON_ARGS+= -Ddri-drivers="swrast"
|
|
|
|
.if ${PORT_OPTIONS:MPLATFORM_X11}
|
|
MESA_PLATFORMS+= x11
|
|
USE_XORG+= xorgproto x11 xcb xdamage xext \
|
|
xfixes xshmfence xxf86vm xrandr
|
|
PLIST_SUB+= GLX=""
|
|
.else
|
|
MESON_ARGS+= -Dglx=disabled
|
|
PLIST_SUB+= GLX="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPLATFORM_WAYLAND} && ${PORT_OPTIONS:MWAYLAND}
|
|
MESA_PLATFORMS+= wayland
|
|
.endif
|
|
|
|
MESON_ARGS+= -Dplatforms="${MESA_PLATFORMS:ts,:tl}"
|
|
|
|
.if ${ARCH} == "i386"
|
|
# PR230239 Fix the build for i386 when WITH_LLD_IS_LD is set
|
|
LDFLAGS+=-Wl,-z,notext
|
|
.elif ${ARCH} == "powerpc"
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
.include "${MASTERDIR}/Makefile.targets"
|
|
|
|
.include <bsd.port.post.mk>
|