From 2ba8b7f4c872fb56ad28c03e80e1cb1024a2f7f6 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 27 Oct 2019 13:04:53 +0100 Subject: media-video/cpvts: EAPI 7 Bug: https://bugs.gentoo.org/697264 Signed-off-by: Sebastian Pipping Package-Manager: Portage-2.3.78, Repoman-2.3.16 --- media-video/cpvts/cpvts-1.2-r1.ebuild | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 media-video/cpvts/cpvts-1.2-r1.ebuild (limited to 'media-video/cpvts') diff --git a/media-video/cpvts/cpvts-1.2-r1.ebuild b/media-video/cpvts/cpvts-1.2-r1.ebuild new file mode 100644 index 000000000000..0138d6ee6d01 --- /dev/null +++ b/media-video/cpvts/cpvts-1.2-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils toolchain-funcs + +IUSE="" + +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" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-dvdread.patch" +) + +echodo() { + echo "$@" + "$@" || die "failed" +} + +src_compile () { + echodo $(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,-rpath,/usr/lib -o cpvts \ + cpvts.c -lm -ldvdread +} + +src_install () { + dobin ${PN} +} -- cgit v1.2.3-65-gdbad