diff options
author | Mart Raudsepp <leio@gentoo.org> | 2008-09-30 22:46:43 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2008-09-30 22:46:43 +0000 |
commit | 1bb2ddfb9d718b778a6db1c680800888b73889f2 (patch) | |
tree | 7eaaed8cd0b55fc27b125e14ce8e7b350c07ac1f /gnome-extra/at-spi/at-spi-1.24.0.ebuild | |
parent | Unmask swfdec-0.8 - firefox 3.0.{0,1} didn't like it, but 3.0.3 does (diff) | |
download | gentoo-2-1bb2ddfb9d718b778a6db1c680800888b73889f2.tar.gz gentoo-2-1bb2ddfb9d718b778a6db1c680800888b73889f2.tar.bz2 gentoo-2-1bb2ddfb9d718b778a6db1c680800888b73889f2.zip |
New version with small changes. Remove old
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'gnome-extra/at-spi/at-spi-1.24.0.ebuild')
-rw-r--r-- | gnome-extra/at-spi/at-spi-1.24.0.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/gnome-extra/at-spi/at-spi-1.24.0.ebuild b/gnome-extra/at-spi/at-spi-1.24.0.ebuild new file mode 100644 index 000000000000..a62ad4c9a8df --- /dev/null +++ b/gnome-extra/at-spi/at-spi-1.24.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2008 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.24.0.ebuild,v 1.1 2008/09/30 22:46:43 leio 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 ~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" + +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_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/pyatspi +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/pyatspi +} |