multimedia/libva-intel-driver: drop unsupported i915 symlink

i915 OpenGL driver only covers Gen3 but i965 VA-API requires Gen4+.
libva maps crocus/iris OpenGL on Gen4+ to i965 VA-API.

https://gitlab.freedesktop.org/mesa/mesa/-/blob/mesa-22.3.7/include/pci_ids/i915_pci_ids.h
https://github.com/intel/intel-vaapi-driver/blob/2.4.1/src/i965_pciids.h#L27-L33
https://github.com/intel/libva/blob/2.18.0/va/x11/va_x11.c#L56-L57

This reverts commit d0cbba0ef6.

PR:		272109
This commit is contained in:
Jan Beich 2023-06-21 11:40:52 +00:00
parent a7307c3195
commit 9b60e04bce
1 changed files with 2 additions and 5 deletions

View File

@ -1,6 +1,6 @@
PORTNAME= libva-intel-driver
DISTVERSION= 2.4.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= multimedia
MAINTAINER= jbeich@FreeBSD.org
@ -21,7 +21,7 @@ USES= compiler:c11 meson pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= intel
GH_PROJECT= intel-vaapi-driver
PLIST_FILES= lib/dri/i915_drv_video.so lib/dri/i965_drv_video.so
PLIST_FILES= lib/dri/i965_drv_video.so
OPTIONS_DEFINE= HYBRID WAYLAND X11
OPTIONS_DEFAULT=HYBRID WAYLAND X11
@ -36,7 +36,4 @@ WAYLAND_MESON_YES= with_wayland
X11_LIB_DEPENDS= libva-x11.so:multimedia/libva
X11_MESON_YES= with_x11
post-install:
${LN} -sf i965_drv_video.so ${STAGEDIR}${PREFIX}/lib/dri/i915_drv_video.so
.include <bsd.port.mk>