Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: app-accessibility/orca/
Date: Sun, 01 Dec 2013 19:14:41
Message-Id: 1385924539.6ea23e4a2fb118ed50ec9a9681f8735c53b39d61.eva@gentoo
1 commit: 6ea23e4a2fb118ed50ec9a9681f8735c53b39d61
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 13 10:31:51 2013 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 19:02:19 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=6ea23e4a
7
8 app-accessibility/orca: 3.8.2 → 3.10.0
9
10 ---
11 app-accessibility/orca/orca-3.10.0.ebuild | 72 +++++++++++++++++++++++++++++++
12 1 file changed, 72 insertions(+)
13
14 diff --git a/app-accessibility/orca/orca-3.10.0.ebuild b/app-accessibility/orca/orca-3.10.0.ebuild
15 new file mode 100644
16 index 0000000..3f3c275
17 --- /dev/null
18 +++ b/app-accessibility/orca/orca-3.10.0.ebuild
19 @@ -0,0 +1,72 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.8.2.ebuild,v 1.1 2013/08/02 20:49:29 eva Exp $
23 +
24 +EAPI="5"
25 +GCONF_DEBUG="no"
26 +GNOME2_LA_PUNT="yes"
27 +PYTHON_COMPAT=( python3_3 )
28 +PYTHON_REQ_USE="threads"
29 +
30 +inherit gnome2 python-r1
31 +
32 +DESCRIPTION="Extensible screen reader that provides access to the desktop"
33 +HOMEPAGE="http://projects.gnome.org/orca/"
34 +
35 +LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
38 +IUSE=""
39 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 +
41 +# liblouis is not in portage yet
42 +# it is used to provide contracted braille support
43 +# XXX: Check deps for correctness
44 +COMMON_DEPEND="
45 + >=app-accessibility/at-spi2-atk-2.10:2
46 + >=app-accessibility/at-spi2-core-2.10:2[introspection]
47 + >=dev-libs/atk-2.10
48 + >=dev-libs/glib-2.28:2
49 + >=dev-python/pygobject-3.10:3[${PYTHON_USEDEP}]
50 + >=x11-libs/gtk+-3.6.2:3[introspection]
51 + ${PYTHON_DEPS}
52 +"
53 +RDEPEND="${COMMON_DEPEND}
54 + >=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
55 + dev-libs/atk[introspection]
56 + dev-python/pyatspi[${PYTHON_USEDEP}]
57 + dev-python/setproctitle[${PYTHON_USEDEP}]
58 + x11-libs/libwnck:3[introspection]
59 + x11-libs/pango[introspection]
60 +"
61 +DEPEND="${COMMON_DEPEND}
62 + >=dev-util/intltool-0.40
63 + virtual/pkgconfig
64 +"
65 +# app-text/yelp-tools
66 +
67 +src_prepare() {
68 + gnome2_src_prepare
69 +
70 + python_copy_sources
71 +}
72 +
73 +src_configure() {
74 + python_foreach_impl run_in_build_dir gnome2_src_configure ITSTOOL="$(type -P true)"
75 +}
76 +
77 +src_compile() {
78 + python_foreach_impl run_in_build_dir gnome2_src_compile
79 +}
80 +
81 +src_install() {
82 + DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO"
83 + installing() {
84 + gnome2_src_install
85 + # Massage shebang to make python_doscript happy
86 + sed -e 's:#!'"${PYTHON}:#!/usr/bin/python:" \
87 + -i src/orca/orca || die
88 + python_doscript src/orca/orca
89 + }
90 + python_foreach_impl run_in_build_dir installing
91 +}