blob: 6eaf115928065b0071e46160815faa375f78dad4 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.5.ebuild,v 1.5 2008/04/27 04:08:46 drac Exp $
inherit eutils
DESCRIPTION="speech-dispatcher speech synthesis interface"
HOMEPAGE="http://www.freebsoft.org/speechd"
SRC_URI="http://www.freebsoft.org/pub/projects/speechd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="alsa flite nas pulseaudio python"
RDEPEND="dev-libs/dotconf
>=dev-libs/glib-2
alsa? ( media-libs/alsa-lib )
flite? ( app-accessibility/flite )
nas? ( media-libs/nas )
pulseaudio? ( media-sound/pulseaudio )
python? ( dev-lang/python )
app-accessibility/espeak"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
sed -i -e 's/\(SUBDIRS.*\)python/\1/' "${S}"/src/Makefile.in
}
src_compile() {
econf \
$(use_with alsa) \
$(use_with flite) \
$(use_with pulseaudio pulse) \
$(use_with nas) || die "configure failed"
make all || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die
if use python; then
cd "${S}"/src/python
./setup.py install --root="${D}" --no-compile
cd "${S}"
fi
insinto /usr/include
doins "${S}"/src/c/api/libspeechd.h
dodoc AUTHORS ChangeLog NEWS TODO
newinitd "${FILESDIR}"/speech-dispatcher speech-dispatcher
}
pkg_postinst() {
elog "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils."
}
|