blob: 990424cacafa59de7880f75175012df61d65bba6 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit perl-module
DESCRIPTION="A gtk-perl mplayer/mencoder frontend for ripping DVDs"
HOMEPAGE="https://sourceforge.net/projects/acidrip/"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}%20-%20Your%20two-wheeled%20knife/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="encode"
RDEPEND="dev-perl/Gtk2
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
perl-module_src_prepare
}
|