blob: 0703c9df9d4c8d58d497b0a672d31545780f2de8 (
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
50
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/freetts/freetts-1.2_beta.ebuild,v 1.5 2004/04/06 03:51:28 zx Exp $
inherit java-pkg eutils
DESCRIPTION="FreeTTS is a speech synthesis system written entirely in the Java programming language"
SRC_URI="mirror://sourceforge/freetts/${PN}-srcs-${PV/./_}.zip"
HOMEPAGE="http://freetts.sourceforge.net"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.6.0
app-arch/unzip
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="sun-bcla-jsapi freetts"
SLOT="0"
KEYWORDS="~x86"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd ${S}/lib
chmod 755 jsapi.sh
epatch ${FILESDIR}/jsapi-gentoo.diff
}
src_compile() {
cd ${S}/lib
./jsapi.sh >& /dev/null && cd ${S}
local antflags="jars"
use doc && unzip -qq javadoc.zip
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar lib/*.jar mbrola/*.jar
insinto /usr/share/${PN}
doins speech.properties
cp -R ${S}/demo ${D}/usr/share/${PN}
cp -R ${S}/tools ${D}/usr/share/${PN}
dodir ${JDK_HOME}/jre/lib
dosym \
/usr/share/${PN}/speech.properties \
${JDK_HOME}/jre/lib/speech.properties
dodoc README.txt RELEASE_NOTES acknowledgments.txt
use doc && cp -R ${S}/docs ${D}/usr/share/doc/${P} && cp -R ${S}/javadoc ${D}/usr/share/doc/${P}/api
}
|