blob: 482d8ce23d515bd3a87c6c6e4e6cca5478276cba (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/eflite/eflite-0.4.1.ebuild,v 1.3 2009/10/01 20:00:59 beandog Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A speech server that allows emacspeak and other screen readers to interact with festival lite."
HOMEPAGE="http://eflite.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND=">=app-accessibility/flite-1.2"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' *
}
src_install() {
einstall || die
dodoc ChangeLog README INSTALL eflite_test.txt
insinto /etc/eflite
doins "${FILESDIR}"/es.conf
newinitd "${FILESDIR}"/eflite.rc eflite
}
pkg_postinst() {
enewgroup speech
}
|