mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-libs/libva-intel-media-driver: Version bump to 25.1.1
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST intel-media-24.4.4.tar.gz 27696988 BLAKE2B cf13b3d0feb005b204892a62402d2a044661279b419bbc47ac414691a5238ada5dc2d59e848a9d53219163420e6b2d364a563f57e10488325587405e2add8ef3 SHA512 0a34a707082a3d7032b472667640d40761f1c9425e291002d2bd2af42d57d69ec3cf6e835430e731ff6c7eb24b22b1843c0b83812001f4ed203fd55097a2c6dc
|
||||
DIST intel-media-25.1.0.tar.gz 28243498 BLAKE2B 7b0982cf06c13754897c46ca3c54b3d0d0d9c1b8aff6066c148770946f83655185bc02f67d83c762a2843969f6f70b4fae56c6853930ff228059e6ff7484b7bd SHA512 20c0f7952a59ab86a6e6c1281c198961d835380e5d4f17fe2cc1c74a31da426560cc244950e6e91f0b4fb659133e461f5ba539c7000ad26e8032fc2aaf79c416
|
||||
DIST intel-media-25.1.1.tar.gz 28255804 BLAKE2B 960c53a7f9920b782c2c4fa10a37c1de4b51271a37ec3b6eea1a814d842d4725564122e3d1b4b1a28dfa4beda80f13db20fe64831a5cdeeb5c299e754d2576f2 SHA512 dcdbbd5c7e2b5ae93784cc38229aab6bd9a330bcde08e6f7597264d9124a5044086c67e08828dfe81292b233e33148fe9b5426cf2d0003f62b3af6452f07de57
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
# Copyright 1999-2025 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.6.0:=[${MULTILIB_USEDEP}]
|
||||
>=media-libs/libva-2.22.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
|
||||
}
|
||||
Reference in New Issue
Block a user