Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/speech-dispatcher: ChangeLog speech-dispatcher-0.6.7.ebuild
Date: Mon, 07 Sep 2009 19:34:50
Message-Id: E1MkjzE-0003ta-JB@stork.gentoo.org
1 williamh 09/09/07 19:34:48
2
3 Modified: ChangeLog speech-dispatcher-0.6.7.ebuild
4 Log:
5 another fix for 281130.
6 (Portage version: 2.2_rc40/cvs/Linux i686)
7
8 Revision Changes Path
9 1.48 app-accessibility/speech-dispatcher/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?rev=1.48&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?rev=1.48&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?r1=1.47&r2=1.48
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v
18 retrieving revision 1.47
19 retrieving revision 1.48
20 diff -u -r1.47 -r1.48
21 --- ChangeLog 6 Sep 2009 20:32:06 -0000 1.47
22 +++ ChangeLog 7 Sep 2009 19:34:48 -0000 1.48
23 @@ -1,6 +1,15 @@
24 # ChangeLog for app-accessibility/speech-dispatcher
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.47 2009/09/06 20:32:06 williamh Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.48 2009/09/07 19:34:48 williamh Exp $
28 +
29 + 07 Sep 2009; William Hubbs <williamh@g.o>
30 + speech-dispatcher-0.6.7.ebuild,
31 + +files/speech-dispatcher-0.6.7-getline.patch,
32 + +files/speech-dispatcher-0.6.7-gnu-src-modules.patch:
33 + Another update for bug #281130.
34 + This fixes the compile warnings on a glibc 2.9 system and should fix the
35 + build
36 + for glibc 2.10 systems.
37
38 06 Sep 2009; William Hubbs <williamh@g.o>
39 speech-dispatcher-0.6.7.ebuild:
40
41
42
43 1.8 app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild?rev=1.8&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild?rev=1.8&content-type=text/plain
47 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild?r1=1.7&r2=1.8
48
49 Index: speech-dispatcher-0.6.7.ebuild
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild,v
52 retrieving revision 1.7
53 retrieving revision 1.8
54 diff -u -r1.7 -r1.8
55 --- speech-dispatcher-0.6.7.ebuild 6 Sep 2009 20:32:06 -0000 1.7
56 +++ speech-dispatcher-0.6.7.ebuild 7 Sep 2009 19:34:48 -0000 1.8
57 @@ -1,10 +1,10 @@
58 # Copyright 1999-2009 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild,v 1.7 2009/09/06 20:32:06 williamh Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.7.ebuild,v 1.8 2009/09/07 19:34:48 williamh Exp $
62
63 EAPI="2"
64
65 -inherit eutils flag-o-matic
66 +inherit autotools eutils
67
68 DESCRIPTION="speech-dispatcher speech synthesis interface"
69 HOMEPAGE="http://www.freebsoft.org/speechd"
70 @@ -27,19 +27,22 @@
71 dev-util/pkgconfig"
72
73 src_prepare() {
74 + epatch "${FILESDIR}"/${P}-getline.patch
75 + epatch "${FILESDIR}"/${P}-gnu-src-modules.patch
76 + eautoreconf
77 sed -i -e 's/\(SUBDIRS.*\)python/\1/' src/Makefile.in
78 }
79
80 src_configure() {
81 econf \
82 $(use_with alsa) \
83 + $(use_with espeak) \
84 $(use_with flite) \
85 $(use_with pulseaudio pulse) \
86 $(use_with nas) || die "configure failed"
87 }
88
89 src_compile() {
90 - append-cppflags -D_GNU_SOURCE
91 make all || die "make failed"
92 }