diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-03-10 15:54:59 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-03-10 19:03:04 -0500 |
commit | 679b2fbad1194d0de152683e2a968925d956f56c (patch) | |
tree | 3221e894060f1d6dc3f4596bd040d0161d1b4c43 /x11-misc/vdpauinfo | |
parent | x11-misc/vdpauinfo: drop live 99999 (diff) | |
download | gentoo-679b2fbad1194d0de152683e2a968925d956f56c.tar.gz gentoo-679b2fbad1194d0de152683e2a968925d956f56c.tar.bz2 gentoo-679b2fbad1194d0de152683e2a968925d956f56c.zip |
x11-misc/vdpauinfo: add 1.4_p20220208
Upstream didn't release a vdpauinfo to match libvdpau-1.5 yet,
this adds AV1 support.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-misc/vdpauinfo')
-rw-r--r-- | x11-misc/vdpauinfo/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/vdpauinfo/vdpauinfo-1.4_p20220208.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/x11-misc/vdpauinfo/Manifest b/x11-misc/vdpauinfo/Manifest index 11e8d6993fdd..906b7328e599 100644 --- a/x11-misc/vdpauinfo/Manifest +++ b/x11-misc/vdpauinfo/Manifest @@ -1 +1,2 @@ DIST vdpauinfo-1.4.tar.bz2 11811 BLAKE2B bf0c268505b8eafb9da7c799518296498f2c04bde33443101625c4a80cfde6418428d3969e9ac0f4222a6985b53f3bd4dff688fc03af29de7576f3af3605e07c SHA512 7227205f35d5ad9bc64537d4e47e1924e7efbcd1185420f5f575eadff23f2932484db9c39c377282ed88fa7fd43d436064b10961082ccbf66c49dac72b4129a3 +DIST vdpauinfo-1.4_p20220208.tar.gz 12251 BLAKE2B 14b2a6bb81ac1843d30f0ae9c976971cd3409b50bd6b9adcb59d9132535fcebd3dda7a7f772aabce03bb6877e8140991301a770a58bcc4e82c864c10494773ed SHA512 a87f92a4467f87293fc931a2c5c003763aab8551adcce7fa7281b20f5520a8d2a9df2ff06bb66814cdd059266381a145c851fd7169749e8066e80e4a578cccaa diff --git a/x11-misc/vdpauinfo/vdpauinfo-1.4_p20220208.ebuild b/x11-misc/vdpauinfo/vdpauinfo-1.4_p20220208.ebuild new file mode 100644 index 000000000000..e2b0c83fd786 --- /dev/null +++ b/x11-misc/vdpauinfo/vdpauinfo-1.4_p20220208.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +VDPAUINFO_COMMIT="da66af25aa327d21179d478f3a6d8c03b6c7f574" + +DESCRIPTION="Displays info about your card's VDPAU support" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" +SRC_URI="https://gitlab.freedesktop.org/vdpau/vdpauinfo/-/archive/${VDPAUINFO_COMMIT}/${P}.tar.gz" +S="${WORKDIR}/${PN}-${VDPAUINFO_COMMIT}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=x11-libs/libvdpau-1.5 + x11-libs/libX11" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + eautoreconf +} |