Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/at-spi: ChangeLog at-spi-1.28.1.ebuild
Date: Thu, 29 Oct 2009 21:51:32
Message-Id: E1N3cu2-0000uy-Or@stork.gentoo.org
1 eva 09/10/29 21:51:30
2
3 Modified: ChangeLog
4 Added: at-spi-1.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.191 gnome-extra/at-spi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/at-spi/ChangeLog?rev=1.191&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/at-spi/ChangeLog?rev=1.191&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/at-spi/ChangeLog?r1=1.190&r2=1.191
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/ChangeLog,v
19 retrieving revision 1.190
20 retrieving revision 1.191
21 diff -u -r1.190 -r1.191
22 --- ChangeLog 24 Oct 2009 17:04:39 -0000 1.190
23 +++ ChangeLog 29 Oct 2009 21:51:30 -0000 1.191
24 @@ -1,6 +1,11 @@
25 # ChangeLog for gnome-extra/at-spi
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/ChangeLog,v 1.190 2009/10/24 17:04:39 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/ChangeLog,v 1.191 2009/10/29 21:51:30 eva Exp $
29 +
30 +*at-spi-1.28.1 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o> +at-spi-1.28.1.ebuild:
33 + New version for GNOME 2.28.
34
35 24 Oct 2009; nixnut <nixnut@g.o> ChangeLog:
36 ppc stable #281427
37
38
39
40 1.1 gnome-extra/at-spi/at-spi-1.28.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/at-spi/at-spi-1.28.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/at-spi/at-spi-1.28.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: at-spi-1.28.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/at-spi-1.28.1.ebuild,v 1.1 2009/10/29 21:51:30 eva Exp $
50
51 inherit autotools eutils gnome2 python virtualx
52
53 DESCRIPTION="The Gnome Accessibility Toolkit"
54 HOMEPAGE="http://developer.gnome.org/projects/gap/"
55
56 LICENSE="LGPL-2"
57 SLOT="1"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE="doc"
60
61 RDEPEND=">=dev-libs/atk-1.17
62 >=x11-libs/gtk+-2.10.0
63 >=gnome-base/gail-1.9.0
64 >=gnome-base/libbonobo-1.107
65 >=gnome-base/orbit-2
66 >=dev-libs/dbus-glib-0.76
67 >=gnome-base/gconf-2
68 dev-libs/popt
69
70 x11-libs/libICE
71 x11-libs/libSM
72 x11-libs/libX11
73 x11-libs/libXi
74 x11-libs/libXtst"
75
76 DEPEND="${RDEPEND}
77 >=dev-util/pkgconfig-0.9
78 >=dev-util/intltool-0.40
79 gnome-base/gnome-common
80 dev-util/gtk-doc-am
81 doc? ( >=dev-util/gtk-doc-1 )
82
83 x11-libs/libXt
84 x11-proto/xextproto
85 x11-proto/inputproto
86 x11-proto/xproto"
87
88 DOCS="AUTHORS ChangeLog NEWS README TODO"
89
90 # needs a live properly configured environment. Not really suited to
91 # an ebuild restricted environment
92 RESTRICT="test"
93
94 pkg_setup() {
95 G2CONF="${G2CONF}
96 --enable-sm
97 --disable-xevie"
98 }
99
100 src_unpack() {
101 gnome2_src_unpack
102
103 # disable pyc compiling
104 mv py-compile py-compile.orig
105 ln -s $(type -P true) py-compile
106
107 # should fix tests
108 epatch "${FILESDIR}"/${PN}-1.22.0-tests.patch
109
110 intltoolize --force --copy --automake || die "intltoolize failed"
111 eautoreconf
112 }
113
114 src_test() {
115 Xemake check || die "Testing phase failed"
116 }
117
118 pkg_postinst() {
119 gnome2_pkg_postinst
120
121 python_need_rebuild
122 python_mod_optimize $(python_get_sitedir)/pyatspi
123 }
124
125 pkg_postrm() {
126 gnome2_pkg_postrm
127
128 python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/pyatspi
129 }