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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival/festival-1.95_beta.ebuild,v 1.7 2006/09/26 02:18:25 weeve Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Festival Text to Speech engine"
HOMEPAGE="http://www.cstr.ed.ac.uk/"
SITE="http://www.cstr.ed.ac.uk/downloads/${PN}/${PV/_beta//}"
MY_P=${PN}-1.95-beta
SRC_URI="${SITE}/${MY_P}.tar.gz
${SITE}/speech_tools-1.2.95-beta.tar.gz
${SITE}/festlex_POSLEX.tar.gz
${SITE}/festlex_CMU.tar.gz
${SITE}/festlex_OALD.tar.gz
${SITE}/festvox_rablpc16k.tar.gz
${SITE}/festvox_don.tar.gz
${SITE}/festvox_kallpc16k.tar.gz
${SITE}/festvox_kedlpc16k.tar.gz
${SITE}/festvox_cmu_us_bdl_arctic_hts.tar.gz
${SITE}/festvox_cmu_us_slt_arctic_hts.tar.gz
${SITE}/festvox_cmu_us_jmk_arctic_hts.tar.gz
${SITE}/festvox_cmu_us_awb_arctic_hts.tar.gz
linguas_es? ( ${SITE}/festvox_ellpc11k.tar.gz )
mbrola? (
${SITE}/festvox_en1.tar.gz
${SITE}/festvox_us1.tar.gz
${SITE}/festvox_us2.tar.gz
${SITE}/festvox_us3.tar.gz )"
LICENSE="FESTIVAL BSD as-is"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 sparc ~x86"
IUSE="asterisk esd linguas_es mbrola X"
RDEPEND="sys-libs/ncurses
mbrola? ( >=app-accessibility/mbrola-3.0.1h-r2 )"
DEPEND="${RDEPEND}
sys-apps/sed"
S=${WORKDIR}
src_unpack() {
unpack ${A}
use asterisk && epatch ${FILESDIR}/${P}-asterisk.patch
use esd && sed -i -e 's/# \(INCLUDE_MODULES += ESD_AUDIO\)/\1/' ${S}/speech_tools/config/config.in
use X || sed -i -e 's/-lX11 -lXt//' ${S}/speech_tools/config/modules/esd_audio.mak
# testsuite still fails to build under gcc-3.2
# sed -i '/^BUILD_DIRS =/s/testsuite//' ${S}/Makefile || die
sed -i -e "/^const char \*festival_libdir/s:FTLIBDIR:\"/usr/share/festival\":" ${S}/festival/src/arch/festival/festival.cc
sed -i -e '/^MODULE_LIBS/s/-ltermcap/-lncurses/' ${S}/festival/config/modules/editline.mak || die
# Fix hardcoded path for examples that will be finally installed in /usr/$(get_libdir)/festival/examples
sed -i -e "s:\.\./examples/:/usr/share/doc/${PF}/examples/:" ${S}/festival/lib/festival.scm
# gcc 4.1 compatibility patches
epatch ${FILESDIR}/${P}-gcc41.patch
if use amd64; then
epatch ${FILESDIR}/${P}-gcc41-amd64.patch
epatch ${FILESDIR}/${P}-gcc41-amd64-int-pointer.patch
fi
}
src_compile() {
cd ${S}/speech_tools
econf || die
emake -j1 OPTIMISE_CXXFLAGS="${CXXFLAGS}" OPTIMISE_CCFLAGS="${CFLAGS}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
cd ${S}/festival
econf || die
emake -j1 PROJECT_LIBDEPS="" REQUIRED_LIBDEPS="" LOCAL_LIBDEPS="" OPTIMISE_CXXFLAGS="${CXXFLAGS}" OPTIMISE_CCFLAGS="${CFLAGS}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
}
src_install() {
# Install the binaries
dobin ${S}/festival/src/main/festival
dobin ${S}/festival/lib/etc/*Linux*/audsp
# Install the main libraries
insinto /usr/share/festival
doins ${S}/festival/lib/*
# Install the examples
insinto /usr/share/doc/${PF}/examples/
doins -r ${S}/festival/examples/*
# Need to fix saytime, etc. to look for festival in the correct spot
for ex in ${D}/usr/share/doc/${PF}/examples/*.sh; do
exnoext=${ex%%.sh}
chmod a+x ${exnoext}
dosed "s:${S}/festival/bin/festival:/usr/bin/festival:" ${exnoext##$D}
done
# Install the header files
insinto /usr/include/festival
doins ${S}/festival/src/include/*.h
# Install the dicts
insinto /usr/share/festival/dicts
doins -r ${S}/festival/lib/dicts/*
# Installs all existing voices, no matter what language.
insinto /usr/share/festival/voices
doins -r ${S}/festival/lib/voices/*
# Sample server.scm configuration for the server
insinto /etc/festival
doins ${FILESDIR}/server.scm
# Install the init script
exeinto /etc/init.d
newexe ${FILESDIR}/festival.rc festival
use mbrola && mbrola_voices
# Install the docs
dodoc ${S}/festival/{ACKNOWLEDGMENTS,NEWS,README}
doman ${S}/festival/doc/{festival.1,festival_client.1}
}
pkg_postinst() {
einfo
einfo " Useful examples include saytime, text2wave. For example, try:"
einfo " \"/usr/share/doc/${PF}/examples/saytime\""
einfo
einfo " Or for something more fun:"
einfo ' "echo "Gentoo can speak" | festival --tts"'
einfo
einfo " To enable the festival server at boot, run"
einfo " rc-update add festival default"
einfo
einfo " You must setup the server's port, access list, etc in this file:"
einfo " /etc/festival/server.scm"
einfo
}
# Fix mbrola databases: create symbolic links from festival voices
# directories to MBROLA install dirs.
mbrola_voices() {
# This is in case there is no mbrola voice for a particular language.
local shopts=$(shopt -p nullglob)
shopt -s nullglob
# This assumes all mbrola voices are named after the voices defined
# in MBROLA, i.e. if MBROLA contains a voice fr1, then the Festival
# counterpart should be named fr1_mbrola.
for language in ${S}/festival/lib/voices/*; do
for mvoice in ${language}/*_mbrola; do
voice=${mvoice##*/}
database=${voice%%_mbrola}
dosym /opt/mbrola/${database} /usr/share/festival/voices/${language##*/}/${voice}/${database}
done
done
# Restore shopts
${shopts}
}
|