brl
5789f1b122
git-subtree-dir: meta-intel git-subtree-split: c811c0b33862a2f911fe2afdd2054958b1f28e40
36 lines
1.2 KiB
BlitzBasic
36 lines
1.2 KiB
BlitzBasic
SUMMARY = "VA driver for Intel G45 & HD Graphics family"
|
|
DESCRIPTION = "libva-driver-intel is the VA-API implementation \
|
|
for Intel G45 chipsets and Intel HD Graphics for Intel Core \
|
|
processor family."
|
|
|
|
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/vaapi"
|
|
BUGTRACKER = "https://bugs.freedesktop.org"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
DEPENDS = "libva libdrm"
|
|
|
|
SRC_URI = "git://github.com/01org/intel-vaapi-driver.git;branch=v1.8-branch"
|
|
# 1.8.3 release tag
|
|
SRCREV = "f1d9ceddc0e84ed8d44dd59017b0e19b75dd5dcd"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}"
|
|
PACKAGECONFIG[x11] = "--enable-x11,--disable-x11"
|
|
PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland wayland-native virtual/egl"
|
|
|
|
FILES_${PN} += "${libdir}/dri/*.so"
|
|
FILES_${PN}-dev += "${libdir}/dri/*.la"
|
|
FILES_${PN}-dbg += "${libdir}/dri/.debug"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.\d+)*)"
|