Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-documents/
Date: Wed, 30 Dec 2015 10:24:36
Message-Id: 1451471050.ec9ee4992d6efa50cd86e62bfb4d7d4b3d9806ab.pacho@gentoo
1 commit: ec9ee4992d6efa50cd86e62bfb4d7d4b3d9806ab
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 30 10:20:52 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 30 10:24:10 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9ee499
7
8 gnome-extra/gnome-documents: 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-documents-3.18.2-r1.ebuild | 55 ++++++++++++++++++++++
13 1 file changed, 55 insertions(+)
14
15 diff --git a/gnome-extra/gnome-documents/gnome-documents-3.18.2-r1.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.18.2-r1.ebuild
16 new file mode 100644
17 index 0000000..346be52
18 --- /dev/null
19 +++ b/gnome-extra/gnome-documents/gnome-documents-3.18.2-r1.ebuild
20 @@ -0,0 +1,55 @@
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="A document manager application for GNOME"
31 +HOMEPAGE="https://wiki.gnome.org/Apps/Documents"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="0"
35 +IUSE=""
36 +KEYWORDS="~amd64 ~x86"
37 +
38 +# Need gdk-pixbuf-2.25 for gdk_pixbuf_get_pixels_with_length
39 +COMMON_DEPEND="
40 + >=app-misc/tracker-1:=
41 + >=app-text/evince-3.13.3[introspection]
42 + dev-libs/gjs
43 + >=dev-libs/glib-2.39.3:2
44 + >=dev-libs/gobject-introspection-1.31.6:=
45 + >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection]
46 + gnome-base/gnome-desktop:3=
47 + >=media-libs/clutter-1.10:1.0
48 + >=media-libs/clutter-gtk-1.3.2:1.0[introspection]
49 + >=net-libs/gnome-online-accounts-3.2.0
50 + >=net-libs/libsoup-2.41.3:2.4
51 + >=net-libs/libzapojit-0.0.2
52 + >=net-libs/webkit-gtk-2.6:4
53 + >=x11-libs/gdk-pixbuf-2.25:2[introspection]
54 + >=x11-libs/gtk+-3.15.5:3[introspection]
55 + x11-libs/pango[introspection]
56 +"
57 +RDEPEND="${COMMON_DEPEND}
58 + media-libs/clutter[introspection]
59 + net-misc/gnome-online-miners
60 + sys-apps/dbus
61 + x11-themes/gnome-icon-theme-symbolic
62 +"
63 +DEPEND="${COMMON_DEPEND}
64 + dev-libs/libxslt
65 + >=dev-util/intltool-0.50.1
66 + dev-util/itstool
67 + virtual/pkgconfig
68 +"
69 +# eautoreconf requires yelp-tools
70 +
71 +src_prepare() {
72 + # Prevent sandbox violation, https://bugzilla.gnome.org/show_bug.cgi?id=758097
73 + sed -i -e '/-rm -f $(appdir)\/org.gnome.Books.data.gresource/d' data/Makefile.{am,in} || die
74 + gnome2_src_prepare
75 +}