blob: 6bdc56aa147a3696cce7fa52807f7c727dc9f955 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/grilo-plugins-0.2.9.ebuild,v 1.2 2013/11/30 19:39:28 pacho Exp $
EAPI="5"
GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="A framework for easy media discovery and browsing"
HOMEPAGE="https://live.gnome.org/Grilo"
LICENSE="LGPL-2.1+"
SLOT="0.2"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="daap +dvd flickr gnome-online-accounts tracker upnp-av +vimeo +youtube"
RDEPEND="
>=dev-libs/glib-2.28:2
>=media-libs/grilo-0.2.6:${SLOT}[network]
dev-libs/gmime:2.6
dev-libs/json-glib
dev-libs/libxml2:2
dev-db/sqlite:3
daap? ( >=net-libs/libdmapsharing-2.9.12:3.0 )
dvd? ( >=dev-libs/totem-pl-parser-3.4.1 )
flickr? ( net-libs/liboauth )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.7.1 )
tracker? ( >=app-misc/tracker-0.10.5:= )
youtube? (
>=dev-libs/libgdata-0.9.1
dev-libs/totem-pl-parser )
upnp-av? (
net-libs/gssdp
>=net-libs/gupnp-0.13
>=net-libs/gupnp-av-0.5 )
vimeo? (
dev-libs/libgcrypt
dev-libs/totem-pl-parser )
"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.5
app-text/gnome-doc-utils
>=dev-util/intltool-0.40.0
virtual/pkgconfig
"
src_configure() {
# --enable-debug only changes CFLAGS, useless for us
# Plugins
# shoutcast seems to be broken
gnome2_src_configure \
--disable-static \
--disable-debug \
--disable-uninstalled \
--enable-bliptv \
--enable-apple-trailers \
--enable-bookmarks \
--enable-filesystem \
--enable-gravatar \
--enable-jamendo \
--enable-lastfm-albumart \
--enable-localmetadata \
--enable-magnatune \
--enable-metadata-store \
--enable-podcasts \
--enable-raitv \
--disable-shoutcast \
--enable-tmdb \
$(use_enable daap dmap) \
$(use_enable dvd optical-media) \
$(use_enable flickr) \
$(use_enable gnome-online-accounts goa) \
$(use_enable tracker) \
$(use_enable upnp-av upnp) \
$(use_enable vimeo) \
$(use_enable youtube)
}
|