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/accerciser/
Date: Sun, 28 Oct 2012 21:37:22
Message-Id: 1351460185.5f28aa763796c8aa8b94b6d552d4c5a6a9f7b5d3.eva@gentoo
1 commit: 5f28aa763796c8aa8b94b6d552d4c5a6a9f7b5d3
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 21:36:25 2012 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 21:36:25 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=5f28aa76
7
8 app-accessibility/accerciser: 3.4.1 → 3.6.0
9
10 ---
11 .../accerciser/accerciser-3.6.0.ebuild | 65 ++++++++++++++++++++
12 1 files changed, 65 insertions(+), 0 deletions(-)
13
14 diff --git a/app-accessibility/accerciser/accerciser-3.6.0.ebuild b/app-accessibility/accerciser/accerciser-3.6.0.ebuild
15 new file mode 100644
16 index 0000000..fb3f767
17 --- /dev/null
18 +++ b/app-accessibility/accerciser/accerciser-3.6.0.ebuild
19 @@ -0,0 +1,65 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-3.4.1.ebuild,v 1.1 2012/05/20 08:41:00 tetromino Exp $
23 +
24 +EAPI="4"
25 +GCONF_DEBUG="no"
26 +PYTHON_DEPEND="2:2.7"
27 +PYTHON_USE_WITH="xml"
28 +
29 +inherit gnome2 python
30 +
31 +DESCRIPTION="Interactive Python accessibility explorer"
32 +HOMEPAGE="http://live.gnome.org/Accerciser"
33 +
34 +LICENSE="BSD"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="
40 + >=app-accessibility/at-spi2-core-2.1.5:2
41 + >=dev-python/pygobject-2.90.3:3
42 + >=x11-libs/gtk+-3.1.13:3[introspection]
43 +
44 + dev-libs/atk[introspection]
45 + >=dev-libs/glib-2.28:2
46 + dev-libs/gobject-introspection
47 + >=dev-python/ipython-0.11
48 + >=dev-python/pyatspi-2.1.5
49 + dev-python/pycairo
50 + x11-libs/gdk-pixbuf[introspection]
51 + x11-libs/libwnck:3[introspection]
52 + x11-libs/pango[introspection]
53 +"
54 +DEPEND="${RDEPEND}
55 + app-text/yelp-tools
56 + >=dev-util/intltool-0.35
57 + sys-devel/gettext
58 + virtual/pkgconfig
59 +"
60 +
61 +pkg_setup() {
62 + python_set_active_version 2
63 + python_pkg_setup
64 +}
65 +
66 +src_prepare() {
67 + DOCS="AUTHORS ChangeLog NEWS README"
68 + G2CONF="${G2CONF} ITSTOOL=$(type -P true)"
69 +
70 + gnome2_src_prepare
71 + python_clean_py-compile_files
72 + python_convert_shebangs -r 2 .
73 +}
74 +
75 +pkg_postinst() {
76 + gnome2_pkg_postinst
77 + python_need_rebuild
78 + python_mod_optimize "${PN}" /usr/share/${PN}
79 +}
80 +
81 +pkg_postrm() {
82 + gnome2_pkg_postrm
83 + python_mod_cleanup "${PN}" /usr/share/${PN}
84 +}