commit:     1e0fcfc552fd57369344e3d8d45838d63297c406
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 13 07:36:34 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jul 13 07:36:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0fcfc5

media-video/libva-utils: Bump to version 2.8.0

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 media-video/libva-utils/Manifest                 |  1 +
 media-video/libva-utils/libva-utils-2.8.0.ebuild | 62 ++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/media-video/libva-utils/Manifest b/media-video/libva-utils/Manifest
index 7175c0e66b2..ad3162b7f93 100644
--- a/media-video/libva-utils/Manifest
+++ b/media-video/libva-utils/Manifest
@@ -1 +1,2 @@
 DIST libva-utils-2.4.0.tar.bz2 1030271 BLAKE2B 
b57947f9bd63f34b27a403484ae6b66e750f854dd87c8448afb3d361581d83b20a5ffd8d7e22c9dbf5fae6f7ff3fd62d70cc248b29a862066ff10928629e4d11
 SHA512 
c5c674179ed589968fd296a7e33dd57a3476c237d8e15258938b364051d501e156c22b41b98fe59d6bc36805495a934dee602ec9e9bb5350c72aa65d3d300ff6
+DIST libva-utils-2.8.0.tar.bz2 1037112 BLAKE2B 
9168d7d489e1574d970e9e3a270946de522a4063b80c4cafe38cc6917b99deb6394570592d3ed29a0ff7b92f819b9bbc9eb2a8f3b70077625a2714f70ee1959e
 SHA512 
b3412349234ad2923953296674926ee7cb33c43ce17df8942f751789f0208064a4557ca16e1a5878a4e1b35e5bbbd415a9c9f182ffb24e589ac4757e990576b5

diff --git a/media-video/libva-utils/libva-utils-2.8.0.ebuild 
b/media-video/libva-utils/libva-utils-2.8.0.ebuild
new file mode 100644
index 00000000000..b6f4b82a5e3
--- /dev/null
+++ b/media-video/libva-utils/libva-utils-2.8.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = *9999* ]] ; then # Live ebuild
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/intel/libva-utils";
+fi
+inherit autotools
+
+DESCRIPTION="Collection of utilities and tests for VA-API"
+HOMEPAGE="https://01.org/linuxmedia/vaapi";
+if [[ ${PV} != *9999* ]] ; then
+       
SRC_URI="https://github.com/intel/libva-utils/releases/download/${PV}/${P}.tar.bz2";
+       KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+drm test wayland X"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="|| ( drm wayland X )"
+
+BDEPEND="
+       virtual/pkgconfig
+"
+DEPEND="
+       >=x11-libs/libva-2.0.0:=[drm?,wayland?,X?]
+       drm? ( >=x11-libs/libdrm-2.4 )
+       wayland? ( >=dev-libs/wayland-1.0.6 )
+       X? (
+               >=x11-libs/libX11-1.6.2
+               >=x11-libs/libXext-1.3.2
+               >=x11-libs/libXfixes-5.0.1
+       )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( NEWS )
+
+src_prepare() {
+       default
+       sed -e 's/-Werror//' -i test/Makefile.am || die
+       eautoreconf
+}
+
+src_configure() {
+       local myeconfargs=(
+               $(use_enable drm)
+               $(use_enable test tests)
+               $(use_enable wayland)
+               $(use_enable X x11)
+       )
+       econf "${myeconfargs[@]}"
+}
+
+src_install() {
+       [[ ${PV} = *9999* ]] && DOCS+=( CONTRIBUTING.md README.md )
+       default
+}

Reply via email to