blob: b3fabcd618a0d288c62e85bfa8fc0304bdf2e684 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit perl-app
DESCRIPTION="A gtk-perl mplayer/mencoder frontend for ripping DVDs"
HOMEPAGE="http://sourceforge.net/acidrip/"
SRC_URI="mirror://sourceforge/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="encode"
RDEPEND="dev-lang/perl:=
dev-perl/gtk2-perl
media-video/lsdvd
media-video/mplayer[encode]
encode? ( >=media-sound/lame-3.92 )"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-mplayer.patch #168012
epatch "${FILESDIR}/${P}-makefile.patch" #299173
}
|