blob: 113b00b7a15568667fc3c4cf49bcf6ee0858505e (
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
|
# Copyright 1999-2004 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.4.1.ebuild,v 1.5 2004/09/28 18:27:58 eradicator Exp $
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="x86 ~ppc amd64"
IUSE=""
DEPEND="dev-libs/dotconf
>=app-accessibility/flite-1.2
>=dev-libs/glib-2
media-libs/alsa-lib"
src_install() {
make DESTDIR=${D} install || die
exeinto /etc/init.d
doexe ${FILESDIR}/speech-dispatcher
insinto /usr/include
doins ${S}/src/c/api/libspeechd.h
}
pkg_postinst() {
echo
einfo "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils."
echo
}
|