blob: 69cd00404249120ad55689652512bbbfdfbffa79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdrip/dvdrip-0.44.ebuild,v 1.2 2002/07/27 21:30:02 aliz Exp $
inherit perl-module
MY_P=${P/dvdr/Video-DVDR}
# Next three lines are to handle PRE versions
MY_P=${MY_P/_pre/_}
MY_URL="dist"
[ "${P/pre}" != "${P}" ] && MY_URL="dist/pre"
S=${WORKDIR}/${MY_P}
DESCRIPTION="dvd::rip is a graphical frontend for transcode"
SRC_URI="http://www.exit1.org/dvdrip/${MY_URL}/${MY_P}.tar.gz"
HOMEPAGE="http://www.exit1.org/dvdrip/"
SLOT="0"
LICENSE="Artistic | GPL-2"
KEYWORDS="x86"
DEPEND="${DEPEND}
>=media-video/transcode-0.6.0_pre4-r1
media-gfx/imagemagick
gnome-extra/gtkhtml
dev-perl/gtk-perl
dev-perl/Storable
dev-perl/Event"
RDEPEND=">=net-analyzer/fping-2.3"
src_install () {
perl-module_src_install
cp -a ${S}/contrib ${D}/usr/share/doc/${P}
}
|