Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-online-miners/
Date: Wed, 30 Dec 2015 10:24:37
Message-Id: 1451471055.929421c0ac8b8951fece1bfc83bc7f270bb7b1e5.pacho@gentoo
1 commit: 929421c0ac8b8951fece1bfc83bc7f270bb7b1e5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 30 10:22:28 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 30 10:24:15 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929421c0
7
8 net-misc/gnome-online-miners: libgdata now uses a separate USE flag for switching gnome-online-accounts support and rename gnome USE to crypto (#566324)
9
10 Package-Manager: portage-2.2.26
11
12 .../gnome-online-miners-3.14.3-r2.ebuild | 42 ++++++++++++++++++++++
13 1 file changed, 42 insertions(+)
14
15 diff --git a/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r2.ebuild b/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r2.ebuild
16 new file mode 100644
17 index 0000000..1822c29
18 --- /dev/null
19 +++ b/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r2.ebuild
20 @@ -0,0 +1,42 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="5"
26 +GCONF_DEBUG="no"
27 +
28 +inherit gnome2
29 +
30 +DESCRIPTION="Crawls through your online content"
31 +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineMiners"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="0"
35 +IUSE="flickr"
36 +KEYWORDS="~amd64 ~x86"
37 +
38 +# libgdata[gnome] needed for goa support
39 +RDEPEND="
40 + >=app-misc/tracker-1:0=
41 + >=dev-libs/glib-2.35.1:2
42 + >=dev-libs/libgdata-0.15.2:0=[crypt,gnome-online-accounts]
43 + >=media-libs/grilo-0.2.6:0.2
44 + >=net-libs/gnome-online-accounts-3.13.3
45 + >=net-libs/libgfbgraph-0.2.2:0.2
46 + >=net-libs/libzapojit-0.0.2
47 + flickr? ( media-plugins/grilo-plugins[flickr] )
48 +"
49 +DEPEND="${RDEPEND}
50 + virtual/pkgconfig
51 +"
52 +
53 +src_configure() {
54 + gnome2_src_configure \
55 + $(use_enable flickr) \
56 + --disable-static \
57 + --enable-facebook \
58 + --enable-google \
59 + --enable-media-server \
60 + --enable-owncloud \
61 + --enable-windows-live
62 +}