Addedlibva-intel-driver-2.4.4.

This commit is contained in:
László Valkó 2025-08-13 06:06:22 +02:00
parent 2b33a59775
commit 37576598ea
3 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,3 @@
DIST libva-intel-driver-2.4.4.tar.gz 3936212 BLAKE2B b4b212285b35deb5cb3311a8d5cb39aa226442ed2f94bb043749eaef28b925eee3819d4ea4900a2ad5bfc98dcc9403af40cca7d77e7dfff531337d1d575587eb SHA512 a43c4117fc8a73e1b2f64aad7150dfa9d349b6f835a30db54bed842e249bd9525aaf27cd3a6e9c3570971a14917ab5d72ae960de5347e04034c426f52dd5599a
EBUILD libva-intel-driver-2.4.4.ebuild 1289 BLAKE2B ed29452b25625de0bce328868a7bd52bf6141c79374488f1aade9345c88284d6f07130d32a1b1bd256b44c89d795e8f10c9af7f8781a94ca77663f03a9459069 SHA512 223b772d2cb1754c4256240f46e1d1c5a6971cef92a9a4b979abb33ce1c84665eb1d1fb0531250e91bd1a92111b88613116559cf4caf79748d0d43885dccccf8
MISC metadata.xml 504 BLAKE2B 68a473112d0dce0543a3c1a5c4b9f2caa449b8e66dbdb317b7e49d06bc5c050a656190d4478e250f461be6c06e7e63e795388b1804ba0e9365fcc8d4564163d9 SHA512 46484c44a87121d668058e702c198eee1f608d099a1d7a7bf880066f63e3c41698bfb82a3147a131652c40dfc76f2f9646cf7600c1a4848752370a9dd4d83a3b

View file

@ -0,0 +1,55 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="intel-vaapi-driver"
if [[ ${PV} = *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/irql-notlessorequal/intel-vaapi-driver"
fi
inherit meson-multilib
DESCRIPTION="HW video decode support for Intel integrated graphics"
HOMEPAGE="https://github.com/intel/intel-vaapi-driver"
if [[ ${PV} != *9999* ]] ; then
SRC_URI="https://github.com/irql-notlessorequal/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
fi
LICENSE="MIT"
SLOT="0"
IUSE="hybrid wayland X"
RESTRICT="test" # No tests
RDEPEND="
>=x11-libs/libdrm-2.4.52[video_cards_intel,${MULTILIB_USEDEP}]
>=media-libs/libva-2.4.0:=[X?,wayland?,${MULTILIB_USEDEP}]
hybrid? (
>=media-libs/intel-hybrid-codec-driver-2.0.0[X?,wayland?]
)
wayland? (
>=dev-libs/wayland-1.11[${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
)
"
DEPEND="${RDEPEND}"
BDEPEND="
wayland? (
dev-util/wayland-scanner
)
virtual/pkgconfig
"
multilib_src_configure() {
local emesonargs=(
-Denable_hybrid_codec=$(usex hybrid true false)
-Dwith_wayland=$(usex wayland)
-Dwith_x11=$(usex X)
)
meson_src_configure
}

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>vaapi@gentoo.org</email>
<name>VA-API Project</name>
</maintainer>
<use>
<flag name="hybrid">Enable support for hybrid vaapi hardware acceleration on Intel Haswell and newer architectures</flag>
</use>
<upstream>
<remote-id type="github">irql-notlessorequal/intel-vaapi-driver</remote-id>
</upstream>
</pkgmetadata>