diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-10 07:21:05 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-10 07:21:05 +0000 |
commit | 5271478de93b445b0a9ed479be688d4492134073 (patch) | |
tree | 70709b093d9164d5c18d875f0743c18bb97d80d2 /gnome-extra/at-spi | |
parent | Fix static builds (diff) | |
download | gentoo-2-5271478de93b445b0a9ed479be688d4492134073.tar.gz gentoo-2-5271478de93b445b0a9ed479be688d4492134073.tar.bz2 gentoo-2-5271478de93b445b0a9ed479be688d4492134073.zip |
Bump to 1.26.0 -- several bugfixes, no new features
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'gnome-extra/at-spi')
-rw-r--r-- | gnome-extra/at-spi/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/at-spi/at-spi-1.26.0.ebuild | 77 |
2 files changed, 83 insertions, 1 deletions
diff --git a/gnome-extra/at-spi/ChangeLog b/gnome-extra/at-spi/ChangeLog index 9e03e9646b9a..b06afd169076 100644 --- a/gnome-extra/at-spi/ChangeLog +++ b/gnome-extra/at-spi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/at-spi # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/ChangeLog,v 1.185 2009/04/28 14:38:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/ChangeLog,v 1.186 2009/05/10 07:21:04 nirbheek Exp $ + +*at-spi-1.26.0 (10 May 2009) + + 10 May 2009; Nirbheek Chauhan <nirbheek@gentoo.org> +at-spi-1.26.0.ebuild: + Bump to 1.26.0 -- several bugfixes, no new features 28 Apr 2009; Raúl Porcel <armin76@gentoo.org> at-spi-1.24.1.ebuild: sh stable diff --git a/gnome-extra/at-spi/at-spi-1.26.0.ebuild b/gnome-extra/at-spi/at-spi-1.26.0.ebuild new file mode 100644 index 000000000000..6c0084b88b86 --- /dev/null +++ b/gnome-extra/at-spi/at-spi-1.26.0.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/at-spi/at-spi-1.26.0.ebuild,v 1.1 2009/05/10 07:21:05 nirbheek Exp $ + +inherit autotools eutils gnome2 python virtualx + +DESCRIPTION="The Gnome Accessibility Toolkit" +HOMEPAGE="http://developer.gnome.org/projects/gap/" + +LICENSE="LGPL-2" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +RDEPEND=">=dev-libs/atk-1.17 + >=x11-libs/gtk+-2.10.0 + >=gnome-base/gail-1.9.0 + >=gnome-base/libbonobo-1.107 + >=gnome-base/orbit-2 + >=gnome-base/gconf-2 + dev-libs/popt + + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXi + x11-libs/libXtst" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.40 + doc? ( >=dev-util/gtk-doc-1 ) + + x11-libs/libXt + x11-proto/xextproto + x11-proto/inputproto + x11-proto/xproto" + +DOCS="AUTHORS ChangeLog NEWS README TODO" + +# needs a live properly configured environment. Not really suited to +# an ebuild restricted environment +RESTRICT="test" + +pkg_setup() { + G2CONF="${G2CONF} --disable-xevie" +} + +src_unpack() { + gnome2_src_unpack + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile + + # should fix tests + epatch "${FILESDIR}"/${PN}-1.22.0-tests.patch + + eautomake +} + +src_test() { + Xemake check || die "Testing phase failed" +} + +pkg_postinst() { + gnome2_pkg_postinst + + python_need_rebuild + python_mod_optimize $(python_get_sitedir)/pyatspi +} + +pkg_postrm() { + gnome2_pkg_postrm + + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/pyatspi +} |