blob: 24a692554ece96142aeaae0f48f1d00143edcb7f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/dasher-3.2.18.ebuild,v 1.6 2006/01/22 19:53:27 dang Exp $
inherit eutils gnome2
DESCRIPTION="A text entry interface, driven by continuous pointing gestures"
HOMEPAGE="http://www.inference.phy.cam.ac.uk/dasher/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
IUSE="accessibility gnome"
# The package claims to support 'qte', but it hasn't been tested.
# Any patches from someone who can test it are welcome.
# <leonardop@gentoo.org>
RDEPEND="dev-libs/expat
>=x11-libs/gtk+-2
>=gnome-base/gconf-2
>=gnome-base/libglade-2
>=dev-libs/glib-2
>=x11-libs/libwnck-1
virtual/x11
gnome? (
>=gnome-base/libgnome-2
>=gnome-base/libgnomeui-2
>=gnome-base/gnome-vfs-2 )
accessibility? (
app-accessibility/gnome-speech
>=gnome-base/libbonobo-2
>=gnome-base/orbit-2
>=gnome-base/libgnomeui-2
>=gnome-extra/at-spi-1 )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.28
>=dev-util/pkgconfig-0.9
app-text/scrollkeeper"
USE_DESTDIR="1"
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
pkg_setup() {
# cairo switch disabled until gtk+ 2.7 or better is available and
# not hard-masked
G2CONF="$(use_with gnome) \
$(use_with accessibility a11y) \
$(use_with accessibility speech) \
--without-cairo"
}
src_unpack() {
unpack "${A}"
cd "${S}"
# Poor pointer management causes segfault at startup
epatch ${FILESDIR}/${PN}-3.2.15-buildwindowtree.patch
gnome2_omf_fix Data/Help/Gnome/*/Makefile.in
}
|