diff options
author | William Hubbs <williamh@gentoo.org> | 2006-11-01 01:09:04 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2006-11-01 01:09:04 +0000 |
commit | 25ba301fe89de0cb848916a9e644fc47afaa5713 (patch) | |
tree | 0af6ab6a37194d7928e47cb7c57da065eeace2d7 /app-accessibility | |
parent | Marked ppc (diff) | |
download | gentoo-2-25ba301fe89de0cb848916a9e644fc47afaa5713.tar.gz gentoo-2-25ba301fe89de0cb848916a9e644fc47afaa5713.tar.bz2 gentoo-2-25ba301fe89de0cb848916a9e644fc47afaa5713.zip |
Version bump.
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'app-accessibility')
3 files changed, 53 insertions, 1 deletions
diff --git a/app-accessibility/speech-dispatcher/ChangeLog b/app-accessibility/speech-dispatcher/ChangeLog index 38ea9ead68d1..ab24578bcd7b 100644 --- a/app-accessibility/speech-dispatcher/ChangeLog +++ b/app-accessibility/speech-dispatcher/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-accessibility/speech-dispatcher # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.17 2006/10/28 01:47:35 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.18 2006/11/01 01:09:04 williamh Exp $ + +*speech-dispatcher-0.6.1 (01 Nov 2006) + + 01 Nov 2006; William Hubbs <williamh@gentoo.org> + +speech-dispatcher-0.6.1.ebuild: + Version bump. 28 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> speech-dispatcher-0.4.1.ebuild, speech-dispatcher-0.5.ebuild, diff --git a/app-accessibility/speech-dispatcher/files/digest-speech-dispatcher-0.6.1 b/app-accessibility/speech-dispatcher/files/digest-speech-dispatcher-0.6.1 new file mode 100644 index 000000000000..653dba2aa8a0 --- /dev/null +++ b/app-accessibility/speech-dispatcher/files/digest-speech-dispatcher-0.6.1 @@ -0,0 +1,3 @@ +MD5 25db83227e8ea073c22566509d512a36 speech-dispatcher-0.6.1.tar.gz 964572 +RMD160 cadec7c2b65f1e4bed2e04d27925f251f617dc73 speech-dispatcher-0.6.1.tar.gz 964572 +SHA256 7b646ced7081270f8b400a9ad8229109d7e90463467d65cc77ef768b6b0fb2a0 speech-dispatcher-0.6.1.tar.gz 964572 diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.1.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.1.ebuild new file mode 100644 index 000000000000..5abeec110675 --- /dev/null +++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.1.ebuild,v 1.1 2006/11/01 01:09:04 williamh Exp $ + + +DESCRIPTION="speech-dispatcher speech synthesis interface" +HOMEPAGE="http://www.freebsoft.org/speechd" +SRC_URI="http://www.freebsoft.org/pub/projects/speechd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/dotconf + >=app-accessibility/flite-1.2 + >=dev-libs/glib-2 + media-libs/alsa-lib" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + sed -i -e 's/install;/install --root $(DESTDIR) --no-compile;/' ${S}/src/python/Makefile +} + +src_compile() { + econf || die "configure failed" + make all || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die + + newinitd ${FILESDIR}/speech-dispatcher speech-dispatcher + + insinto /usr/include + doins ${S}/src/c/api/libspeechd.h +} + +pkg_postinst() { + elog "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils." +} |