blob: 2401d76c7de687e29897f6e3894315735d695a5a (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.14.ebuild,v 1.1 2004/10/18 21:27:18 lu_zero Exp $
inherit perl-module
DESCRIPTION="A gtk-perl mplayer/mencoder frontend for ripping DVDs"
HOMEPAGE="http://acidrip.thirtythreeandathird.net"
SRC_URI="mirror://sourceforge/acidrip/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86 ~amd64"
IUSE="encode"
DEPEND="dev-lang/perl
dev-perl/gtk2-perl
dev-perl/glade-perl
>=media-video/lsdvd-0.10
media-video/mplayer
encode? ( >=media-sound/lame-3.92 )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's:system "mplayer 2:system "which mplayer 2:' ${S}/Makefile.PL
}
src_compile() {
perl-module_src_compile
}
src_install() {
perl-module_src_install
#dobin acidrip
dodoc INSTALL CHANGELOG COPYING TODO
dohtml INSTALL.html
}
|