blob: b1b0517d67fc85b92aff3755e130bae5ca521a25 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/gnome-speech/gnome-speech-0.3.6.ebuild,v 1.8 2005/06/09 09:36:33 corsair Exp $
inherit java-pkg gnome2
DESCRIPTION="Simple general API for producing text-to-speech output"
HOMEPAGE="http://www.gnome.org/"
LICENSE="LGPL-2"
SLOT="1"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="freetts static"
RDEPEND=">=gnome-base/libbonobo-1.97
>=gnome-base/orbit-2.3.94
freetts? (
=app-accessibility/freetts-1.2*
virtual/jdk
app-accessibility/java-access-bridge
)"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README"
src_compile() {
G2CONF="${G2CONF} $(use_enable static)"
if use freetts
then
if [ -z "${JDK_HOME}" ] || [ ! -d "${JDK_HOME}" ]
then
eerror "The FreeTTS driver includes java components. In order to"
eerror "compile java sources you have to set the\$JDK_HOME"
eerror "environment properly."
eerror ""
eerror "You may do this using dev-java/java-config."
die "Couldn't find a valid JDK home"
fi
local JABDIR="${ROOT}/usr/share/java-access-bridge/lib"
G2CONF="${G2CONF} --with-java-home=${JDK_HOME} \
--with-jab-dir=${JABDIR} --with-freetts-dir=${ROOT}/usr/share/freetts/lib"
sed -i \
-e 's:\(GNOME_SPEECH_JAR_DIR=\).*:\1"/usr/share/gnome-speech-1/lib":' \
-e 's:\(FREETTS_DRIVER_JAR_DIR=\).*:\1"/usr/share/gnome-speech-1/lib":' \
${S}/configure
else
export JAVAC=no
fi
gnome2_src_compile
}
src_install() {
gnome2_src_install
if use freetts
then
java-pkg_dojar ${D}/usr/share/jar/*.jar
rm -rf ${D}/usr/share/jar
fi
}
pkg_postinst() {
einfo ""
einfo "Gnome Speech has been successfully installed. You may now use and"
einfo "control the speech interface using app-accessibility/gnopernicus."
einfo ""
einfo "Please note that gnome-speech relies on external programs that"
einfo "implement the actual text-to-speech funcionality. Supported"
einfo "implementations include festival and freetts."
einfo ""
einfo "The festival driver is always installed with gnome-speech and"
einfo "should work as-is if you install app-accessibility/festival."
einfo "The freetts driver is installed if you enable the \`freetts' USE"
einfo "flag when installing gnome-speech."
einfo ""
}
|