Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libgrss: ChangeLog libgrss-0.5.0-r1.ebuild
Date: Fri, 26 Sep 2014 18:05:22
Message-Id: 20140926180518.08360657B@oystercatcher.gentoo.org
1 eva 14/09/26 18:05:18
2
3 Modified: ChangeLog
4 Added: libgrss-0.5.0-r1.ebuild
5 Log:
6 Fix build with newer glibc, bug #490722.
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.17 net-libs/libgrss/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgrss/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgrss/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgrss/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgrss/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 15 Jan 2014 13:04:09 -0000 1.16
24 +++ ChangeLog 26 Sep 2014 18:05:17 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libgrss
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/ChangeLog,v 1.16 2014/01/15 13:04:09 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/ChangeLog,v 1.17 2014/09/26 18:05:17 eva Exp $
30 +
31 +*libgrss-0.5.0-r1 (26 Sep 2014)
32 +
33 + 26 Sep 2014; Gilles Dartiguelongue <eva@g.o> +libgrss-0.5.0-r1.ebuild,
34 + +files/libgrss-0.5.0-headers.patch:
35 + Fix build with newer glibc, bug #490722.
36
37 15 Jan 2014; Agostino Sarubbo <ago@g.o> libgrss-0.5.0.ebuild:
38 Stable for arm, wrt bug #488764
39
40
41
42 1.1 net-libs/libgrss/libgrss-0.5.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgrss/libgrss-0.5.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgrss/libgrss-0.5.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libgrss-0.5.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.5.0-r1.ebuild,v 1.1 2014/09/26 18:05:17 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="yes"
55
56 inherit autotools eutils gnome2
57
58 DESCRIPTION="LibGRSS is a library for easy management of RSS/Atom/Pie feeds"
59 HOMEPAGE="http://live.gnome.org/Libgrss"
60 SRC_URI="http://gtk.mplat.es/libgrss/tarballs/${P}.tar.gz"
61
62 LICENSE="LGPL-3"
63 SLOT="0.5"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="examples"
66
67 RDEPEND="
68 >=dev-libs/glib-2.30.2:2
69 >=dev-libs/libxml2-2.7.8:2
70 >=net-libs/libsoup-2.36.1:2.4
71 "
72 DEPEND="${RDEPEND}
73 app-text/gnome-doc-utils
74 >=dev-util/gtk-doc-am-1.10
75 dev-util/intltool
76 sys-devel/gettext
77 virtual/pkgconfig
78 "
79
80 src_prepare() {
81 # Fix soname/.pc
82 epatch "${FILESDIR}"/${P}-fix-slotting.patch
83
84 # Fix build with newer glibc
85 epatch "${FILESDIR}"/${P}-headers.patch
86
87 eautoreconf
88 gnome2_src_prepare
89 }
90
91 src_install() {
92 gnome2_src_install
93
94 if use examples ; then
95 insinto /usr/share/doc/${PF}
96 doins -r examples
97 fi
98 }