blob: 1d55940c53f2e42779fe3632c27addf112966541 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/speech-tools-1.2.96_beta.ebuild,v 1.13 2009/05/12 17:14:05 ssuominen Exp $
inherit eutils toolchain-funcs
MY_P=${P/speech-/speech_}
MY_P=${MY_P/_beta/-beta}
DESCRIPTION="Speech tools for Festival Text to Speech engine"
HOMEPAGE="http://www.cstr.ed.ac.uk/projects/speech_tools/"
SRC_URI="http://www.festvox.org/packed/festival/latest/${MY_P}.tar.gz"
LICENSE="FESTIVAL BSD as-is"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="esd nas X"
DEPEND="esd? ( media-sound/esound )
nas? ( media-libs/nas )
X? ( x11-libs/libX11
x11-libs/libXt )
!<app-accessibility/festival-1.96_beta
!sys-power/powerman"
S="${WORKDIR}/speech_tools"
src_unpack() {
local CONFIG=${S}/config/config.in
unpack ${A}
# apply patches for gcc 4.2 and gcc 4.3
epatch "${FILESDIR}"/${P}-gcc42.patch
epatch "${FILESDIR}"/${P}-gcc43-include.patch
# set compiler flags for base_class
sed -i -e "s:-O3:\$(OPTIMISE_CXXFLAGS):" "${S}"/base_class/Makefile
# enable building shared libraries
sed -i -e "s/#.*\(SHARED=2\)/\1/" ${CONFIG}
use esd && sed -i -e "s/#.*\(INCLUDE_MODULES += ESD_AUDIO\)/\1/" ${CONFIG}
use nas && sed -i -e "s/#.*\(INCLUDE_MODULES += NAS_AUDIO\)/\1/" ${CONFIG}
use X || sed -i -e "s/-lX11 -lXt//" "${S}"/config/modules/esd_audio.mak
}
src_compile() {
econf || die
emake -j1 OPTIMISE_CXXFLAGS="${CXXFLAGS}" OPTIMISE_CCFLAGS="${CFLAGS}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
}
src_install() {
dolib.so lib/libest*.so.1*
dosym libestbase.so.1.2.96.1 /usr/$(get_libdir)/libestbase.so
dosym libestools.so.1.2.96.1 /usr/$(get_libdir)/libestools.so
dosym libeststring.so.1.2 /usr/$(get_libdir)/libeststring.so
dolib.a lib/{libestbase.a,libestools.a,libeststring.a}
cd bin
for file in *; do
[ "${file}" = "Makefile" ] && continue
dobin ${file}
dstfile="/usr/bin/${file}"
dosed "s:${S}/testsuite/data:/usr/share/speech-tools/testsuite:g" ${dstfile}
dosed "s:${S}/bin:/usr/$(get_libdir)/speech-tools:g" ${dstfile}
dosed "s:${S}/main:/usr/$(get_libdir)/speech-tools:g" ${dstfile}
# This just changes LD_LIBRARY_PATH
dosed "s:${S}/lib:/usr/$(get_libdir):g" ${dstfile}
done
cd "${S}"
exeinto /usr/$(get_libdir)/speech-tools
for file in `find main -perm +100 -type f`; do
doexe ${file}
done
insinto /usr/share/speech-tools
doins -r config
insinto /usr/share/speech-tools/lib
doins -r lib/siod
insinto /usr/share/doc/${PF}
doins -r lib/example_data
cd include
insinto /usr/include/speech-tools
doins -r *
dosym /usr/include/speech-tools /usr/share/speech-tools/include
cd "${S}"
dodoc "${S}"/README
dodoc "${S}"/lib/cstrutt.dtd
}
|