blob: 196be3b14663d73a1a5a6947e9eef68a9a3d52d3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/thoggen/thoggen-0.4.ebuild,v 1.1 2005/09/06 21:56:48 hanno Exp $
inherit gnome2 eutils
DESCRIPTION="DVD ripper, based on GStreamer and Gtk+"
HOMEPAGE="http://thoggen.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dts"
DEPEND=">=dev-libs/glib-2.6.0
>=x11-libs/gtk+-2.6.0
>=gnome-base/libglade-2.4.0
>=media-libs/gstreamer-0.8.9
>=media-libs/gst-plugins-0.8.8
>=media-plugins/gst-plugins-mpeg2dec-0.8.8
>=media-plugins/gst-plugins-a52dec-0.8.8
>=media-plugins/gst-plugins-dvdread-0.8.8
>=media-plugins/gst-plugins-theora-0.8.8
>=media-plugins/gst-plugins-vorbis-0.8.8
>=media-plugins/gst-plugins-ogg-0.8.8
dts? ( >=media-plugins/gst-plugins-dts-0.8.8 )
>=sys-apps/dbus-0.23
>=sys-apps/hal-0.4
>=media-libs/libdvdread-0.9.4"
pkg_setup() {
if ! built_with_use sys-apps/dbus gtk; then
eerror "Please merge sys-apps/dbus with 'gtk' in USE flags."
die "Need glib support in dbus!"
fi
}
DOCS="AUTHORS ChangeLog NEWS README TODO"
# needed to get around some sandboxing checks
export GST_INSPECT=/bin/true
|