blob: eb2bdf1eabdc28cb21a3c1e100dce007fc8b5127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-2.30.2.ebuild,v 1.5 2010/09/07 22:03:33 pacho Exp $
PYTHON_DEPEND="2" # Support for Python 3 not verified
GCONF_DEBUG="no"
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 ~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-extra/at-spi-1.24
>=gnome-base/orbit-2
>=dev-python/pyorbit-2.24
>=gnome-base/libbonobo-2.24
>=dev-python/libbonobo-python-2.24
dev-python/pygobject
dev-python/pycairo
>=dev-python/dbus-python-0.83
>=dev-python/pygtk-2.12
>=dev-python/libwnck-python-2.24
>=dev-python/gconf-python-2.24
>=dev-python/libgnome-python-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"
src_unpack() {
gnome2_src_unpack
# disable pyc compiling
mv py-compile py-compile.orig
ln -s $(type -P true) py-compile
# Fix intltoolize broken file, see upstream #577133
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|| die "sed 2 failed"
}
src_compile() {
# FIXME: Workaround for bug #325611 until root cause is found
addpredict "$(unset HOME; echo ~)/.gconf"
addpredict "$(unset HOME; echo ~)/.gconfd"
gnome2_src_compile
}
pkg_postinst() {
gnome2_pkg_postinst
python_mod_optimize $(python_get_sitedir)/orca
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/orca
}
|