blob: 9c84506b203ec090bcfc0e8345242ec6a14fc42d (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/undvd/undvd-0.3.0.ebuild,v 1.2 2007/12/14 22:29:04 mr_bones_ Exp $
inherit eutils
DESCRIPTION="Simple dvd ripping command line app"
HOMEPAGE="http://sourceforge.net/projects/undvd/"
SRC_URI="http://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE="xvid"
DEPEND="sys-apps/coreutils
app-shells/bash
sys-apps/findutils
sys-apps/gawk
sys-apps/grep
sys-process/procps
sys-apps/sed
media-video/lsdvd
media-video/mplayer"
RDEPEND="${DEPEND}"
pkg_setup() {
einfo "Checking mplayer for USE flags we need..."
for f in "encode dvd x264 mp3"; do
if ! built_with_use media-video/mplayer $f; then
eerror "$f"
die "mplayer merged without $f USE flag"
fi
done
if use xvid; then
if ! built_with_use media-video/mplayer xvid; then
eerror "xvid missing. This means you cannot encode to xvid."
die "mplayer merged without xvid USE flag"
fi
fi
einfo "everything seems to be in order"
}
src_unpack() {
unpack ${A}
cd "${WORKDIR}"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
}
|