blob: 5e87b6d5f09ceff8e8d9f2d1244e48f51dcb028d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/eflite/eflite-0.3.8-r2.ebuild,v 1.2 2004/03/24 04:13:33 eradicator Exp $
inherit eutils
DESCRIPTION="A speech server for emacspeek and other screen readers that allows them to interact with festival lite."
HOMEPAGE="http://eflite.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
RDEPEND=">=app-accessibility/flite-1.2"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.58"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-shared_flite.patch
epatch ${FILESDIR}/${P}-daemon.patch
epatch ${FILESDIR}/${P}-read_pipe.patch
sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' *
WANT_AUTOCONF=2.5 autoconf
}
src_install() {
dobin eflite || die
dodoc ChangeLog README INSTALL eflite_test.txt
insinto /etc/eflite
doins ${FILESDIR}/es.conf
exeinto /etc/init.d
newexe ${FILESDIR}/eflite.rc eflite
}
pkg_postinst() {
enewgroup speech
einfo "To test eflite, you can run:"
einfo "gzcat /usr/share/doc/${PF}/eflite_test.txt.gz | eflite"
}
|