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