blob: ad94ff7508dfe26d0502c762d6df6e17efe73335 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/gnopernicus/gnopernicus-0.8.4.ebuild,v 1.9 2004/08/05 23:31:26 gustavoz Exp $
inherit eutils gnome2
DESCRIPTION="Software tools for blind and visually impaired in Gnome 2"
HOMEPAGE="http://www.baum.ro/gnopernicus.html"
LICENSE="LGPL-2"
SLOT="1"
KEYWORDS="x86 ~ppc sparc alpha hppa amd64 ~ia64"
IUSE="ipv6 brltty"
# libgail-gnome is only required during runtime
RDEPEND=">=gnome-base/gconf-1.1.5
>=dev-libs/popt-1.5
>=gnome-base/libgnome-1.102
>=gnome-base/libgnomeui-1.106
>=dev-libs/glib-1.3.12
>=x11-libs/gtk+-1.3
>=dev-libs/libxml2-2.4.6
>=gnome-base/libglade-1.99.4
>=gnome-extra/at-spi-1.3.11
>=app-accessibility/gnome-speech-0.3
>=app-accessibility/gnome-mag-0.9
>=gnome-extra/libgail-gnome-1.0
virtual/x11
brltty? ( app-accessibility/brltty )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.29
dev-util/pkgconfig
app-text/scrollkeeper"
G2CONF="${G2CONF} --with-default-fonts-path=${D}/usr/share/fonts/default/Type1"
G2CONF="${G2CONF} $(use_enable ipv6) $(use_enable brltty)"
DOCS="AUTHORS ChangeLog NEWS README"
src_unpack() {
unpack ${A}
cd ${S}
# Patch to make it work with any version of brltty.
epatch ${FILESDIR}/${P}-brltty_fix.patch
}
|