diff options
author | Karlson2k (Evgeny Grin) <k2k@narod.ru> | 2021-01-05 14:03:11 +0300 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-11 18:55:41 +0000 |
commit | ef657a6d68e53988900aab73f132a7fb90d96ae0 (patch) | |
tree | 7afa64381b6194f3d8b0fbb042f8fc09a747d005 /media-video/libva-utils/libva-utils-2.10.0.ebuild | |
parent | dev-ml/markup: version bump to 1.0.0 (diff) | |
download | gentoo-ef657a6d68e53988900aab73f132a7fb90d96ae0.tar.gz gentoo-ef657a6d68e53988900aab73f132a7fb90d96ae0.tar.bz2 gentoo-ef657a6d68e53988900aab73f132a7fb90d96ae0.zip |
media-video/libva-utils: version bump, minor improvements
* .ebuild is unified with libva.ebuild.
* Live libva is always required for live libva-utils.
* Ignored last digit in version of libva dependency for non-live
libva-utils as the last digit indicate no API change, only minor
fixes.
Signed-off-by: Karlson2k (Evgeny Grin) <k2k@narod.ru>
Closes: https://github.com/gentoo/gentoo/pull/18949
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video/libva-utils/libva-utils-2.10.0.ebuild')
-rw-r--r-- | media-video/libva-utils/libva-utils-2.10.0.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/media-video/libva-utils/libva-utils-2.10.0.ebuild b/media-video/libva-utils/libva-utils-2.10.0.ebuild new file mode 100644 index 000000000000..71421dd2d08d --- /dev/null +++ b/media-video/libva-utils/libva-utils-2.10.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Collection of utilities and tests for VA-API" +HOMEPAGE="https://01.org/linuxmedia/vaapi" +if [[ ${PV} = *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/intel/libva-utils" +else + # Tarball with pre-built 'configure' not always available, portage use tarballs + # without pre-built 'configure' as they are always avaialbe upstream. + # SRC_URI="https://github.com/intel/libva-utils/releases/download/${PV}/${P}.tar.bz2" + SRC_URI="https://github.com/intel/libva-utils/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~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" + +if [[ ${PV} = *9999 ]] ; then + DEPEND="~x11-libs/libva-${PV}:=[drm?,wayland?,X?]" +else + DEPEND=">=x11-libs/libva-$(ver_cut 1-2).0:=[drm?,wayland?,X?]" +fi + +DEPEND+=" + wayland? ( >=dev-libs/wayland-1.0.6 ) + X? ( >=x11-libs/libX11-1.6.2 ) +" +RDEPEND="${DEPEND}" + +# CONTRIBUTING.md and README.md are avaialbe only in .tar.gz tarballs and in git +DOCS=( NEWS CONTRIBUTING.md README.md ) + +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[@]}" +} |