Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgweather: ChangeLog libgweather-2.28.0.ebuild libgweather-2.26.1.ebuild
Date: Thu, 29 Oct 2009 22:31:03
Message-Id: E1N3dWH-0004r8-LZ@stork.gentoo.org
1 eva 09/10/29 22:31:01
2
3 Modified: ChangeLog
4 Added: libgweather-2.28.0.ebuild
5 Removed: libgweather-2.26.1.ebuild
6 Log:
7 New version for GNOME 2.28. Clean up old revision.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.43 dev-libs/libgweather/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libgweather/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libgweather/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libgweather/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgweather/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 24 Oct 2009 16:50:02 -0000 1.42
24 +++ ChangeLog 29 Oct 2009 22:31:01 -0000 1.43
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libgweather
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/ChangeLog,v 1.42 2009/10/24 16:50:02 nixnut Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/ChangeLog,v 1.43 2009/10/29 22:31:01 eva Exp $
30 +
31 +*libgweather-2.28.0 (29 Oct 2009)
32 +
33 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
34 + -libgweather-2.26.1.ebuild, +libgweather-2.28.0.ebuild:
35 + New version for GNOME 2.28. Clean up old revision.
36
37 24 Oct 2009; nixnut <nixnut@g.o> libgweather-2.26.2.1.ebuild:
38 ppc stable #281427
39
40
41
42 1.1 dev-libs/libgweather/libgweather-2.28.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libgweather/libgweather-2.28.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libgweather/libgweather-2.28.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libgweather-2.28.0.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/dev-libs/libgweather/libgweather-2.28.0.ebuild,v 1.1 2009/10/29 22:31:01 eva Exp $
52
53 EAPI="2"
54 GCONF_DEBUG="no"
55
56 inherit autotools gnome2
57
58 DESCRIPTION="Library to access weather information from online services"
59 HOMEPAGE="http://www.gnome.org/"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="python doc"
65
66 RDEPEND=">=x11-libs/gtk+-2.11
67 >=dev-libs/glib-2.13
68 >=gnome-base/gconf-2.8
69 >=net-libs/libsoup-2.25.1:2.4[gnome]
70 >=dev-libs/libxml2-2.6.0
71 python? (
72 >=dev-python/pygobject-2
73 >=dev-python/pygtk-2 )
74 !<gnome-base/gnome-applets-2.22.0"
75 DEPEND="${RDEPEND}
76 >=dev-util/intltool-0.40.3
77 >=dev-util/pkgconfig-0.19
78 dev-util/gtk-doc-am
79 doc? ( >=dev-util/gtk-doc-1.9 )"
80
81 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS"
82
83 pkg_setup() {
84 G2CONF="${G2CONF}
85 --enable-locations-compression
86 --disable-all-translations-in-one-xml
87 --disable-static
88 $(use_enable python)"
89 }
90
91 src_prepare() {
92 gnome2_src_prepare
93
94 # FIXME: tarball generated with broken gtk-doc, revisit me.
95 if use doc; then
96 sed "/^TARGET_DIR/i \GTKDOC_REBASE=/usr/bin/gtkdoc-rebase" \
97 -i gtk-doc.make || die "sed 1 failed"
98 else
99 sed "/^TARGET_DIR/i \GTKDOC_REBASE=/$(type -P true)" \
100 -i gtk-doc.make || die "sed 2 failed"
101 fi
102
103 # Make it libtool-1 compatible, bug #278516
104 rm -v m4/lt* m4/libtool.m4 || die "removing libtool macros failed"
105
106 intltoolize --force --copy --automake || die "intltoolize failed"
107 eautoreconf
108 }