Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/atk: ChangeLog atk-1.32.0.ebuild
Date: Sat, 09 Oct 2010 21:04:06
Message-Id: 20101009203755.A2AC82004C@flycatcher.gentoo.org
1 pacho 10/10/09 20:37:55
2
3 Modified: ChangeLog
4 Added: atk-1.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.206 dev-libs/atk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/atk/ChangeLog?rev=1.206&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/atk/ChangeLog?rev=1.206&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/atk/ChangeLog?r1=1.205&r2=1.206
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v
20 retrieving revision 1.205
21 retrieving revision 1.206
22 diff -u -r1.205 -r1.206
23 --- ChangeLog 7 Oct 2010 20:01:31 -0000 1.205
24 +++ ChangeLog 9 Oct 2010 20:37:55 -0000 1.206
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/atk
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.205 2010/10/07 20:01:31 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.206 2010/10/09 20:37:55 pacho Exp $
30 +
31 +*atk-1.32.0 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Pacho Ramos <pacho@g.o> +atk-1.32.0.ebuild:
34 + Version bump for Gnome 2.32: upstream bugfixes and translation updates.
35 + Update HOMEPAGE, don't waste time building tests (bug #226353) and remove
36 + DISABLE_DEPRECATED flags.
37
38 07 Oct 2010; Samuli Suominen <ssuominen@g.o> atk-1.30.0.ebuild:
39 ppc64 stable wrt #324077
40
41
42
43 1.1 dev-libs/atk/atk-1.32.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/atk/atk-1.32.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/atk/atk-1.32.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: atk-1.32.0.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-1.32.0.ebuild,v 1.1 2010/10/09 20:37:55 pacho Exp $
53
54 EAPI="3"
55 GCONF_DEBUG="no"
56
57 inherit gnome2
58
59 DESCRIPTION="GTK+ & GNOME Accessibility Toolkit"
60 HOMEPAGE="http://projects.gnome.org/accessibility/"
61
62 LICENSE="LGPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="doc +introspection"
66
67 RDEPEND="dev-libs/glib:2
68 introspection? ( >=dev-libs/gobject-introspection-0.6.7 )"
69 DEPEND="${RDEPEND}
70 >=dev-lang/perl-5
71 sys-devel/gettext
72 dev-util/pkgconfig
73 doc? ( >=dev-util/gtk-doc-1 )"
74
75 pkg_setup() {
76 G2CONF="${G2CONF} $(use_enable introspection)"
77 DOCS="AUTHORS ChangeLog NEWS README"
78 }
79
80 src_prepare() {
81 gnome2_src_prepare
82
83 if ! use test; then
84 # don't waste time building tests (bug #226353)
85 sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
86 || die "sed failed"
87 fi
88
89 # Remove DEPRECATED flags
90 sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i atk/Makefile.am atk/Makefile.in \
91 tests/Makefile.am tests/Makefile.in || die "sed 2 failed"
92 }