Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vobcopy/
Date: Wed, 30 May 2018 00:27:47
Message-Id: 1527640053.4990dd981ca47d3f31a8421566cba331a2403c30.bman@gentoo
1 commit: 4990dd981ca47d3f31a8421566cba331a2403c30
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 29 21:39:01 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed May 30 00:27:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4990dd98
7
8 media-video/vobcopy: bump EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 media-video/vobcopy/vobcopy-1.2.0.ebuild | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/media-video/vobcopy/vobcopy-1.2.0.ebuild b/media-video/vobcopy/vobcopy-1.2.0.ebuild
16 index fe6ab57ce9e..923af7af4d6 100644
17 --- a/media-video/vobcopy/vobcopy-1.2.0.ebuild
18 +++ b/media-video/vobcopy/vobcopy-1.2.0.ebuild
19 @@ -1,10 +1,9 @@
20 -# Copyright 1999-2011 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=2
25 -inherit toolchain-funcs
26 +EAPI=6
27
28 -IUSE=""
29 +inherit toolchain-funcs
30
31 DESCRIPTION="copies DVD .vob files to harddisk, decrypting them on the way"
32 HOMEPAGE="http://lpn.rnbhq.org/"
33 @@ -13,8 +12,10 @@ SRC_URI="http://lpn.rnbhq.org/download/${P}.tar.bz2"
34 LICENSE="GPL-2"
35 SLOT="0"
36 KEYWORDS="amd64 ppc ppc64 sparc x86"
37 +IUSE=""
38
39 DEPEND=">=media-libs/libdvdread-0.9.4"
40 +RDEPEND=""
41
42 src_configure() {
43 tc-export CC
44 @@ -22,8 +23,7 @@ src_configure() {
45 }
46
47 src_install() {
48 - dobin vobcopy || die "dobin failed"
49 - doman vobcopy.1 || die "doman failed"
50 - dodoc Changelog README Release-Notes TODO alternative_programs.txt \
51 - || die "dodoc failed"
52 + dobin vobcopy
53 + doman vobcopy.1
54 + dodoc Changelog README Release-Notes TODO alternative_programs.txt
55 }