blob: 9c7fe9e0cecfcaaf7b2c7f2798328f0dc4cc56c9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/powiedz/powiedz-1.0.ebuild,v 1.13 2005/09/19 10:08:33 spock Exp $
inherit eutils
IUSE="arts esd"
DESCRIPTION="Polish speech synthesizer based on rsynth"
HOMEPAGE="http://kadu.net/index.php?page=download&lang=en"
SRC_URI="http://kadu.net/download/additions/powiedz-1.0.tgz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
RDEPEND="esd? ( media-sound/esound )
arts? ( kde-base/arts )"
DEPEND="${RDEPEND}
esd? ( dev-util/pkgconfig )"
S=${WORKDIR}/${PN}
src_compile() {
cflags=${CFLAGS}
ldlibs="-lm"
if use esd; then
ldlibs="${ldlibs} `esd-config --libs`"
defs="${defs} -DUSE_ESD=1"
cflags="${cflags} `esd-config --cflags`"
fi
if use arts; then
ldlibs="${ldlibs} `artsc-config --libs`"
defs="${defs} -DUSE_ARTS=1"
cflags="${cflags} `artsc-config --cflags`"
fi
cd ${S}
epatch ${FILESDIR}/${PN}-dsp-handle-fix.patch
emake -f Makefile_plain LDLIBS="${ldlibs}" CFLAGS="${cflags}" DEFS="${defs}" || die "make failed"
}
src_install() {
cd ${S}
exeinto /usr/bin
doexe powiedz
insinto /usr/share/applications
doins ${FILESDIR}/${PN}.desktop
}
|