summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2010-03-03 06:29:07 +0000
committerWilliam Hubbs <williamh@gentoo.org>2010-03-03 06:29:07 +0000
commit9b7bcb89dc7b18dcf591c147d0220dba2f1a5b99 (patch)
tree24734c7f70528c57f5c9d3e731b4a6d1582778ce /app-accessibility
parentCleaned up the patchset again and restricted this version of (diff)
downloadgentoo-2-9b7bcb89dc7b18dcf591c147d0220dba2f1a5b99.tar.gz
gentoo-2-9b7bcb89dc7b18dcf591c147d0220dba2f1a5b99.tar.bz2
gentoo-2-9b7bcb89dc7b18dcf591c147d0220dba2f1a5b99.zip
removed old versions
(Portage version: 2.2_rc63/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/speech-dispatcher/ChangeLog7
-rw-r--r--app-accessibility/speech-dispatcher/files/speech-dispatcher-0.6.6-festival-fix-formats.patch16
-rw-r--r--app-accessibility/speech-dispatcher/speech-dispatcher-0.6.5.ebuild59
-rw-r--r--app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild60
4 files changed, 6 insertions, 136 deletions
diff --git a/app-accessibility/speech-dispatcher/ChangeLog b/app-accessibility/speech-dispatcher/ChangeLog
index 58c42dd06f57..7984e4b862cc 100644
--- a/app-accessibility/speech-dispatcher/ChangeLog
+++ b/app-accessibility/speech-dispatcher/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-accessibility/speech-dispatcher
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.65 2010/03/03 06:16:25 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/ChangeLog,v 1.66 2010/03/03 06:29:06 williamh Exp $
+
+ 03 Mar 2010; William Hubbs <williamh@gentoo.org>
+ -speech-dispatcher-0.6.5.ebuild, -speech-dispatcher-0.6.6-r1.ebuild,
+ -files/speech-dispatcher-0.6.6-festival-fix-formats.patch:
+ removed several old versions
03 Mar 2010; William Hubbs <williamh@gentoo.org>
speech-dispatcher-0.6.7.ebuild, speech-dispatcher-0.6.7-r1.ebuild:
diff --git a/app-accessibility/speech-dispatcher/files/speech-dispatcher-0.6.6-festival-fix-formats.patch b/app-accessibility/speech-dispatcher/files/speech-dispatcher-0.6.6-festival-fix-formats.patch
deleted file mode 100644
index fa240fda8d86..000000000000
--- a/app-accessibility/speech-dispatcher/files/speech-dispatcher-0.6.6-festival-fix-formats.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- speech-dispatcher-0.6.6/src/modules/festival.c 2008-02-08 11:01:09.000000000 +0100
-+++ speech-dispatcher-0.6.6.modified/src/modules/festival.c 2008-04-21 11:18:31.000000000 +0200
-@@ -691,5 +691,5 @@
-
- if (fwave->num_samples != 0){
-- DBG("Sending message to audio: %ld bytes\n",
-+ DBG("Sending message to audio: %u bytes\n",
- (fwave->num_samples) * sizeof(short));
-
-@@ -899,5 +899,5 @@
- TCounterEntry *centry;
-
-- DBG("Cache: cleaning, cache size %ld kbytes (>max %d).", FestivalCache.size/1024,
-+ DBG("Cache: cleaning, cache size %zu kbytes (>max %d).", FestivalCache.size/1024,
- FestivalCacheMaxKBytes);
-
diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.5.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.5.ebuild
deleted file mode 100644
index 6eaf11592806..000000000000
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.5.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2008 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.5.ebuild,v 1.5 2008/04/27 04:08:46 drac Exp $
-
-inherit eutils
-
-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="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE="alsa flite nas pulseaudio python"
-
-RDEPEND="dev-libs/dotconf
- >=dev-libs/glib-2
- alsa? ( media-libs/alsa-lib )
- flite? ( app-accessibility/flite )
- nas? ( media-libs/nas )
- pulseaudio? ( media-sound/pulseaudio )
- python? ( dev-lang/python )
- app-accessibility/espeak"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- sed -i -e 's/\(SUBDIRS.*\)python/\1/' "${S}"/src/Makefile.in
-}
-
-src_compile() {
- econf \
- $(use_with alsa) \
- $(use_with flite) \
- $(use_with pulseaudio pulse) \
- $(use_with nas) || die "configure failed"
- make all || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- if use python; then
- cd "${S}"/src/python
- ./setup.py install --root="${D}" --no-compile
- cd "${S}"
- fi
-
- insinto /usr/include
- doins "${S}"/src/c/api/libspeechd.h
-
- dodoc AUTHORS ChangeLog NEWS TODO
- newinitd "${FILESDIR}"/speech-dispatcher speech-dispatcher
-}
-
-pkg_postinst() {
- elog "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils."
-}
diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild
deleted file mode 100644
index 2003e49da818..000000000000
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2008 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.6-r1.ebuild,v 1.2 2008/04/27 04:08:46 drac Exp $
-
-inherit eutils
-
-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="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE="alsa flite nas pulseaudio python"
-
-RDEPEND="dev-libs/dotconf
- >=dev-libs/glib-2
- alsa? ( media-libs/alsa-lib )
- flite? ( app-accessibility/flite )
- nas? ( media-libs/nas )
- pulseaudio? ( media-sound/pulseaudio )
- python? ( dev-lang/python )
- app-accessibility/espeak"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- sed -i -e 's/\(SUBDIRS.*\)python/\1/' "${S}"/src/Makefile.in
- epatch "${FILESDIR}"/${P}-festival-fix-formats.patch
-}
-
-src_compile() {
- econf \
- $(use_with alsa) \
- $(use_with flite) \
- $(use_with pulseaudio pulse) \
- $(use_with nas) || die "configure failed"
- make all || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- if use python; then
- cd "${S}"/src/python
- ./setup.py install --root="${D}" --no-compile
- cd "${S}"
- fi
-
- insinto /usr/include
- doins "${S}"/src/c/api/libspeechd.h
-
- dodoc AUTHORS ChangeLog NEWS TODO
- newinitd "${FILESDIR}"/speech-dispatcher speech-dispatcher
-}
-
-pkg_postinst() {
- elog "To enable Festival support, you must install app-accessibility/festival-freebsoft-utils."
-}