Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libXvMC/
Date: Sat, 26 Mar 2022 18:01:59
Message-Id: 1648317707.87954fce3dbce56f5d9a97257bfefd8bbbc4d808.mattst88@gentoo
1 commit: 87954fce3dbce56f5d9a97257bfefd8bbbc4d808
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 26 17:59:46 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 18:01:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87954fce
7
8 x11-libs/libXvMC: Version bump to 1.0.13
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libXvMC/Manifest | 1 +
13 x11-libs/libXvMC/libXvMC-1.0.13.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/x11-libs/libXvMC/Manifest b/x11-libs/libXvMC/Manifest
17 index a83e6a51a86d..ca15782907aa 100644
18 --- a/x11-libs/libXvMC/Manifest
19 +++ b/x11-libs/libXvMC/Manifest
20 @@ -1 +1,2 @@
21 DIST libXvMC-1.0.12.tar.bz2 306581 BLAKE2B 180867489863f45ee2cbeb259ae07cead3cef595652f6c02fcb5ffeadb8c286f4dc6fc8ef4b7df0c30b95ef51d8626798a76b50165689927c3449157fbe1a552 SHA512 62cb9a72b20af3b081d2d555a253b0e2b8b26b31f4fad10bd3e53bbf96e1663b61bd8df2b78b16f18218cd37cce0c9e6809ae16ded226b37a8b199e41b223955
22 +DIST libXvMC-1.0.13.tar.xz 274180 BLAKE2B 51e7a08b0a1c76c9ed3bf53dc9656d7cea836ce7f5c17175b0700f73f2a8c4c0a9a91a6c3bc3b3919c4fbfaecc8e305d344ebf4654662d297735bf53d9a55579 SHA512 c9d0f73884a586efb9ea4f77fc8555f60d940077d7dff8eaa765b86345c8b4e3d80b860f68191d2830c272b9e464c08450fbb51bb64819753a6f4228c71861ac
23
24 diff --git a/x11-libs/libXvMC/libXvMC-1.0.13.ebuild b/x11-libs/libXvMC/libXvMC-1.0.13.ebuild
25 new file mode 100644
26 index 000000000000..26cfe3ebc0fa
27 --- /dev/null
28 +++ b/x11-libs/libXvMC/libXvMC-1.0.13.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +XORG_MULTILIB=yes
36 +XORG_TARBALL_SUFFIX="xz"
37 +inherit xorg-3 meson-multilib
38 +
39 +DESCRIPTION="X.Org XvMC library"
40 +
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
42 +
43 +RDEPEND="
44 + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
45 + >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
46 + >=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}]
47 +"
48 +DEPEND="${RDEPEND}
49 + x11-base/xorg-proto"
50 +
51 +# Override xorg-3's src_prepare
52 +src_prepare() {
53 + default
54 +}
55 +
56 +multilib_src_configure() {
57 + local emesonargs=(
58 + -Ddefault_library=shared
59 + )
60 + meson_src_configure
61 +}