mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
https://github.com/irql-notlessorequal/intel-vaapi-driver/blob/2.4.5/NEWS This bump follows39d2ff612f"Intel archived intel/intel-vaapi-driver at 2.4.1 and advises forking. irql-notlessorequal/intel-vaapi-driver is the active continuation (119 commits ahead, tagged releases, Chromium fixes), so track it at 2.4.5. [...] The fork renamed the wayland meson option, so switch with_wayland to with_wayland_drm in all DISPLAYSERVER branches. Also drop the dead 01.org PKG_SITE." Updated license file and hash due to upstream commit:7343767d87Also switch build system to meson. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
901 B
Makefile
28 lines
901 B
Makefile
################################################################################
|
|
#
|
|
# libva-intel-driver
|
|
#
|
|
################################################################################
|
|
|
|
LIBVA_INTEL_DRIVER_VERSION = 2.4.5
|
|
LIBVA_INTEL_DRIVER_SITE = $(call github,irql-notlessorequal,intel-vaapi-driver,$(LIBVA_INTEL_DRIVER_VERSION))
|
|
LIBVA_INTEL_DRIVER_LICENSE = MIT
|
|
LIBVA_INTEL_DRIVER_LICENSE_FILES = LICENSE
|
|
LIBVA_INTEL_DRIVER_DEPENDENCIES = host-pkgconf libdrm libva
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
LIBVA_INTEL_DRIVER_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXfixes
|
|
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_x11=yes
|
|
else
|
|
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_x11=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WAYLAND),y)
|
|
LIBVA_INTEL_DRIVER_DEPENDENCIES += wayland
|
|
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_wayland_drm=yes
|
|
else
|
|
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_wayland_drm=no
|
|
endif
|
|
|
|
$(eval $(meson-package))
|