Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.32.0.ebuild ChangeLog
Date: Sat, 09 Oct 2010 21:03:51
Message-Id: 20101009203413.DCCC02004C@flycatcher.gentoo.org
1 pacho 10/10/09 20:34:13
2
3 Modified: ChangeLog
4 Added: libsoup-2.32.0.ebuild
5 Log:
6 Version bump for Gnome 2.32
7
8 (Portage version: 2.1.9.14/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.235 net-libs/libsoup/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.235&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.235&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.234&r2=1.235
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
20 retrieving revision 1.234
21 retrieving revision 1.235
22 diff -u -r1.234 -r1.235
23 --- ChangeLog 7 Oct 2010 20:48:22 -0000 1.234
24 +++ ChangeLog 9 Oct 2010 20:34:13 -0000 1.235
25 @@ -1,6 +1,17 @@
26 # ChangeLog for net-libs/libsoup
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.234 2010/10/07 20:48:22 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.235 2010/10/09 20:34:13 pacho Exp $
30 +
31 +*libsoup-2.32.0 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Pacho Ramos <pacho@g.o> +libsoup-2.32.0.ebuild:
34 + Version bump for Gnome 2.32: Fixed support for more recent
35 + gobject-introspection, disabled TLS 1.2 in addition to the
36 + already-disabled 1.1 and 1.0 making libsoup usable with gnutls 2.10, other
37 + bugfixes and translation updates. 'Fix test to follow POSIX' looks to be
38 + no longer needed, gir patches neither since they were pushed upstream,
39 + system-lib patch taken from overlay, eautoreconf is only needed with USE
40 + 'doc' and don't waste time building tests (bug #226271).
41
42 07 Oct 2010; Samuli Suominen <ssuominen@g.o>
43 libsoup-2.30.2-r1.ebuild:
44
45
46
47 1.1 net-libs/libsoup/libsoup-2.32.0.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.32.0.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.32.0.ebuild?rev=1.1&content-type=text/plain
51
52 Index: libsoup-2.32.0.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.32.0.ebuild,v 1.1 2010/10/09 20:34:13 pacho Exp $
57
58 EAPI="3"
59 GCONF_DEBUG="yes"
60
61 inherit autotools eutils gnome2
62
63 DESCRIPTION="An HTTP library implementation in C"
64 HOMEPAGE="http://www.gnome.org/"
65
66 LICENSE="LGPL-2"
67 SLOT="2.4"
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
69 IUSE="debug doc +introspection gnome ssl test"
70
71 RDEPEND=">=dev-libs/glib-2.21.3
72 >=dev-libs/libxml2-2
73 introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
74 ssl? ( >=net-libs/gnutls-2.1.7 )"
75 DEPEND="${RDEPEND}
76 >=dev-util/pkgconfig-0.9
77 >=dev-util/gtk-doc-am-1.10
78 doc? ( >=dev-util/gtk-doc-1.10 )"
79 # test? (
80 # www-servers/apache
81 # dev-lang/php
82 # net-misc/curl )
83 PDEPEND="gnome? ( ~net-libs/${PN}-gnome-${PV} )"
84
85 DOCS="AUTHORS NEWS README"
86
87 pkg_setup() {
88 G2CONF="${G2CONF}
89 --disable-static
90 --without-gnome
91 $(use_enable introspection)
92 $(use_enable ssl)"
93 }
94
95 src_configure() {
96 # FIXME: we need addpredict to workaround bug #324779 until
97 # root cause (bug #249496) is solved
98 addpredict /usr/share/snmp/mibs/.index
99 gnome2_src_configure
100 }
101
102 src_prepare() {
103 gnome2_src_prepare
104
105 if ! use test; then
106 # don't waste time building tests (bug #226271)
107 sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
108 || die "sed failed"
109 fi
110
111 # Patch *must* be applied conditionally (see patch for details)
112 if use doc; then
113 # Fix bug 268592 (build fails !gnome && doc)
114 epatch "${FILESDIR}/${PN}-2.30.1-fix-build-without-gnome-with-doc.patch"
115 eautoreconf
116 fi
117 }