blob: 23fad449e07aa9e589093801072167fca400b72b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/acidrip/acidrip-0.7.ebuild,v 1.2 2003/03/11 21:11:46 seemant 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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="encode"
DEPEND="dev-lang/perl
dev-perl/gtk-perl
media-video/lsdvd
media-video/mplayer
encode? ( >=media-sound/lame-3.92 )"
src_compile() {
perl-module_src_compile
}
src_install() {
perl-module_src_install
#dobin acidrip
dodoc Documentation/*
}
|