blob: 07c6480d2a905105610059eedb9e720ef67782c8 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rygel/rygel-0.14.3.ebuild,v 1.1 2012/08/24 17:21:20 eva Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="Rygel is an open source UPnP/DLNA MediaServer"
HOMEPAGE="http://live.gnome.org/Rygel"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X nls +sqlite tracker test transcode"
# The deps for tracker? and transcode? are just the earliest available
# version at the time of writing this ebuild
RDEPEND="
>=dev-libs/glib-2.26:2
>=dev-libs/libgee-0.5.2:0
>=media-libs/gupnp-dlna-0.5
>=media-libs/gstreamer-0.10.35
>=media-libs/gst-plugins-base-0.10.35
>=net-libs/gssdp-0.11
>=net-libs/gupnp-0.17.1
>=net-libs/gupnp-av-0.9
>=net-libs/libsoup-2.34:2.4
>=sys-libs/e2fsprogs-libs-1.41.3
x11-misc/shared-mime-info
sqlite? (
>=dev-db/sqlite-3.5:3
dev-libs/libunistring
)
tracker? ( >=app-misc/tracker-0.8.17 )
transcode? (
>=media-libs/gst-plugins-bad-0.10.14
>=media-plugins/gst-plugins-twolame-0.10.12
>=media-plugins/gst-plugins-ffmpeg-0.10.5
)
X? ( >=x11-libs/gtk+-2.90.3:3 )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.40
"
# Maintainer only
# >=dev-lang/vala-0.14.1
# >=net-libs/gupnp-vala-0.10.2
# dev-libs/libxslt
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="${G2CONF}
--enable-gst-launch-plugin
--enable-mediathek-plugin
$(use_enable nls)
$(use_enable sqlite media-export-plugin)
$(use_enable test tests)
$(use_enable tracker tracker-plugin)
$(use_with X ui)"
}
src_install() {
gnome2_src_install
# Autostart file is not placed correctly, bug #402745
insinto /etc/xdg/autostart
doins "${D}"/usr/share/applications/rygel.desktop
rm "${D}"/usr/share/applications/rygel.desktop
}
|