Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aribb24/
Date: Sat, 09 Jun 2018 21:15:51
Message-Id: 1528578937.6a5f4dda77e5f1664b059bfab91439c4e6fda57f.mgorny@gentoo
1 commit: 6a5f4dda77e5f1664b059bfab91439c4e6fda57f
2 Author: Hector Martin <marcan <AT> marcan <DOT> st>
3 AuthorDate: Wed May 16 19:01:22 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 9 21:15:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5f4dda
7
8 media-libs/aribb24-1.0.3: new package
9
10 aribb24 is a library for decoding ARIB STD-B24 subtitles.
11
12 Closes: https://bugs.gentoo.org/655910
13 Closes: https://github.com/gentoo/gentoo/pull/8438
14 Package-Manager: Portage-2.3.36, Repoman-2.3.9
15
16 media-libs/aribb24/Manifest | 1 +
17 media-libs/aribb24/aribb24-1.0.3.ebuild | 33 +++++++++++++++++++++++++++++++++
18 media-libs/aribb24/metadata.xml | 12 ++++++++++++
19 3 files changed, 46 insertions(+)
20
21 diff --git a/media-libs/aribb24/Manifest b/media-libs/aribb24/Manifest
22 new file mode 100644
23 index 00000000000..576d48d8925
24 --- /dev/null
25 +++ b/media-libs/aribb24/Manifest
26 @@ -0,0 +1 @@
27 +DIST aribb24-1.0.3.tar.gz 57378 BLAKE2B 72d5c56a214d63e477ed0bb77e5f20e79ff69fe3712623f54f1369b041622aef1853909f3dfc31685b346c62ef36ffe205bf7a8d2c9f0a2996ae378b025228b7 SHA512 622cc0c3928fd6db0b5ab3921f27348c956af20f8c0133ad5d9bf4de3d199077d9f23cc86ae149a9f0d13c7ee5906ec95de3fb8388207160cebd1f0c59078c8f
28
29 diff --git a/media-libs/aribb24/aribb24-1.0.3.ebuild b/media-libs/aribb24/aribb24-1.0.3.ebuild
30 new file mode 100644
31 index 00000000000..6cfd472494c
32 --- /dev/null
33 +++ b/media-libs/aribb24/aribb24-1.0.3.ebuild
34 @@ -0,0 +1,33 @@
35 +# Copyright 1999-2018 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +inherit autotools
41 +
42 +DESCRIPTION="Library for decoding ARIB STD-B24 subtitles"
43 +HOMEPAGE="https://github.com/nkoriyama/aribb24"
44 +SRC_URI="https://github.com/nkoriyama/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="LGPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +
50 +RDEPEND="media-libs/libpng:0="
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig
53 +"
54 +
55 +src_prepare() {
56 + default
57 + eautoreconf
58 +}
59 +
60 +src_configure() {
61 + econf --disable-static
62 +}
63 +
64 +src_install() {
65 + default
66 + find "${D}" -name '*.la' -delete || die
67 +}
68
69 diff --git a/media-libs/aribb24/metadata.xml b/media-libs/aribb24/metadata.xml
70 new file mode 100644
71 index 00000000000..9c153d03a61
72 --- /dev/null
73 +++ b/media-libs/aribb24/metadata.xml
74 @@ -0,0 +1,12 @@
75 +<?xml version="1.0" encoding="UTF-8"?>
76 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
77 +<pkgmetadata>
78 + <maintainer type="person">
79 + <email>marcan@××××××.st</email>
80 + <name>Hector Martin</name>
81 + </maintainer>
82 + <maintainer type="project">
83 + <email>proxy-maint@g.o</email>
84 + <name>Proxy Maintainers</name>
85 + </maintainer>
86 +</pkgmetadata>