Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vamps/
Date: Sun, 27 Oct 2019 13:41:14
Message-Id: 1572183661.7be43254287e718aaf5d6ed6fe220589dcf23dbd.sping@gentoo
1 commit: 7be43254287e718aaf5d6ed6fe220589dcf23dbd
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 13:40:29 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 13:41:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7be43254
7
8 media-video/vamps: EAPI 7
9
10 Bug: https://bugs.gentoo.org/697264
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-2.3.78, Repoman-2.3.16
13
14 media-video/vamps/vamps-0.99.2-r2.ebuild | 31 +++++++++++++++++++++++++++++++
15 1 file changed, 31 insertions(+)
16
17 diff --git a/media-video/vamps/vamps-0.99.2-r2.ebuild b/media-video/vamps/vamps-0.99.2-r2.ebuild
18 new file mode 100644
19 index 00000000000..7167705a559
20 --- /dev/null
21 +++ b/media-video/vamps/vamps-0.99.2-r2.ebuild
22 @@ -0,0 +1,31 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="Very fast requantisizing tool for backup DVDs"
31 +HOMEPAGE="http://vamps.sourceforge.net/"
32 +SRC_URI="mirror://sourceforge/vamps/${P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~x86"
37 +IUSE=""
38 +
39 +DEPEND=">=media-libs/libdvdread-0.9.4"
40 +RDEPEND="${DEPEND}
41 + >=media-video/dvdauthor-0.6.10"
42 +
43 +PATCHES=(
44 + "${FILESDIR}/${P}-premature-eof.patch"
45 +)
46 +
47 +src_compile() {
48 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
49 +}
50 +
51 +src_install() {
52 + dobin vamps/vamps play_cell/play_cell
53 +}