commit:     3720171e9b464542410cfc071bc174d9b32f3b6d
Author:     Denis Reva <denis7774 <AT> gmail <DOT> com>
AuthorDate: Sun Jun 28 08:04:06 2020 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Jul  9 21:15:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3720171e

x11-libs/libva-intel-driver: new version 2.4.1

Closes: https://github.com/gentoo/gentoo/pull/16465
Closes: https://bugs.gentoo.org/707934
Signed-off-by: Denis Reva <denis7774 <AT> gmail.com>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 x11-libs/libva-intel-driver/Manifest               |  1 +
 .../libva-intel-driver-2.4.1.ebuild                | 54 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/x11-libs/libva-intel-driver/Manifest 
b/x11-libs/libva-intel-driver/Manifest
index 6f4bb412de3..709033d2869 100644
--- a/x11-libs/libva-intel-driver/Manifest
+++ b/x11-libs/libva-intel-driver/Manifest
@@ -1,2 +1,3 @@
 DIST intel-vaapi-driver-2.3.0.tar.bz2 2901075 BLAKE2B 
606635c2b4ad05119a3fe1269354e2a27b944c56117360b5c4171b679506f3aa10d48057f1c99957efa1cff3b625a315138ac93e616aa14d30d20d540a3bb6a8
 SHA512 
60f37c09269e6ae07e55ecfc2c046ae7b6321abe71647625310ea7c75627ea875b94ed8e14813a36ec068bbd605c6d447dfa2c3bd692eb7953a58a871064fd5b
 DIST intel-vaapi-driver-2.4.0.pre1.tar.bz2 2888363 BLAKE2B 
fc7861e5d7625ed598feadc3b5649335c4f6bc0cacd66bdc38a58bbe4d95909c27c9b84478abdda687725070fa9fea850b3d86925ae6a7ea821a168e2bb98a13
 SHA512 
f637ca24b34573ae022f24f0352be8a6e2904a703ccfa005fb84da00c54e9e02ff0282e882312b86dd7e2d1a1611fba3eef37909ac66a3c2beb056d8cba6019f
+DIST intel-vaapi-driver-2.4.1.tar.bz2 2889762 BLAKE2B 
25888ac7a1a42233c4b0269bd910c5161f99bf22c932b46e20c8c77ed0404bf99702dd9f11b73bc0fd76a3b012ffa1de6c6133cbd7be880428235de9cfcc6ad8
 SHA512 
1e9dc81ecd0b3640fccd1fb827a0ade0a1e5bbabe375130df159849e47ce98c8e879c65ddaaae11d16e916be76b507be69bc0c813494e37e7fca86b0b897a94f

diff --git a/x11-libs/libva-intel-driver/libva-intel-driver-2.4.1.ebuild 
b/x11-libs/libva-intel-driver/libva-intel-driver-2.4.1.ebuild
new file mode 100644
index 00000000000..07f80f8d2c0
--- /dev/null
+++ b/x11-libs/libva-intel-driver/libva-intel-driver-2.4.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="intel-vaapi-driver"
+if [[ ${PV} = *9999* ]] ; then # Live ebuild
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/intel/intel-vaapi-driver";
+fi
+
+inherit autotools multilib-minimal
+
+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/intel/${MY_PN}/releases/download/${PV}/${MY_PN}-${PV}.tar.bz2";
+       S="${WORKDIR}/${MY_PN}-${PV}"
+       KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="wayland X"
+RESTRICT="test" # No tests
+
+RDEPEND="
+       >=x11-libs/libdrm-2.4.52[video_cards_intel,${MULTILIB_USEDEP}]
+       >=x11-libs/libva-2.4.0:=[X?,wayland?,drm,${MULTILIB_USEDEP}]
+       wayland? (
+               >=dev-libs/wayland-1.11[${MULTILIB_USEDEP}]
+               >=media-libs/mesa-9.1.6[egl,${MULTILIB_USEDEP}]
+       )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+       eapply_user
+       sed -e 's/intel-gen4asm/\0diSaBlEd/g' -i configure.ac || die
+       eautoreconf
+}
+
+multilib_src_configure() {
+       local myconf=(
+               $(use_enable wayland)
+               $(use_enable X x11)
+       )
+       ECONF_SOURCE="${S}" econf "${myconf[@]}"
+}
+
+multilib_src_install_all() {
+       find "${D}" -name "*.la" -delete || die
+}

Reply via email to