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/dasher: ChangeLog dasher-4.11.ebuild
Date: Wed, 31 Mar 2010 23:04:36
Message-Id: E1Nx6xd-0000nC-J0@stork.gentoo.org
1 eva 10/03/31 23:04:33
2
3 Modified: ChangeLog
4 Added: dasher-4.11.ebuild
5 Log:
6 Version bump. Drop libglade, fix blank window with >=gtk+-2.18.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.150 app-accessibility/dasher/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/dasher/ChangeLog?rev=1.150&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/dasher/ChangeLog?rev=1.150&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/dasher/ChangeLog?r1=1.149&r2=1.150
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/dasher/ChangeLog,v
19 retrieving revision 1.149
20 retrieving revision 1.150
21 diff -u -r1.149 -r1.150
22 --- ChangeLog 17 Jan 2010 23:22:46 -0000 1.149
23 +++ ChangeLog 31 Mar 2010 23:04:33 -0000 1.150
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-accessibility/dasher
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/ChangeLog,v 1.149 2010/01/17 23:22:46 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/ChangeLog,v 1.150 2010/03/31 23:04:33 eva Exp $
29 +
30 +*dasher-4.11 (31 Mar 2010)
31 +
32 + 31 Mar 2010; Gilles Dartiguelongue <eva@g.o> +dasher-4.11.ebuild:
33 + Version bump. Drop libglade, fix blank window with >=gtk+-2.18.
34
35 17 Jan 2010; Jeroen Roovers <jer@g.o> dasher-4.10.1.ebuild:
36 Stable for HPPA (bug #281427).
37
38
39
40 1.1 app-accessibility/dasher/dasher-4.11.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/dasher/dasher-4.11.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/dasher/dasher-4.11.ebuild?rev=1.1&content-type=text/plain
44
45 Index: dasher-4.11.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/dasher-4.11.ebuild,v 1.1 2010/03/31 23:04:33 eva Exp $
50
51 EAPI="2"
52
53 inherit gnome2
54
55 DESCRIPTION="A text entry interface, driven by continuous pointing gestures"
56 HOMEPAGE="http://www.inference.phy.cam.ac.uk/dasher/"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61
62 IUSE="accessibility cairo gnome nls"
63
64 # The package claims to support 'qte', but it hasn't been tested.
65 # Any patches from someone who can test it are welcome.
66 # <leonardop@g.o>
67 RDEPEND=">=dev-libs/glib-2.16
68 dev-libs/expat
69 >=x11-libs/gtk+-2.6
70 >=gnome-base/gconf-2
71 x11-libs/libX11
72 x11-libs/libXtst
73 accessibility? (
74 app-accessibility/gnome-speech
75 >=gnome-base/libbonobo-2
76 >=gnome-base/orbit-2
77 >=gnome-base/libgnomeui-2
78 >=gnome-extra/at-spi-1
79 dev-libs/atk )
80 cairo? ( >=x11-libs/gtk+-2.8 )
81 gnome? (
82 >=gnome-base/libgnome-2
83 >=gnome-base/libgnomeui-2 )"
84 DEPEND="${RDEPEND}
85 >=dev-util/pkgconfig-0.9
86 x11-proto/xextproto
87 x11-proto/xproto
88 gnome? (
89 >=app-text/gnome-doc-utils-0.3.2
90 app-text/scrollkeeper )
91 nls? ( >=dev-util/intltool-0.41 )"
92
93 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
94
95 pkg_setup() {
96 # we might want to support japanese and chinese input at some point
97 # --enable-japanese
98 # --enable-chinese
99 # --enable-tilt (tilt sensor support)
100
101 G2CONF="${G2CONF}
102 --disable-scrollkeeper
103 --with-gvfs
104 $(use_enable accessibility a11y)
105 $(use_enable accessibility speech)
106 $(use_with cairo)
107 $(use_with gnome)
108 $(use_enable nls)"
109 }
110
111 src_prepare() {
112 # configure.ac has a typo for AM_GCONF_SOURCE2
113 # beware if adding src_prepare + eautoreconf
114 gnome2_src_prepare
115
116 # Fix intltoolize broken file, see upstream #577133
117 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
118 || die "sed 1 failed"
119 }