blob: b2a30ddfa754e37b37a118e8d9e02587722683b3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speechd/speechd-0.56-r2.ebuild,v 1.2 2006/06/05 08:16:34 eradicator Exp $
inherit eutils
DESCRIPTION="Implements /dev/speech (any text written to /dev/speech will be spoken aloud)"
HOMEPAGE="http://www.speechio.org/"
SRC_URI="http://www.speechio.org/dl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc ~x86"
IUSE="esd"
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
esd? ( media-sound/esound )
>=app-accessibility/festival-1.4.3-r1"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-catspeech-eof.patch
}
src_install() {
dobin ${S}/bin/speechd ${S}/bin/catspeech
use esd && dosed 's,#\($use_esd\),\1,g' /usr/bin/speechd
insinto /etc
doins speechd.sub speechdrc
exeinto /etc/init.d
newexe ${FILESDIR}/speechd.rc speechd
doman ${S}/man/man1/*.1
dodoc README AUTHORS CHANGELOG TODO speechio.faq
}
pkg_postinst() {
enewgroup speech
}
|