mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
media-libs/libva-intel-driver: Version bump to 2.4.5
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
parent
0694fcd232
commit
fbbc1db83c
@ -1 +1,2 @@
|
||||
DIST libva-intel-driver-2.4.4.tar.gz 3936212 BLAKE2B b4b212285b35deb5cb3311a8d5cb39aa226442ed2f94bb043749eaef28b925eee3819d4ea4900a2ad5bfc98dcc9403af40cca7d77e7dfff531337d1d575587eb SHA512 a43c4117fc8a73e1b2f64aad7150dfa9d349b6f835a30db54bed842e249bd9525aaf27cd3a6e9c3570971a14917ab5d72ae960de5347e04034c426f52dd5599a
|
||||
DIST libva-intel-driver-2.4.5.tar.gz 3946638 BLAKE2B d944a77057b4b5c3492a161c388288cda3eb1e19c85dd7621046cfaf029e4d504072a3c85d1ed011e3fce32a17565b81b161c607c97482dfba6f4b8aa882bde7 SHA512 53995050135afcc0b549b0619e115397353269a1b2b091653f623ebac25def08032ce4ea1c2d6c2974f22e085dc4bc21c5629fc8e4c088bb8d4e14000975961b
|
||||
|
||||
@ -0,0 +1,53 @@
|
||||
# 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/irql-notlessorequal/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="
|
||||
dev-util/wayland-scanner
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
multilib_src_configure() {
|
||||
local emesonargs=(
|
||||
-Denable_hybrid_codec=$(usex hybrid true false)
|
||||
-Dwith_wayland_drm=$(usex wayland)
|
||||
-Dwith_x11=$(usex X)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
@ -46,7 +46,7 @@ BDEPEND="
|
||||
multilib_src_configure() {
|
||||
local emesonargs=(
|
||||
-Denable_hybrid_codec=$(usex hybrid true false)
|
||||
-Dwith_wayland=$(usex wayland)
|
||||
-Dwith_wayland_drm=$(usex wayland)
|
||||
-Dwith_x11=$(usex X)
|
||||
)
|
||||
meson_src_configure
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user