aboutsummaryrefslogtreecommitdiff
path: root/graphics/mesa-gallium-xa
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2020-10-12 08:30:54 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2020-10-12 08:30:54 +0000
commit57ce68a0c0cab56c3d08120e6f55c11a8c248f06 (patch)
tree88e8ad4aa5aa680ec7c0bbc956676c47044a89fc /graphics/mesa-gallium-xa
parent3870ad6c4bb281c7abf1b06de72b9adfd658d96f (diff)
downloadports-57ce68a0c0cab56c3d08120e6f55c11a8c248f06.tar.gz
ports-57ce68a0c0cab56c3d08120e6f55c11a8c248f06.zip
graphics/mesa*: Update to 20.2
Update to 20.2 Move graphics/libxatracker to graphics/mesa-gallium-xa Remove VAAPI and VDPAU options in mesa-libs in favor of two new ports : mesa-gallium-va and mesa-gallium-vdpau Bump needed llvm to llvm10 Change a lot of meson option from false to disabled as it's deprecated. Remove the drm and surfaceless platform from mesa* as it's always enabled now. Add zstd option, used for shader cache. Reviewed by: x11 (zeising@) Differential Revision: https://reviews.freebsd.org/D26682
Notes
Notes: svn path=/head/; revision=552109
Diffstat (limited to 'graphics/mesa-gallium-xa')
-rw-r--r--graphics/mesa-gallium-xa/Makefile27
1 files changed, 13 insertions, 14 deletions
diff --git a/graphics/mesa-gallium-xa/Makefile b/graphics/mesa-gallium-xa/Makefile
index a8f9c981500e..fc2c7d9f9051 100644
--- a/graphics/mesa-gallium-xa/Makefile
+++ b/graphics/mesa-gallium-xa/Makefile
@@ -1,12 +1,11 @@
# Created by: johalun
# $FreeBSD$
-PORTNAME= libxatracker
+PORTNAME= mesa-gallium-xa
PORTVERSION= ${MESAVERSION}
-PORTREVISION= 5
CATEGORIES= graphics
-COMMENT= Mesa XA state tracker
+COMMENT= Mesa Gallium XA state tracker
USES= xorg
USE_XORG= xorgproto
@@ -20,25 +19,25 @@ ONLY_FOR_ARCHS_REASON= Used only by VMWare supported architectures
MESON_ARGS+= -Ddri-drivers="" \
-Dgallium-drivers="svga" \
-Dvulkan-drivers="" \
- -Dgallium-vdpau=false \
+ -Dplatforms="" \
+ -Dgallium-vdpau=disabled \
-Dgallium-omx=disabled \
- -Dgallium-va=false \
+ -Dgallium-va=disabled \
-Dgallium-opencl=disabled \
- -Dgallium-xvmc=false \
+ -Dgallium-xvmc=disabled \
-Dgallium-nine=false \
- -Degl=false \
- -Dgbm=false \
- -Dgles1=false \
- -Dgles2=false \
+ -Degl=disabled \
+ -Dgbm=disabled \
+ -Dgles1=disabled \
+ -Dgles2=disabled \
-Dglx=disabled \
-Dopengl=false \
- -Dshared-glapi=false \
- -Dosmesa=none \
- -Dplatforms=
+ -Dshared-glapi=disabled \
+ -Dosmesa=none
LDFLAGS_i386= -Wl,-znotext
-MESON_ARGS+= -Dgallium-xa=true
+MESON_ARGS+= -Dgallium-xa=enabled
.include "${MASTERDIR}/Makefile.targets"
.include <bsd.port.post.mk>