blob: 5240084e2f7c89d5acee34bb4bf895abd71af86b (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/flite/flite-1.4-r1.ebuild,v 1.4 2012/04/13 20:24:43 neurogeek Exp $
EAPI="3"
inherit eutils
DESCRIPTION="Flite text to speech engine"
HOMEPAGE="http://www.speech.cs.cmu.edu/flite/index.html"
SRC_URI=" http://www.speech.cs.cmu.edu/${PN}/packed/${P}/${P}-release.tar.bz2"
LICENSE="BSD as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 -hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa oss static-libs"
DEPEND="alsa? ( >=media-libs/alsa-lib-1.0.24.1 )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${P}-release
get_audio() {
if use alsa; then
echo alsa
elif use oss; then
echo oss
else
echo none
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-fix-parallel-builds.patch
epatch "${FILESDIR}"/${P}-respect-destdir.patch
epatch "${FILESDIR}"/${P}-ldflags.patch
sed -i main/Makefile \
-e '/-rpath/s|$(LIBDIR)|$(INSTALLLIBDIR)|g' \
|| die
}
src_configure() {
local myconf
if ! use static-libs; then
myconf=--enable-shared
fi
myconf="${myconf} --with-audio=$(get_audio)"
econf ${myconf} || die "configuration failed"
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "compilation failed"
}
src_install() {
emake DESTDIR="${D}" install || die "installation failed"
dodoc ACKNOWLEDGEMENTS README || die "Documentation installation failed"
if ! use static-libs; then
rm -rf "${D}"/usr/lib*/*.a
fi
}
pkg_postinst() {
if [ "$(get_audio)" = "none" ]; then
ewarn "you have built flite without audio support."
ewarn "If you want audio support, re-emerge"
ewarn "flite with alsa or oss in your use flags."
fi
}
|