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/libsoup-gnome: libsoup-gnome-2.28.1.ebuild ChangeLog
Date: Thu, 29 Oct 2009 21:23:32
Message-Id: E1N3cSw-0006z8-CR@stork.gentoo.org
1 eva 09/10/29 21:23:30
2
3 Modified: ChangeLog
4 Added: libsoup-gnome-2.28.1.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 net-libs/libsoup-gnome/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 13 Oct 2009 15:21:13 -0000 1.9
23 +++ ChangeLog 29 Oct 2009 21:23:29 -0000 1.10
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-libs/libsoup-gnome
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v 1.9 2009/10/13 15:21:13 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v 1.10 2009/10/29 21:23:29 eva Exp $
29 +
30 +*libsoup-gnome-2.28.1 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
33 + +libsoup-gnome-2.28.1.ebuild,
34 + +files/libsoup-gnome-2.28.1-system-lib.patch:
35 + New version for GNOME 2.28.
36
37 13 Oct 2009; Jeremy Olexa <darkside@g.o>
38 libsoup-gnome-2.26.3-r1.ebuild:
39
40
41
42 1.1 net-libs/libsoup-gnome/libsoup-gnome-2.28.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.28.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.28.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libsoup-gnome-2.28.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.28.1.ebuild,v 1.1 2009/10/29 21:23:29 eva Exp $
52
53 EAPI="2"
54
55 inherit autotools eutils gnome2
56
57 MY_PN=${PN/-gnome}
58 MY_P=${MY_PN}-${PV}
59
60 DESCRIPTION="GNOME plugin for libsoup"
61 HOMEPAGE="http://www.gnome.org/"
62 SRC_URI="${SRC_URI//-gnome}"
63
64 LICENSE="LGPL-2"
65 SLOT="2.4"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
67 # Do NOT build with --disable-debug/--enable-debug=no - gnome2.eclass takes care of that
68 IUSE="debug doc"
69
70 RDEPEND="~net-libs/libsoup-${PV}
71 gnome-base/gnome-keyring
72 net-libs/libproxy
73 >=gnome-base/gconf-2
74 dev-db/sqlite:3"
75 DEPEND="${RDEPEND}
76 >=dev-util/pkgconfig-0.9
77 dev-util/gtk-doc-am
78 doc? ( >=dev-util/gtk-doc-1 )"
79
80 S=${WORKDIR}/${MY_P}
81
82 DOCS="AUTHORS NEWS README"
83
84 pkg_setup() {
85 G2CONF="${G2CONF}
86 --disable-static
87 --with-libsoup-system
88 --with-gnome"
89 }
90 src_prepare() {
91 gnome2_src_prepare
92
93 # Fix test to follow POSIX (for x86-fbsd)
94 # No patch to prevent having to eautoreconf
95 sed -e 's/\(test.*\)==/\1=/g' -i configure.in configure || die "sed failed"
96
97 # Use lib present on the system
98 epatch "${FILESDIR}"/${PN}-2.28.1-system-lib.patch
99 eautoreconf
100 }