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.6-r1.ebuild speech-dispatcher-0.4.1.ebuild
Date: Sat, 26 Apr 2008 03:37:10
Message-Id: E1JpbDV-000706-S4@stork.gentoo.org
1 williamh 08/04/26 03:36:49
2
3 Modified: ChangeLog
4 Added: speech-dispatcher-0.6.6-r1.ebuild
5 Removed: speech-dispatcher-0.4.1.ebuild
6 Log:
7 Fixed festival format strings for bug #218705.
8 (Portage version: 2.1.5_rc6)
9
10 Revision Changes Path
11 1.36 app-accessibility/speech-dispatcher/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 15 Apr 2008 16:33:29 -0000 1.35
24 +++ ChangeLog 26 Apr 2008 03:36:49 -0000 1.36
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-accessibility/speech-dispatcher
27 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.35 2008/04/15 16:33:29 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.36 2008/04/26 03:36:49 williamh Exp $
30 +
31 +*speech-dispatcher-0.6.6-r1 (26 Apr 2008)
32 +
33 + 26 Apr 2008; William Hubbs <williamh@g.o>
34 + +files/speech-dispatcher-0.6.6-festival-fix-formats.patch,
35 + -speech-dispatcher-0.4.1.ebuild, +speech-dispatcher-0.6.6-r1.ebuild:
36 + Rev bump for #218705, thanks to esigra@×××××.com for the patch. Also, I
37 + removed an old version.
38
39 15 Apr 2008; Jeroen Roovers <jer@g.o>
40 speech-dispatcher-0.6.6.ebuild:
41
42
43
44 1.1 app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: speech-dispatcher-0.6.6-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild,v 1.1 2008/04/26 03:36:49 williamh Exp $
54
55 inherit eutils
56
57 DESCRIPTION="speech-dispatcher speech synthesis interface"
58 HOMEPAGE="http://www.freebsoft.org/speechd"
59 SRC_URI="http://www.freebsoft.org/pub/projects/speechd/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
64 IUSE="alsa flite nas pulseaudio python"
65
66 DEPEND="dev-libs/dotconf
67 >=dev-libs/glib-2
68 dev-util/pkgconfig
69 alsa? ( media-libs/alsa-lib )
70 flite? ( app-accessibility/flite )
71 nas? ( media-libs/nas )
72 pulseaudio? ( media-sound/pulseaudio )
73 python? ( dev-lang/python )
74 app-accessibility/espeak"
75
76 src_unpack() {
77 unpack ${A}
78 sed -i -e 's/\(SUBDIRS.*\)python/\1/' "${S}"/src/Makefile.in
79 epatch "${FILESDIR}"/${P}-festival-fix-formats.patch
80 }
81
82 src_compile() {
83 econf \
84 $(use_with alsa) \
85 $(use_with flite) \
86 $(use_with pulseaudio pulse) \
87 $(use_with nas) || die "configure failed"
88 make all || die "make failed"
89 }
90
91 src_install() {
92 make DESTDIR="${D}" install || die
93
94 if use python; then
95 cd "${S}"/src/python
96 ./setup.py install --root="${D}" --no-compile
97 cd "${S}"
98 fi
99
100 insinto /usr/include
101 doins "${S}"/src/c/api/libspeechd.h
102
103 dodoc AUTHORS ChangeLog NEWS TODO
104 newinitd "${FILESDIR}"/speech-dispatcher speech-dispatcher
105 }
106
107 pkg_postinst() {
108 elog "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils."
109 }
110
111
112
113 --
114 gentoo-commits@l.g.o mailing list