Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/videotrans/
Date: Mon, 29 Nov 2021 19:01:06
Message-Id: 1638212378.f1ed4200a86a180e683b9446d92920bcde0a2c27.jsmolic@gentoo
1 commit: f1ed4200a86a180e683b9446d92920bcde0a2c27
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 29 18:59:38 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 18:59:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ed4200
7
8 media-video/videotrans: Port to EAPI 8
9
10 Closes: https://bugs.gentoo.org/819423
11 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
12
13 media-video/videotrans/videotrans-1.6.1-r2.ebuild | 11 ++++++-----
14 1 file changed, 6 insertions(+), 5 deletions(-)
15
16 diff --git a/media-video/videotrans/videotrans-1.6.1-r2.ebuild b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
17 index ea33b07bb2a6..93db7f9ec91e 100644
18 --- a/media-video/videotrans/videotrans-1.6.1-r2.ebuild
19 +++ b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
20 @@ -1,8 +1,7 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 -inherit eutils
27 +EAPI=8
28
29 DESCRIPTION="A package to convert movies to DVD format and to build DVDs with"
30 HOMEPAGE="http://videotrans.sourceforge.net/"
31 @@ -10,6 +9,7 @@ SRC_URI="mirror://sourceforge/videotrans/${P}.tar.bz2"
32
33 LICENSE="BSD"
34 SLOT="0"
35 +KEYWORDS="~amd64"
36
37 DEPEND="
38 media-video/mplayer
39 @@ -25,10 +25,11 @@ RDEPEND="${DEPEND}
40 sys-devel/bc
41 "
42
43 -DOCS="aspects.txt CHANGES THANKS TODO"
44 +DOCS=( aspects.txt CHANGES THANKS TODO )
45
46 src_prepare() {
47 + default
48 # fixing LDFLAGS usage
49 - sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in
50 + sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in || die
51
52 }