Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ccextractor/
Date: Sun, 26 Aug 2018 08:51:58
Message-Id: 1535273486.f807f6c4534478a579c5cca5a1494339b7b56df4.asturm@gentoo
1 commit: f807f6c4534478a579c5cca5a1494339b7b56df4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 07:29:04 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 08:51:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f807f6c4
7
8 media-video/ccextractor: Install docs
9
10 Bug: https://bugs.gentoo.org/651524
11 Package-Manager: Portage-2.3.48, Repoman-2.3.10
12
13 media-video/ccextractor/ccextractor-0.85-r2.ebuild | 32 ++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/media-video/ccextractor/ccextractor-0.85-r2.ebuild b/media-video/ccextractor/ccextractor-0.85-r2.ebuild
17 new file mode 100644
18 index 00000000000..1ae06ed2d10
19 --- /dev/null
20 +++ b/media-video/ccextractor/ccextractor-0.85-r2.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit cmake-utils toolchain-funcs
28 +
29 +DESCRIPTION="Extract closed captioning subtitles from video to SRT"
30 +HOMEPAGE="https://www.ccextractor.org/"
31 +SRC_URI="mirror://sourceforge/ccextractor/${PN}-src-nowin.${PV}.zip"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="
39 + media-libs/libpng:0=
40 + sys-libs/zlib:=
41 +"
42 +DEPEND="${RDEPEND}
43 + app-arch/unzip
44 + virtual/pkgconfig"
45 +
46 +S="${WORKDIR}/${PN}/src"
47 +
48 +PATCHES=( "${FILESDIR}/${P}-cmake.patch" )
49 +
50 +src_install() {
51 + cmake-utils_src_install
52 + dodoc ../docs/*.TXT
53 +}