blob: 0893027ea70100c4480ae3e3341b678730c6df83 (
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
35
36
37
38
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdrip/dvdrip-0.48.8.ebuild,v 1.1 2003/02/12 22:59:23 mholzer Exp $
IUSE="oggvorbis"
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/${PN}/${MY_URL}/${MY_P}.tar.gz"
HOMEPAGE="http://www.exit1.org/dvdrip/"
SLOT="0"
LICENSE="Artistic GPL-2"
KEYWORDS="~x86"
DEPEND=">=media-video/transcode-0.6.2
media-gfx/imagemagick
gnome? ( gnome-extra/gtkhtml )
cdr? ( >=media-video/vcdimager-0.7.12 )
cdr? ( >=app-cdr/cdrdao-1.1.7 )
cdr? ( app-cdr/cdrtools )
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}
}
|