summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2008-03-08 21:03:29 +0000
committerWilliam Hubbs <williamh@gentoo.org>2008-03-08 21:03:29 +0000
commit3bf2bc837769a0623aa5ccbd6bc759112690d521 (patch)
tree8b2284d9515b337dfdda13cbd3f0bb2a7be34985 /app-accessibility
parentFix multilib handling, bug #208425. Fix quoting. (diff)
downloadgentoo-2-3bf2bc837769a0623aa5ccbd6bc759112690d521.tar.gz
gentoo-2-3bf2bc837769a0623aa5ccbd6bc759112690d521.tar.bz2
gentoo-2-3bf2bc837769a0623aa5ccbd6bc759112690d521.zip
Removed multiple old versions.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/espeak/ChangeLog16
-rw-r--r--app-accessibility/espeak/espeak-1.19.ebuild52
-rw-r--r--app-accessibility/espeak/espeak-1.20-r1.ebuild52
-rw-r--r--app-accessibility/espeak/espeak-1.22.ebuild71
-rw-r--r--app-accessibility/espeak/espeak-1.26-r1.ebuild64
-rw-r--r--app-accessibility/espeak/espeak-1.26.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.27.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.28.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.29.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.30.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.31.ebuild61
-rw-r--r--app-accessibility/espeak/espeak-1.34.ebuild58
-rw-r--r--app-accessibility/espeak/files/espeak-1.19-big-endian.patch30
-rw-r--r--app-accessibility/espeak/files/espeak-1.19-ppc64-segfault.patch13
-rw-r--r--app-accessibility/espeak/files/espeak-1.20-big-endian.patch30
-rw-r--r--app-accessibility/espeak/files/espeak-1.20-ppc64-segfault.patch13
-rw-r--r--app-accessibility/espeak/files/espeak-1.22-makefile.patch12
-rw-r--r--app-accessibility/espeak/files/espeak-1.26-ppc64-segfault.patch11
-rw-r--r--app-accessibility/espeak/files/espeak-1.27-ppc64-segfault.patch11
19 files changed, 15 insertions, 784 deletions
diff --git a/app-accessibility/espeak/ChangeLog b/app-accessibility/espeak/ChangeLog
index b2419e78f88c..dc07365aef91 100644
--- a/app-accessibility/espeak/ChangeLog
+++ b/app-accessibility/espeak/ChangeLog
@@ -1,6 +1,20 @@
# ChangeLog for app-accessibility/espeak
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.32 2008/03/08 18:28:56 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.33 2008/03/08 21:03:28 williamh Exp $
+
+ 08 Mar 2008; William Hubbs <williamh@gentoo.org>
+ -files/espeak-1.19-big-endian.patch,
+ -files/espeak-1.19-ppc64-segfault.patch,
+ -files/espeak-1.20-big-endian.patch,
+ -files/espeak-1.20-ppc64-segfault.patch,
+ -files/espeak-1.22-makefile.patch,
+ -files/espeak-1.26-ppc64-segfault.patch,
+ -files/espeak-1.27-ppc64-segfault.patch, -espeak-1.19.ebuild,
+ -espeak-1.20-r1.ebuild, -espeak-1.22.ebuild, -espeak-1.26.ebuild,
+ -espeak-1.26-r1.ebuild, -espeak-1.27.ebuild, -espeak-1.28.ebuild,
+ -espeak-1.29.ebuild, -espeak-1.30.ebuild, -espeak-1.31.ebuild,
+ -espeak-1.34.ebuild:
+ Major cleanup; removed several old versions.
*espeak-1.35 (08 Mar 2008)
diff --git a/app-accessibility/espeak/espeak-1.19.ebuild b/app-accessibility/espeak/espeak-1.19.ebuild
deleted file mode 100644
index 959ccdb1ac10..000000000000
--- a/app-accessibility/espeak/espeak-1.19.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.19.ebuild,v 1.6 2007/12/26 22:25:47 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack "${A}"
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Apply patch to support big-endian processors
- epatch "${FILESDIR}/${P}-big-endian.patch"
-
- # Apply patch for ppc64 segfault
- epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" install || die "Installation failed"
-
- cd "${S}"
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.20-r1.ebuild b/app-accessibility/espeak/espeak-1.20-r1.ebuild
deleted file mode 100644
index f95857b4e812..000000000000
--- a/app-accessibility/espeak/espeak-1.20-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.20-r1.ebuild,v 1.3 2007/12/26 22:25:47 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack "${A}"
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Apply patch to support big-endian processors
- epatch "${FILESDIR}/${P}-big-endian.patch"
-
- # Apply patch for ppc64 segfault
- epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd "${S}"
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.22.ebuild b/app-accessibility/espeak/espeak-1.22.ebuild
deleted file mode 100644
index 47434daa0344..000000000000
--- a/app-accessibility/espeak/espeak-1.22.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.22.ebuild,v 1.4 2007/07/15 23:02:29 mr_bones_ Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip
- mirror://gentoo/${PN}-utils-${PV}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Apply patch to support big-endian processors
- epatch "${FILESDIR}/${PN}-1.20-big-endian.patch"
-
- # Apply patch for ppc64 segfault
- epatch "${FILESDIR}/${PN}-1.20-ppc64-segfault.patch"
-
- # Let's not fail in make install
- epatch "${FILESDIR}/${P}-makefile.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${WORKDIR}/${PN}-utils-${PV}"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd "${S}/dictsource"
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- ../src/speak --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd "${S}"
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.26-r1.ebuild b/app-accessibility/espeak/espeak-1.26-r1.ebuild
deleted file mode 100644
index 9b8989edb1e4..000000000000
--- a/app-accessibility/espeak/espeak-1.26-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.26-r1.ebuild,v 1.2 2007/12/26 22:25:47 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
- epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd ../big_endian
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd ../dictsource
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.26.ebuild b/app-accessibility/espeak/espeak-1.26.ebuild
deleted file mode 100644
index f56ff6d0a5bf..000000000000
--- a/app-accessibility/espeak/espeak-1.26.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.26.ebuild,v 1.3 2007/12/26 22:28:01 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-}
-
-src_compile() {
- cd "${S}/src"
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${S}/big_endian"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd "${S}/dictsource"
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd "${S}/src"
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd "${S}"
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.27.ebuild b/app-accessibility/espeak/espeak-1.27.ebuild
deleted file mode 100644
index 13001a1b6532..000000000000
--- a/app-accessibility/espeak/espeak-1.27.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.27.ebuild,v 1.2 2007/12/26 22:25:47 phreak Exp $
-
-inherit eutils
-
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
- epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd ../big_endian
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd ../dictsource
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.28.ebuild b/app-accessibility/espeak/espeak-1.28.ebuild
deleted file mode 100644
index 24ae65919e23..000000000000
--- a/app-accessibility/espeak/espeak-1.28.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.28.ebuild,v 1.2 2007/12/26 22:25:47 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
-# epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd ../big_endian
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd ../dictsource
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.29.ebuild b/app-accessibility/espeak/espeak-1.29.ebuild
deleted file mode 100644
index 8e211a01189c..000000000000
--- a/app-accessibility/espeak/espeak-1.29.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.29.ebuild,v 1.3 2007/12/26 22:28:01 phreak Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
-# epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${S}/platforms/big_endian"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd "${S}/dictsource"
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.30.ebuild b/app-accessibility/espeak/espeak-1.30.ebuild
deleted file mode 100644
index b114cf2cceaf..000000000000
--- a/app-accessibility/espeak/espeak-1.30.ebuild
+++ /dev/null
@@ -1,61 +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/espeak/espeak-1.30.ebuild,v 1.1 2008/01/01 04:37:50 williamh Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
-# epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${S}/platforms/big_endian"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd "${S}/dictsource"
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.31.ebuild b/app-accessibility/espeak/espeak-1.31.ebuild
deleted file mode 100644
index 86907370d912..000000000000
--- a/app-accessibility/espeak/espeak-1.31.ebuild
+++ /dev/null
@@ -1,61 +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/espeak/espeak-1.31.ebuild,v 1.1 2008/01/20 02:32:19 williamh Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-
- # Add a patch for a segfault on ppc64.
-# epatch "${FILESDIR}/${P}-ppc64-segfault.patch"
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${S}/platforms/big_endian"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
- einfo "Compiling dict files"
- cd "${S}/dictsource"
- export HOME="${S}"
- local lang
- for l in *_rules; do
- lang=${l/_rules/}
- "${S}/src/speak" --compile=$lang
- done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.34.ebuild b/app-accessibility/espeak/espeak-1.34.ebuild
deleted file mode 100644
index 3a8ff2d1d61b..000000000000
--- a/app-accessibility/espeak/espeak-1.34.ebuild
+++ /dev/null
@@ -1,58 +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/espeak/espeak-1.34.ebuild,v 1.2 2008/03/08 10:08:11 corsair Exp $
-
-inherit eutils
-
-MY_P="${P}-source"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-DESCRIPTION="Speech synthesizer for English and other languages"
-HOMEPAGE="http://espeak.sourceforge.net/"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-DEPEND=">=media-libs/portaudio-18.1-r5
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
-}
-
-src_compile() {
- cd src
- emake CXXFLAGS="${CXXFLAGS}" || die "Compilation failed"
-
- einfo "Fixing byte order of phoneme data files"
- cd "${S}/platforms/big_endian"
- make
- ./espeak-phoneme-data "${S}/espeak-data"
- cp -f phondata phonindex phontab "${S}/espeak-data"
-
-# einfo "Compiling dict files"
-# cd "${S}/dictsource"
-# export HOME="${S}"
-# local lang
-# for l in *_rules; do
-# lang=${l/_rules/}
-# "${S}/src/speak" --compile=$lang
-# done
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "Installation failed"
-
- cd ..
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/files/espeak-1.19-big-endian.patch b/app-accessibility/espeak/files/espeak-1.19-big-endian.patch
deleted file mode 100644
index c69a3cee463c..000000000000
--- a/app-accessibility/espeak/files/espeak-1.19-big-endian.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- src/Makefile 2007-01-26 03:20:06.000000000 -0600
-+++ src/Makefile 2007-02-06 20:37:41.000000000 -0600
-@@ -39,9 +39,6 @@
- LIBS3=-lstdc++ ./libespeak.so
-
- CXXFLAGS=-O2
--ifeq ($(shell uname -m), ppc)
-- CXXFLAGS += -D ARCH_BIG
--endif
-
-
- all: $(BIN_NAME) $(LIB_NAME) $(BIN2_NAME)
---- src/speech.h 2007-01-26 03:11:59.000000000 -0600
-+++ src/speech.h 2007-02-06 20:41:11.000000000 -0600
-@@ -18,9 +18,15 @@
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
- ***************************************************************************/
-
-+#include <sys/types.h>
-+
- // conditional compilation options
-
-
-+#if defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN
-+#define ARCH_BIG
-+#endif
-+
- #define PLATFORM_POSIX
- #define PATHSEP '/'
- #define USE_PORTAUDIO
diff --git a/app-accessibility/espeak/files/espeak-1.19-ppc64-segfault.patch b/app-accessibility/espeak/files/espeak-1.19-ppc64-segfault.patch
deleted file mode 100644
index ac39760ebcf3..000000000000
--- a/app-accessibility/espeak/files/espeak-1.19-ppc64-segfault.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/speak_lib.cpp 2007-02-01 19:34:01.360979913
-+0000
-+++ src/speak_lib.cpp 2007-02-01 19:34:13.708979913
-+0000
-@@ -238,7 +238,7 @@
- char *Alloc(int size)
- {//==================
- char *p;
-- if((p = (char *)malloc(size)) == NULL)
-+ if((p = (char *)malloc(size+1)) == NULL)
- fprintf(stderr,"Can't allocate memory\n");
- return(p);
- }
diff --git a/app-accessibility/espeak/files/espeak-1.20-big-endian.patch b/app-accessibility/espeak/files/espeak-1.20-big-endian.patch
deleted file mode 100644
index c69a3cee463c..000000000000
--- a/app-accessibility/espeak/files/espeak-1.20-big-endian.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- src/Makefile 2007-01-26 03:20:06.000000000 -0600
-+++ src/Makefile 2007-02-06 20:37:41.000000000 -0600
-@@ -39,9 +39,6 @@
- LIBS3=-lstdc++ ./libespeak.so
-
- CXXFLAGS=-O2
--ifeq ($(shell uname -m), ppc)
-- CXXFLAGS += -D ARCH_BIG
--endif
-
-
- all: $(BIN_NAME) $(LIB_NAME) $(BIN2_NAME)
---- src/speech.h 2007-01-26 03:11:59.000000000 -0600
-+++ src/speech.h 2007-02-06 20:41:11.000000000 -0600
-@@ -18,9 +18,15 @@
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
- ***************************************************************************/
-
-+#include <sys/types.h>
-+
- // conditional compilation options
-
-
-+#if defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN
-+#define ARCH_BIG
-+#endif
-+
- #define PLATFORM_POSIX
- #define PATHSEP '/'
- #define USE_PORTAUDIO
diff --git a/app-accessibility/espeak/files/espeak-1.20-ppc64-segfault.patch b/app-accessibility/espeak/files/espeak-1.20-ppc64-segfault.patch
deleted file mode 100644
index ac39760ebcf3..000000000000
--- a/app-accessibility/espeak/files/espeak-1.20-ppc64-segfault.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/speak_lib.cpp 2007-02-01 19:34:01.360979913
-+0000
-+++ src/speak_lib.cpp 2007-02-01 19:34:13.708979913
-+0000
-@@ -238,7 +238,7 @@
- char *Alloc(int size)
- {//==================
- char *p;
-- if((p = (char *)malloc(size)) == NULL)
-+ if((p = (char *)malloc(size+1)) == NULL)
- fprintf(stderr,"Can't allocate memory\n");
- return(p);
- }
diff --git a/app-accessibility/espeak/files/espeak-1.22-makefile.patch b/app-accessibility/espeak/files/espeak-1.22-makefile.patch
deleted file mode 100644
index d69f26ad5bc2..000000000000
--- a/app-accessibility/espeak/files/espeak-1.22-makefile.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -NrudpB espeak-1.22-source/src/Makefile espeak-1.22-source-patched/src/Makefile
---- espeak-1.22-source/src/Makefile 2007-04-04 07:39:47.000000000 -0500
-+++ espeak-1.22-source-patched/src/Makefile 2007-04-19 21:57:19.000000000 -0500
-@@ -75,7 +75,7 @@ distclean: clean
-
- install: all
- # Create directories
-- rm -r $(DESTDIR)$(DATADIR)
-+ rm -rf $(DESTDIR)$(DATADIR)
- $(MKDIR) $(DESTDIR)$(BINDIR)
- $(MKDIR) $(DESTDIR)$(LIBDIR)
- $(MKDIR) $(DESTDIR)$(INCDIR)
diff --git a/app-accessibility/espeak/files/espeak-1.26-ppc64-segfault.patch b/app-accessibility/espeak/files/espeak-1.26-ppc64-segfault.patch
deleted file mode 100644
index d27e5e8baf08..000000000000
--- a/app-accessibility/espeak/files/espeak-1.26-ppc64-segfault.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/speak_lib.cpp 2007-06-09 16:56:51.000000000 -0500
-+++ src/speak_lib.cpp 2007-06-09 17:02:19.000000000 -0500
-@@ -264,7 +264,7 @@
- char *Alloc(int size)
- {//==================
- char *p;
-- if((p = (char *)malloc(size)) == NULL)
-+ if((p = (char *)malloc(size+1)) == NULL)
- fprintf(stderr,"Can't allocate memory\n");
- return(p);
- }
diff --git a/app-accessibility/espeak/files/espeak-1.27-ppc64-segfault.patch b/app-accessibility/espeak/files/espeak-1.27-ppc64-segfault.patch
deleted file mode 100644
index d27e5e8baf08..000000000000
--- a/app-accessibility/espeak/files/espeak-1.27-ppc64-segfault.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/speak_lib.cpp 2007-06-09 16:56:51.000000000 -0500
-+++ src/speak_lib.cpp 2007-06-09 17:02:19.000000000 -0500
-@@ -264,7 +264,7 @@
- char *Alloc(int size)
- {//==================
- char *p;
-- if((p = (char *)malloc(size)) == NULL)
-+ if((p = (char *)malloc(size+1)) == NULL)
- fprintf(stderr,"Can't allocate memory\n");
- return(p);
- }