blob: 067105b1167657962cea5f943e65499d7d9d05ab (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit gnome2 python-any-r1
DESCRIPTION="A framework for easy media discovery and browsing"
HOMEPAGE="https://wiki.gnome.org/Projects/Grilo"
LICENSE="LGPL-2.1+"
SLOT="0.3"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="daap dvd examples chromaprint flickr freebox gnome-online-accounts lua subtitles test thetvdb tracker upnp-av vimeo +youtube"
# Bump gom requirement to avoid segfaults
RDEPEND="
>=dev-libs/glib-2.44:2
>=media-libs/grilo-0.3.6:${SLOT}=[network,playlist]
media-libs/libmediaart:2.0
>=dev-libs/gom-0.3.2
dev-libs/gmime:3.0
dev-libs/json-glib
dev-libs/libxml2:2
dev-db/sqlite:3
chromaprint? ( media-plugins/gst-plugins-chromaprint:1.0 )
daap? ( >=net-libs/libdmapsharing-2.9.12:3.0 )
dvd? ( >=dev-libs/totem-pl-parser-3.4.1 )
flickr? ( net-libs/liboauth )
freebox? ( net-dns/avahi )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91:= )
lua? (
>=dev-lang/lua-5.3
app-arch/libarchive
dev-libs/libxml2:2
>=dev-libs/totem-pl-parser-3.4.1 )
subtitles? ( net-libs/libsoup:2.4 )
thetvdb? (
app-arch/libarchive
dev-libs/libxml2 )
tracker? ( >=app-misc/tracker-0.10.5:= )
youtube? (
>=dev-libs/libgdata-0.9.1:=
>=dev-libs/totem-pl-parser-3.4.1 )
upnp-av? (
net-libs/libsoup:2.4
net-libs/dleyna-connector-dbus
net-misc/dleyna-server )
vimeo? (
>=dev-libs/totem-pl-parser-3.4.1 )
"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.5
app-text/yelp-tools
>=dev-util/gdbus-codegen-2.44
>=dev-util/intltool-0.40.0
virtual/pkgconfig
lua? ( dev-util/gperf )
upnp-av? ( test? (
${PYTHON_DEPS}
$(python_gen_any_dep 'dev-python/dbusmock[${PYTHON_USEDEP}]') ) )
"
python_check_deps() {
use upnp-av && use test && has_version "dev-python/dbusmock[${PYTHON_USEDEP}]"
}
pkg_setup() {
use upnp-av && use test && python-any-r1_pkg_setup
}
src_prepare () {
gnome2_src_prepare
sed -e "s:GETTEXT_PACKAGE=grilo-plugins$:GETTEXT_PACKAGE=grilo-plugins-${SLOT}:" \
-i configure.ac configure || die "sed configure.ac configure failed"
}
# FIXME: some unittests required python-dbusmock
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-bookmarks \
--enable-filesystem \
--enable-gravatar \
--enable-jamendo \
--enable-local-metadata \
--enable-magnatune \
--enable-metadata-store \
--enable-podcasts \
--enable-raitv \
--disable-shoutcast \
--enable-tmdb \
$(use_enable chromaprint) \
$(use_enable daap dmap) \
$(use_enable dvd optical-media) \
$(use_enable flickr) \
$(use_enable freebox) \
$(use_enable gnome-online-accounts goa) \
$(use_enable lua lua-factory) \
$(use_enable subtitles opensubtitles) \
$(use_enable thetvdb) \
$(use_enable tracker) \
$(use_enable upnp-av dleyna) \
$(use_enable vimeo) \
$(use_enable youtube)
}
src_install() {
if use examples; then
docinto examples
doins help/examples/*.c
fi
gnome2_src_install \
DOC_MODULE_VERSION=${SLOT%/*} \
HELP_ID="grilo-plugins-${SLOT%/*}" \
HELP_MEDIA=""
# The above doesn't work and collides with 0.2 slot
mv "${ED}"/usr/share/help/C/examples/example-tmdb{,-0.3}.c || die
mv "${ED}"/usr/share/help/C/grilo-plugins/legal{,-0.3}.xml || die
mv "${ED}"/usr/share/help/C/grilo-plugins/grilo-plugins{,-0.3}.xml || die
}
|