blob: b24c2a69403b1f6ac98425ac86c3a534a4bf15db (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/undvd/undvd-0.6.0.ebuild,v 1.2 2008/09/15 23:43:23 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="aac css ffmpeg matroska mp4 ogm xvid"
DEPEND="sys-apps/coreutils
app-shells/bash
sys-apps/findutils
sys-apps/gawk
sys-apps/grep
sys-process/procps
sys-apps/sed
sys-devel/bc
sys-apps/util-linux
media-video/lsdvd
media-video/mplayer
css? (
media-libs/libdvdcss
media-video/vobcopy
)
ffmpeg? (
media-video/ffmpeg
)
matroska? (
media-video/mkvtoolnix
)
mp4? (
media-video/mpeg4ip
)
ogm? (
media-sound/ogmtools
)"
RDEPEND="${DEPEND}"
pkg_setup() {
einfo "Checking mplayer for USE flags we need..."
mplayer_flags="encode dvd x264 mp3"
for f in $mplayer_flags; do
if ! built_with_use media-video/mplayer $f; then
missing_flags="$f"
eerror "$f missing"
fi
done
if [ "$missing_flags" ]; then
eerror
eerror "Please re-emerge media-video/mplayer with USE=\"$mplayer_flags\""
die "mplayer missing necessary USE flags"
fi
if use aac; then
if ! built_with_use media-video/mplayer aac; then
eerror
eerror "aac missing. This means you cannot encode to aac."
eerror "Please re-emerge media-video/mplayer with USE=\"aac\""
die "mplayer merged without aac USE flag"
fi
fi
if use xvid; then
if ! built_with_use media-video/mplayer xvid; then
eerror
eerror "xvid missing. This means you cannot encode to xvid."
eerror "Please re-emerge media-video/mplayer with USE=\"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"
}
|