diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-10-12 21:13:44 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-10-12 21:13:44 +0000 |
commit | 9b27106ebccd811fe7c68fb844f533c6712d8759 (patch) | |
tree | b78ff6288b5d699b27c88d9d535af23888d2a8da /app-accessibility/orca | |
parent | New version for GNOME 2.24. Mostly translation updates. (diff) | |
download | gentoo-2-9b27106ebccd811fe7c68fb844f533c6712d8759.tar.gz gentoo-2-9b27106ebccd811fe7c68fb844f533c6712d8759.tar.bz2 gentoo-2-9b27106ebccd811fe7c68fb844f533c6712d8759.zip |
New version for GNOME 2.24. Mostly bug fixes and support of new applications.
(Portage version: 2.2_rc12/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
Diffstat (limited to 'app-accessibility/orca')
-rw-r--r-- | app-accessibility/orca/ChangeLog | 8 | ||||
-rw-r--r-- | app-accessibility/orca/orca-2.24.0.ebuild | 55 |
2 files changed, 62 insertions, 1 deletions
diff --git a/app-accessibility/orca/ChangeLog b/app-accessibility/orca/ChangeLog index 51117a257197..cd0274421cb3 100644 --- a/app-accessibility/orca/ChangeLog +++ b/app-accessibility/orca/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-accessibility/orca # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/ChangeLog,v 1.50 2008/09/25 16:08:31 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/ChangeLog,v 1.51 2008/10/12 21:13:44 eva Exp $ + +*orca-2.24.0 (12 Oct 2008) + + 12 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org> +orca-2.24.0.ebuild: + New version for GNOME 2.24. Mostly bug fixes and support of new + applications. 25 Sep 2008; Jeroen Roovers <jer@gentoo.org> orca-2.22.3.ebuild: Stable for HPPA (bug #236971). diff --git a/app-accessibility/orca/orca-2.24.0.ebuild b/app-accessibility/orca/orca-2.24.0.ebuild new file mode 100644 index 000000000000..e4310aa60292 --- /dev/null +++ b/app-accessibility/orca/orca-2.24.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-2.24.0.ebuild,v 1.1 2008/10/12 21:13:44 eva Exp $ + +inherit gnome2 python + +DESCRIPTION="Extensible screen reader that provides access to the desktop" +HOMEPAGE="http://www.gnome.org/projects/orca/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +# liblouis is not in portage yet +# it is used to provide contracted braille support +RDEPEND=">=dev-libs/glib-2.10 + >=gnome-base/orbit-2 + >=gnome-extra/at-spi-1.7.6 + >=gnome-base/libbonobo-2.14 + >=dev-lang/python-2.4 + >=dev-python/pygtk-2.12 + >=dev-python/gnome-python-2.14 + >=dev-python/pyorbit-2.14 + >=app-accessibility/gnome-speech-0.3.10 + >=app-accessibility/gnome-mag-0.12.5" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + >=dev-util/pkgconfig-0.9" + +DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO" + +pkg_setup() { + G2CONF="${G2CONF} --disable-liblouis" +} + +src_unpack() { + gnome2_src_unpack + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile +} + +pkg_postinst() { + gnome2_pkg_postinst + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/orca +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/orca +} |