blob: ec04fc11087cf6c5e55e67802e40b4cc5e777934 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-dvb-daemon/gnome-dvb-daemon-0.2.2.ebuild,v 1.2 2011/08/31 23:18:27 mattst88 Exp $
EAPI="3"
inherit eutils python gnome2 multilib
DESCRIPTION="Setup your DVB devices, record and watch TV shows and browse EPG using GStreamer"
HOMEPAGE="http://live.gnome.org/DVBDaemon"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="nls totem vala"
RDEPEND=">=dev-libs/glib-2.28.5
>=media-libs/gstreamer-0.10.29
>=media-libs/gst-plugins-good-0.10.14
>=media-libs/gst-plugins-bad-0.10.13
>=dev-libs/libgee-0.5
>=dev-db/sqlite-3.4
>=media-libs/gst-rtsp-server-0.10.7
media-plugins/gst-plugins-dvb
>=dev-lang/python-2.5
dev-python/gst-python
>=dev-python/pygobject-2.28.4
>=dev-libs/gobject-introspection-0.10.8
|| ( sys-fs/udev[gudev] sys-fs/udev[extras] )
vala? ( >=dev-lang/vala-0.12 )
totem? ( media-video/totem )"
DEPEND="${RDEPEND}
>=dev-lang/perl-5.8.1
>=dev-util/intltool-0.40.0
>=dev-util/pkgconfig-0.9
nls? ( >=sys-devel/gettext-0.18.1 )
>=sys-devel/libtool-2.2.6"
pkg_setup() {
G2CONF="${G2CONF} \
$(use_enable nls)
$(use_enable totem totem-plugin)"
use totem && G2CONF="${G2CONF} \
--with-totem-plugin-dir=/usr/$(get_libdir)/totem/plugins"
python_set_active_version 2
python_pkg_setup
}
|