freebsd-ports/graphics/mesa-gallium-va/Makefile
Jan Beich 045971139f graphics/mesa-*: unbreak with --auto-features=enabled
meson.build:945:2: ERROR: Dependency "libclc" not found, tried pkgconfig

PR:		270361
2023-03-20 17:16:03 +00:00

58 lines
1.4 KiB
Makefile

PORTNAME= mesa-gallium-va
PORTVERSION= ${MESAVERSION}
CATEGORIES= graphics
COMMENT= Mesa Gallium VAAPI drivers
WWW= https://www.mesa3d.org/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/docs/license.rst
ONLY_FOR_ARCHS= aarch64 amd64 i386 powerpc64 powerpc64le
ONLY_FOR_ARCHS_REASON= used only by AMD/Radeon hardware
LIB_DEPENDS= libva.so:multimedia/libva \
libLLVM-${LLVM_DEFAULT}.so:devel/llvm${LLVM_DEFAULT} \
libzstd.so:archivers/zstd
OPTIONS_DEFINE= X11
OPTIONS_DEFAULT= X11
X11_DESC= Enable X11 support
X11_USES= xorg
X11_USE= xorg=xorgproto,x11,xcb,xdamage,xext,xfixes,xshmfence,xxf86vm,xrandr
.include <bsd.port.options.mk>
.include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common"
MESON_ARGS+= -Ddri-drivers="" \
-Dvideo-codecs="vc1dec,h264dec,h264enc,h265dec,h265enc" \
-Dgallium-drivers="radeonsi,r600" \
-Dvulkan-drivers="" \
-Dgallium-vdpau=disabled \
-Dgallium-omx=disabled \
-Dgallium-xa=disabled \
-Dgallium-opencl=disabled \
-Dgallium-nine=false \
-Dgbm=disabled \
-Dgles1=disabled \
-Dgles2=disabled \
-Dmicrosoft-clc=disabled \
-Dosmesa=false \
-Dglx=disabled \
-Ddri3=enabled
LDFLAGS_i386= -Wl,-znotext
MESON_ARGS+= -Dgallium-va=enabled
.if ${PORT_OPTIONS:MX11}
MESON_ARGS+= -Dplatforms="x11"
.else
MESON_ARGS+= -Dglx=disabled \
-Degl=disabled \
-Dopengl=false \
-Dshared-glapi=disabled
.endif
.include "${MASTERDIR}/Makefile.targets"
.include <bsd.port.post.mk>