blob: 84e50c1fcdd49dfe125c950f38769e29a6e85814 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/speech-tools-1.2.3.ebuild,v 1.9 2004/05/25 20:06:56 squinky86 Exp $
inherit eutils fixheadtails gcc
MY_P=${P/-/_}
DESCRIPTION="Speech tools for Festival Text to Speech engine"
HOMEPAGE="http://www.cstr.ed.ac.uk/"
SRC_URI="http://www.cstr.ed.ac.uk/download/festival/1.4.3/${MY_P}-release.tar.gz
doc? ( http://www.cstr.ed.ac.uk/download/festival/1.4.3/festdoc-1.4.2.tar.gz )"
LICENSE="FESTIVAL BSD as-is"
SLOT="0"
KEYWORDS="x86 ~ppc sparc amd64"
IUSE="doc"
RDEPEND="virtual/glibc"
S="${WORKDIR}/speech_tools"
src_unpack() {
unpack ${MY_P}-release.tar.gz
cd ${S}
use doc && unpack festdoc-1.4.2.tar.gz && mv festdoc-1.4.2 festdoc
if [ "$(gcc-version)" == "3.3" ]; then
epatch ${FILESDIR}/${PN}-gcc3.3.diff
fi
if [ "$(gcc-version)" == "3.4" ]; then
epatch ${FILESDIR}/${PV}-gcc3.4.patch
fi
ht_fix_file config.guess
sed -i 's:-O3:$(OPTIMISE_CXXFLAGS):' base_class/Makefile
# Compile fix for #41329.
sed -i 's/-fpic/-fPIC/' config/compilers/gcc_defaults.mak
}
src_compile() {
econf || die
emake -j1 \
OPTIMISE_CXXFLAGS="${CXXFLAGS}" \
OPTIMISE_CCFLAGS="${CFLAGS}" \
|| die
}
src_install() {
into /usr/lib/speech-tools
cd ${S}/bin
rm -f Makefile
dodir /usr/lib/speech-tools/share/testsuite
for file in * ; do
dobin ${file}
dosed "s:${S}/testsuite/data:/usr/lib/speech-tools/share/testsuite:g" /usr/lib/speech-tools/bin/${file} testsuite/data
dosed "s:${S}/bin:/usr/lib/speech-tools/bin:g" /usr/lib/speech-tools/bin/${file}
dosed "s:${S}/main:/usr/lib/speech-tools/bin:g" /usr/lib/speech-tools/bin/${file}
dosed "s:${S}/lib:/usr/lib/speech-tools/lib:g" /usr/lib/speech-tools/bin/${file}
done
cd ${S}/lib
dolib.so libestbase.so.1.2.3.1
dosym /usr/lib/speech-tools/lib/libestbase.so.1.2.3.1 /usr/lib/speech-tools/lib/libestbase.so
dolib.so libeststring.so.1.2
dosym /usr/lib/speech-tools/lib/libeststring.so.1.2 /usr/lib/speech-tools/lib/libeststring.so
dolib.a libestbase.a
dolib.a libestools.a
dolib.a libeststring.a
insinto /usr/lib/speech-tools/lib/siod
cd ${S}/lib/siod
doins *
insinto /usr/share/doc/${PF}/example_data
cd ${S}/lib/example_data
doins *
cd ${S}
find config -print | cpio -pmd ${D}/usr/lib/speech-tools
find include -print | cpio -pmd ${D}/usr/lib/speech-tools
insinto /etc/env.d
doins ${FILESDIR}/58speech-tools
cd ${S}
dodoc README INSTALL
cd ${S}/lib
dodoc cstrutt.dtd
if use doc ; then
cd ${S}/festdoc/speech_tools/doc
dohtml *
fi
}
|