commit: adc11d5becf881c314602d6bda593961476c236d
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 10 18:03:48 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Nov 10 18:03:48 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc11d5b
media-video/cpvts: drop old EAPI
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
media-video/cpvts/cpvts-1.2.ebuild | 43 --------------------------------------
1 file changed, 43 deletions(-)
diff --git a/media-video/cpvts/cpvts-1.2.ebuild
b/media-video/cpvts/cpvts-1.2.ebuild
deleted file mode 100644
index b28cc1f8310..00000000000
--- a/media-video/cpvts/cpvts-1.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-IUSE=""
-
-MY_S="${WORKDIR}/${PN}"
-
-DESCRIPTION="raw copy title sets from a DVD to your harddisc"
-SRC_URI="http://www.lallafa.de/bp/files/${P}.tgz"
-HOMEPAGE="http://www.lallafa.de/bp/cpvts.html"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-
-DEPEND="media-libs/libdvdread"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-dvdread.patch"
-}
-
-echodo() {
- echo "$@"
- "$@" || die "failed"
-}
-
-src_compile () {
- cd ${MY_S} || die
-
- echodo $(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,-rpath,/usr/lib -o cpvts \
- cpvts.c -lm -ldvdread
-}
-
-src_install () {
- dobin ${MY_S}/${PN} || die
-}