commit:     c9661fcdfe2c18b3e1658fe0aad6ba73dd1a7fc4
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 16:35:34 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 16:37:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9661fcd

media-libs/libva-intel-media-driver: Version bump to 24.2.1

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 media-libs/libva-intel-media-driver/Manifest       |  1 +
 .../libva-intel-media-driver-24.2.1.ebuild         | 57 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/media-libs/libva-intel-media-driver/Manifest 
b/media-libs/libva-intel-media-driver/Manifest
index dc68ff66f58b..a8fdfd4701a3 100644
--- a/media-libs/libva-intel-media-driver/Manifest
+++ b/media-libs/libva-intel-media-driver/Manifest
@@ -2,3 +2,4 @@ DIST intel-media-24.1.3.tar.gz 25817697 BLAKE2B 
683c22c484b5b10ad392e98bb75e8565
 DIST intel-media-24.1.4.tar.gz 25821533 BLAKE2B 
9c9d18f7c5a9b2016daa1df8e208f6ba2670fc353f72faec5f57f82bef69fcc9987cd81b4913e831e19930692631648fe9bc7a364486e51aa165f722af8c2e0b
 SHA512 
ca590c1ffe5c38959717d48fdee893aab5896df45e3e80618cb63fa9cfc502688e68b5cc45d6e20ddd496b546906829852dfdb296f5fe4b1fec396878417fe23
 DIST intel-media-24.1.5.tar.gz 25834293 BLAKE2B 
076731a57c7fbf6776df393c631e8abda7e07679b5babb28a8973b9919ce6522b3bfa92f9a1fcb173714a2c7dedec79a791a8e94d3e1962df072d1b2157692b9
 SHA512 
9c8121345f23153361f6458b638938896c42542c80efb0490847aa04c873a0726199985318ee6691f240def12d4f18e804971040dc1284b0cd46287756bb61ba
 DIST intel-media-24.2.0.tar.gz 25839951 BLAKE2B 
cd9afd10254d6f1aa1eaf86ef4560793fb61299b387205ee94e11909f82f950039b8a069c670156a6da529766c66b97325f14f02dc94fe3f034bebe77b8fa99d
 SHA512 
b47105a8b318a143d598c050970f1f961a7b7686d7b3262f6b162c32cc196a24fe894a09f6bf368729f129b19904f94a53cbc827326a8bb18840e17de1ab8f72
+DIST intel-media-24.2.1.tar.gz 25838267 BLAKE2B 
85a0e8416317c846c28c76a70468ba26f388482a4a4348364564df968db22703da112a1908ba371fa0f626d5771bb61cf28cb7ef824fb8a2f756062d99f8731a
 SHA512 
79bbe7d48b14860f6340d57d5cc85d3e7c6d49ff1b95807ece4db3bcaf9d49b2f08ddabe49d9015e7fdf80241030a792dec7dcae00c393463242b69eac7c46b9

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.2.1.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.2.1.ebuild
new file mode 100644
index 000000000000..91b4623797d9
--- /dev/null
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.2.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib flag-o-matic
+
+if [[ ${PV} == *9999 ]] ; then
+       : ${EGIT_REPO_URI:="https://github.com/intel/media-driver"}
+       if [[ ${PV%9999} != "" ]] ; then
+               : ${EGIT_BRANCH:="release/${PV%.9999}"}
+       fi
+       inherit git-r3
+else
+       MY_PV="${PV%_pre}"
+       
SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${MY_PV}.tar.gz";
+       S="${WORKDIR}/media-driver-intel-media-${MY_PV}"
+       if [[ ${PV} != *_pre* ]] ; then
+               KEYWORDS="~amd64"
+       fi
+fi
+
+DESCRIPTION="Intel Media Driver for VA-API (iHD)"
+HOMEPAGE="https://github.com/intel/media-driver";
+
+LICENSE="MIT BSD redistributable? ( no-source-code )"
+SLOT="0"
+IUSE="+redistributable test X"
+
+RESTRICT="!test? ( test )"
+
+DEPEND=">=media-libs/gmmlib-22.3.18:=[${MULTILIB_USEDEP}]
+       >=media-libs/libva-2.21.0[X?,${MULTILIB_USEDEP}]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-23.3.4-Remove-unwanted-CFLAGS.patch
+       "${FILESDIR}"/${PN}-23.3.4_testing_in_src_test.patch
+)
+
+multilib_src_configure() {
+       # https://github.com/intel/media-driver/issues/356
+       append-cxxflags -D_FILE_OFFSET_BITS=64
+
+       local mycmakeargs=(
+               -DMEDIA_BUILD_FATAL_WARNINGS=OFF
+               -DMEDIA_RUN_TEST_SUITE=$(usex test)
+               -DBUILD_TYPE=Release
+               -DPLATFORM=linux
+               -DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
+               -DENABLE_NONFREE_KERNELS=$(usex redistributable)
+               -DLATEST_CPP_NEEDED=ON # Seems to be the best option for now
+       )
+       local CMAKE_BUILD_TYPE="Release"
+       cmake_src_configure
+}

Reply via email to