Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aribb24/
Date: Sat, 16 Feb 2019 22:30:21
Message-Id: 1550356160.a0fdf81573f199b4ef5aa9178c67e7abc492c719.monsieurp@gentoo
1 commit: a0fdf81573f199b4ef5aa9178c67e7abc492c719
2 Author: Hector Martin <marcan <AT> marcan <DOT> st>
3 AuthorDate: Sun Feb 10 02:47:44 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 22:29:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0fdf815
7
8 media-libs/aribb24-1.0.3-r1: enable multilib, bump to EAPI 7.
9
10 Signed-off-by: Hector Martin <marcan <AT> marcan.st>
11 Package-Manager: Portage-2.3.59, Repoman-2.3.12
12 Closes: https://github.com/gentoo/gentoo/pull/11014
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 media-libs/aribb24/aribb24-1.0.3-r1.ebuild | 31 ++++++++++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/media-libs/aribb24/aribb24-1.0.3-r1.ebuild b/media-libs/aribb24/aribb24-1.0.3-r1.ebuild
19 new file mode 100644
20 index 00000000000..a6cba526607
21 --- /dev/null
22 +++ b/media-libs/aribb24/aribb24-1.0.3-r1.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2019 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit autotools multilib-minimal
30 +
31 +DESCRIPTION="Library for decoding ARIB STD-B24 subtitles"
32 +HOMEPAGE="https://github.com/nkoriyama/aribb24"
33 +SRC_URI="https://github.com/nkoriyama/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="LGPL-3"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
38 +
39 +RDEPEND="media-libs/libpng:0=[${MULTILIB_USEDEP}]"
40 +DEPEND="${RDEPEND}"
41 +BDEPEND="virtual/pkgconfig"
42 +
43 +src_prepare() {
44 + default
45 + eautoreconf
46 +}
47 +
48 +multilib_src_configure() {
49 + ECONF_SOURCE="${S}" econf --disable-static
50 +}
51 +
52 +multilib_src_install_all() {
53 + find "${D}" -name '*.la' -delete || die
54 +}