Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-todo/files/, gnome-extra/gnome-todo/
Date: Sun, 30 Oct 2016 10:38:33
Message-Id: 1473204811.1ac4afdb609f9016c7401f6d86b549c181206a51.eva@gentoo
1 commit: 1ac4afdb609f9016c7401f6d86b549c181206a51
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 23:33:31 2016 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 23:33:31 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=1ac4afdb
7
8 gnome-extra/gnome-todo: 3.18.1 → 3.20.2
9
10 .../files/gnome-todo-3.20.2-link-failure.patch | 27 ++++++++++++++
11 gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild | 42 ++++++++++++++++++++++
12 2 files changed, 69 insertions(+)
13
14 diff --git a/gnome-extra/gnome-todo/files/gnome-todo-3.20.2-link-failure.patch b/gnome-extra/gnome-todo/files/gnome-todo-3.20.2-link-failure.patch
15 new file mode 100644
16 index 0000000..c65b8bc
17 --- /dev/null
18 +++ b/gnome-extra/gnome-todo/files/gnome-todo-3.20.2-link-failure.patch
19 @@ -0,0 +1,27 @@
20 +From 5862bb70240b1f311e0ace880e3fcf0af1c8c5f8 Mon Sep 17 00:00:00 2001
21 +From: Gilles Dartiguelongue <eva@g.o>
22 +Date: Wed, 7 Sep 2016 01:31:15 +0200
23 +Subject: [PATCH] Fix link failure with missing e_source_get_displayname symbol
24 +
25 +---
26 + src/Makefile.am | 4 ++--
27 + 1 file changed, 2 insertions(+), 2 deletions(-)
28 +
29 +diff --git a/src/Makefile.am b/src/Makefile.am
30 +index 428226d..1032d29 100644
31 +--- a/src/Makefile.am
32 ++++ b/src/Makefile.am
33 +@@ -98,8 +98,8 @@ gnome_todo_LDFLAGS = \
34 + $(GNOME_TODO_WARN_LDFLAGS)
35 +
36 + gnome_todo_LDADD = \
37 +- $(GNOME_TODO_LIBS) \
38 +- $(top_builddir)/plugins/eds/libeds.a
39 ++ $(top_builddir)/plugins/eds/libeds.a \
40 ++ $(GNOME_TODO_LIBS)
41 +
42 + gnome_todo_DEPENDENCIES = \
43 + $(top_builddir)/plugins/eds/libeds.a
44 +--
45 +2.9.3
46 +
47
48 diff --git a/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild b/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild
49 new file mode 100644
50 index 0000000..a8938ec
51 --- /dev/null
52 +++ b/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild
53 @@ -0,0 +1,42 @@
54 +# Copyright 1999-2016 Gentoo Foundation
55 +# Distributed under the terms of the GNU General Public License v2
56 +# $Id$
57 +
58 +EAPI=6
59 +
60 +inherit autotools gnome2
61 +
62 +DESCRIPTION="Personnal task manager"
63 +HOMEPAGE="https://wiki.gnome.org/Apps/Todo"
64 +
65 +LICENSE="GPL-3+"
66 +SLOT="0"
67 +KEYWORDS="~amd64"
68 +IUSE=""
69 +
70 +RDEPEND="
71 + >=dev-libs/glib-2.43.4:2
72 + >=dev-libs/gobject-introspection-1.42:=
73 + >=dev-libs/libical-0.43
74 + >=dev-libs/libpeas-1.17
75 + >=gnome-extra/evolution-data-server-3.17.1[gtk]
76 + >=net-libs/gnome-online-accounts-3.2
77 + >=x11-libs/gtk+-3.19.5:3
78 +"
79 +DEPEND="${RDEPEND}
80 + >=dev-util/intltool-0.40.6
81 + dev-libs/appstream-glib
82 + sys-devel/gettext
83 + virtual/pkgconfig
84 +"
85 +
86 +src_prepare() {
87 + eapply "${FILESDIR}"/${P}-link-failure.patch
88 +
89 + eautoreconf
90 + gnome2_src_prepare
91 +}
92 +
93 +src_configure() {
94 + gnome2_src_configure --enable-eds-plugin
95 +}