blob: 9a732cf3538723a5a182fbb7d37791a15fcf9aef (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdrip/dvdrip-0.52.3-r1.ebuild,v 1.3 2005/05/25 14:45:53 mcummings Exp $
inherit perl-module eutils
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"
HOMEPAGE="http://www.exit1.org/dvdrip/"
SRC_URI="http://www.exit1.org/${PN}/${MY_URL}/${MY_P}.tar.gz"
LICENSE="Artistic GPL-2"
SLOT="0"
# ~ppc needs subtitleripper
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="cdr gnome xvid rar mplayer ogg fping subtitles"
DEPEND="gnome? ( gnome-extra/libgtkhtml )
cdr? ( >=media-video/vcdimager-0.7.19
>=app-cdr/cdrdao-1.1.7
virtual/cdrtools
>=media-video/mjpegtools-1.6.0 )
xvid? ( media-video/xvid4conf )
rar? ( app-arch/rar )
mplayer? ( media-video/mplayer )
>=media-video/transcode-0.6.14
>=media-gfx/imagemagick-5.5.3
dev-perl/gtk-perl
perl-core/Storable
dev-perl/Event"
RDEPEND="${DEPEND}
fping? ( >=net-analyzer/fping-2.3 )
ogg? ( >=media-sound/ogmtools-1.000 )
subtitles? ( media-video/subtitleripper )
sys-apps/eject
dev-perl/libintl-perl"
pkg_setup() {
built_with_use transcode dvdread || die "transcode needs dvdread support builtin. Please re-emerge transcode with the dvdread USE flag."
}
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's:cc :$(CC) :' src/Makefile || die "sed failed"
}
src_install() {
perl-module_src_install
}
pkg_postinst() {
einfo "If you want to use the cluster-mode, you need to SUID fping"
einfo "chmod u+s /usr/sbin/fping"
einfo
einfo "for Perl 5.8.x you have to set PERLIO to read TOC properly"
einfo "for bash: export PERLIO=stdio"
einfo "for csh: setenv PERLIO stdio"
einfo "into your /.${shell}rc"
}
|