blob: b0e001e4a6a0b7a91b8e500d6ae7631654a82f4b (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils epatch user
DESCRIPTION="A speech server that allows 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="~alpha amd64 ppc ppc64 sparc x86"
IUSE="+16k_voice"
DEPEND=">=app-accessibility/flite-1.4"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i 's:/etc/es.conf:/etc/eflite/es.conf:g' * || die
epatch "${FILESDIR}"/${PN}-0.4.1-flite14.patch
eautoreconf
}
src_configure() {
local myconf
if use 16k_voice; then
myconf='--with-vox=cmu_us_kal16'
fi
econf ${myconf}
}
src_install() {
einstall
dodoc ChangeLog README INSTALL eflite_test.txt
insinto /etc/eflite
doins "${FILESDIR}"/es.conf
newinitd "${FILESDIR}"/eflite.rc eflite
}
pkg_postinst() {
enewgroup speech
}
|