blob: 4a751febf26708cd49da8011a67e64afa1bf8630 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/flite/flite-1.2.ebuild,v 1.8 2004/06/25 15:57:07 vapier Exp $
DESCRIPTION="Flite text to speech engine"
HOMEPAGE="http://www.speech.cs.cmu.edu/flite/index.html"
SRC_URI="http://www.speech.cs.cmu.edu/flite/packed/${P}/${P}-release.tar.bz2
http://www.speech.cs.cmu.edu/flite/packed/${P}/${PN}_lexfix.tar.gz"
LICENSE="BSD as-is"
SLOT="0"
KEYWORDS="x86 ~ppc ~amd64"
IUSE="static"
RDEPEND="virtual/libc"
S=${WORKDIR}/${P}-release
src_unpack() {
unpack ${P}-release.tar.bz2
unpack ${PN}_lexfix.tar.gz
# Move the update into ${S}
cd ${PN}
tar -cf - . | (cd ${S}; tar -xf -)
}
src_compile() {
local myconf
if ! use static ; then
myconf="${myconf} --enable-shared"
fi
econf ${myconf} || die "Failed configuration"
# -j2 borks when we make the shared libs
emake -j1 || die "Failed compilation"
}
src_install() {
dobin bin/* || die
dodoc ACKNOWLEDGEMENTS README
if use static ; then
dolib.a lib/*.a
else
for lib in lib/*.so*; do
if [ -f ${lib} ]; then
dolib.so ${lib}
lib=`basename ${lib}`
majlib=`echo ${lib} | sed 's:\(\.so\.[0-9]\)\(\.[0-9]*\)*$:\1:'`
noverlib=`echo ${lib} | sed 's:\(\.so\)\(\.[0-9]*\)*$:\1:'`
dosym ${lib} /usr/lib/${majlib}
dosym ${lib} /usr/lib/${noverlib}
fi
done
fi
insinto /usr/include/flite
cd ${S}/include
for file in *.h; do
doins ${file}
dosed 's:#include "\(.*\)":#include <flite/\1>:g' /usr/include/flite/${file}
done
dosym flite/flite.h /usr/include/flite.h
}
|