Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/caribou: ChangeLog caribou-0.4.5.ebuild
Date: Thu, 22 Nov 2012 22:19:08
Message-Id: 20121122221858.3AAF220C65@flycatcher.gentoo.org
1 eva 12/11/22 22:18:58
2
3 Modified: ChangeLog
4 Added: caribou-0.4.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.12 app-accessibility/caribou/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/caribou/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/caribou/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/caribou/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/caribou/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 8 Sep 2012 22:34:19 -0000 1.11
24 +++ ChangeLog 22 Nov 2012 22:18:58 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-accessibility/caribou
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/caribou/ChangeLog,v 1.11 2012/09/08 22:34:19 nirbheek Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/caribou/ChangeLog,v 1.12 2012/11/22 22:18:58 eva Exp $
30 +
31 +*caribou-0.4.5 (22 Nov 2012)
32 +
33 + 22 Nov 2012; Gilles Dartiguelongue <eva@g.o> +caribou-0.4.5.ebuild:
34 + Version bump.
35
36 08 Sep 2012; Nirbheek Chauhan <nirbheek@g.o> -caribou-0.4.3.ebuild:
37 Remove old version with incorrect dep on pygobject
38
39
40
41 1.1 app-accessibility/caribou/caribou-0.4.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/caribou/caribou-0.4.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/caribou/caribou-0.4.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: caribou-0.4.5.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/caribou/caribou-0.4.5.ebuild,v 1.1 2012/11/22 22:18:58 eva Exp $
51
52 EAPI="4"
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes"
55 PYTHON_DEPEND="2:2.5"
56 PYTHON_USE_WITH="xml"
57
58 inherit gnome2 python
59
60 DESCRIPTION="Input assistive technology intended for switch and pointer users"
61 HOMEPAGE="https://live.gnome.org/Caribou"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 COMMON_DEPEND=">=dev-python/pygobject-2.90.3:3
69 >=x11-libs/gtk+-3:3[introspection]
70 x11-libs/gtk+:2
71 >=dev-libs/gobject-introspection-0.10.7
72 dev-libs/libgee:0.8
73 dev-libs/libxml2
74 >=media-libs/clutter-1.5.11:1.0[introspection]
75 x11-libs/libX11
76 x11-libs/libxklavier
77 x11-libs/libXtst"
78 # gsettings-desktop-schemas is needed for the 'toolkit-accessibility' key
79 # pyatspi-2.1.90 needed to run caribou if pygobject:3 is installed
80 # librsvg needed to load svg images in css styles
81 RDEPEND="${COMMON_DEPEND}
82 >=dev-python/pyatspi-2.1.90
83 >=gnome-base/gsettings-desktop-schemas-3
84 gnome-base/librsvg:2
85 sys-apps/dbus
86 virtual/python-argparse
87 "
88 DEPEND="${COMMON_DEPEND}
89 dev-libs/libxslt
90 >=dev-util/intltool-0.35.5
91 virtual/pkgconfig"
92
93 DOCS="AUTHORS ChangeLog NEWS README"
94
95 pkg_setup() {
96 python_set_active_version 2
97 python_pkg_setup
98 }
99
100 src_prepare() {
101 G2CONF="${G2CONF}
102 --disable-static
103 --disable-schemas-compile
104 --enable-gtk3-module
105 --enable-gtk2-module
106 PYTHON=${EPREFIX}/usr/bin/python2
107 VALAC=$(type -P valac-0.18)" # harmless even if valac-0.14 not found
108 # PYTHON is substituted into several installed shell scripts
109 # vala is not needed for tarball builds, but configure checks for it...
110
111 # delete custom PYTHONPATH, useless on Gentoo and potential bug source
112 sed -e '/export PYTHONPATH=.*python/ d' \
113 -i bin/{antler-keyboard,caribou,caribou-preferences}.in ||
114 die "sed failed"
115
116 python_clean_py-compile_files
117
118 gnome2_src_prepare
119 }
120
121 pkg_postinst() {
122 gnome2_pkg_postinst
123 python_mod_optimize caribou
124 }
125
126 pkg_postrm() {
127 gnome2_pkg_postrm
128 python_mod_cleanup caribou
129 }