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/super_demux/
Date: Tue, 17 Jul 2018 21:01:09
Message-Id: 1531861241.5af465417e07f95953f913f4e9028e23d4b60961.asturm@gentoo
1 commit: 5af465417e07f95953f913f4e9028e23d4b60961
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 16 18:09:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 17 21:00:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af46541
7
8 media-video/super_demux: EAPI7, improve ebuild
9
10 Closes: https://github.com/gentoo/gentoo/pull/9255
11
12 media-video/super_demux/super_demux-0.3-r1.ebuild | 26 +++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/media-video/super_demux/super_demux-0.3-r1.ebuild b/media-video/super_demux/super_demux-0.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..5e64d973faf
18 --- /dev/null
19 +++ b/media-video/super_demux/super_demux-0.3-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit toolchain-funcs flag-o-matic
27 +
28 +DESCRIPTION="DVB transport stream TS to ES demultiplexer"
29 +HOMEPAGE="http://panteltje.com/panteltje/dvd/"
30 +SRC_URI="http://panteltje.com/panteltje/dvd/${P}.tgz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +
36 +PATCHES=( "${FILESDIR}/${P}.diff" )
37 +
38 +src_compile() {
39 + append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
40 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
41 +}
42 +
43 +src_install() {
44 + dobin super_demux
45 + dodoc CHANGES README
46 +}