forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
freetts-1.2.1-r2.ebuild
67 lines (52 loc) · 1.52 KB
/
freetts-1.2.1-r2.ebuild
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
64
65
66
67
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="A speech synthesis system written entirely in Java"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
HOMEPAGE="http://freetts.sourceforge.net/"
RDEPEND=">=virtual/jre-1.4
mbrola? ( >=app-accessibility/mbrola-3.0.1h-r6 ) "
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
jsapi? ( app-arch/sharutils )
app-arch/unzip"
LICENSE="jsapi? ( sun-bcla-jsapi ) freetts"
SLOT="0"
KEYWORDS="amd64 ppc64 x86"
IUSE="doc jsapi mbrola"
src_unpack() {
unpack ${A}
cd "${S}/lib"
chmod 0755 jsapi.sh
epatch "${FILESDIR}/jsapi-gentoo.diff"
use mbrola && echo "mbrola.base=/usr/share/mbrola/" >> "${S}/speech.properties"
}
src_compile() {
cd "${S}/lib"
if use jsapi; then
./jsapi.sh || die "jsapi.sh failed"
fi
cd "${S}"
eant jars
}
# Tests dont' seem included
# http://freetts.sourceforge.net/docs/index.php#how_test
#src_test() {
# ANT_TASKS="ant-junit" eant junit
#}
src_install() {
java-pkg_dojar lib/*.jar mbrola/*.jar
use mbrola && local jflags="--java_args -Dmbrola.base=/usr/share/mbrola"
java-pkg_dolauncher ${PN} --main com.sun.speech.freetts.FreeTTS ${jflags}
insinto /usr/share/${PN}
doins speech.properties
cp -R "${S}/demo" "${D}/usr/share/${PN}"
cp -R "${S}/tools" "${D}/usr/share/${PN}"
dodoc README.txt RELEASE_NOTES acknowledgments.txt || die
if use doc; then
insinto /usr/share/doc/${PF}/html
doins -r "${S}"/docs/*
java-pkg_dojavadoc "${S}/javadoc"
fi
}