summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-11-10 13:03:48 -0500
committerAaron Bauman <bman@gentoo.org>2019-11-10 13:03:48 -0500
commitadc11d5becf881c314602d6bda593961476c236d (patch)
tree323a8f73d185b1770dd2743b3ab34eafc0f93239
parentmedia-video/cpvts: ALLARCHES EAPI bump (diff)
downloadgentoo-adc11d5becf881c314602d6bda593961476c236d.tar.gz
gentoo-adc11d5becf881c314602d6bda593961476c236d.tar.bz2
gentoo-adc11d5becf881c314602d6bda593961476c236d.zip
media-video/cpvts: drop old EAPI
Signed-off-by: Aaron Bauman <bman@gentoo.org>
-rw-r--r--media-video/cpvts/cpvts-1.2.ebuild43
1 files changed, 0 insertions, 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 b28cc1f83109..000000000000
--- 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
-}