summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-03-16 18:00:18 +0000
committerWilliam Hubbs <williamh@gentoo.org>2011-03-16 18:00:18 +0000
commita8cb9d8dbd0c49c60eaa4bdd690e8855464eee81 (patch)
tree0f66f8c603091bc0cc747816a1aebfb2e524944e /app-accessibility
parentppc/ppc64 stable wrt #348574 (diff)
downloadgentoo-2-a8cb9d8dbd0c49c60eaa4bdd690e8855464eee81.tar.gz
gentoo-2-a8cb9d8dbd0c49c60eaa4bdd690e8855464eee81.tar.bz2
gentoo-2-a8cb9d8dbd0c49c60eaa4bdd690e8855464eee81.zip
remove old versions
(Portage version: 2.2.0_alpha27/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/espeak/ChangeLog8
-rw-r--r--app-accessibility/espeak/espeak-1.40.02.ebuild80
-rw-r--r--app-accessibility/espeak/espeak-1.41.01.ebuild78
-rw-r--r--app-accessibility/espeak/espeak-1.43.ebuild80
-rw-r--r--app-accessibility/espeak/espeak-1.44.05.ebuild82
-rw-r--r--app-accessibility/espeak/espeak-1.45.01.ebuild73
-rw-r--r--app-accessibility/espeak/files/espeak-1.44.05-respect-ldflags.patch27
-rw-r--r--app-accessibility/espeak/files/espeak-1.45.01-fix-libname.patch22
8 files changed, 7 insertions, 443 deletions
diff --git a/app-accessibility/espeak/ChangeLog b/app-accessibility/espeak/ChangeLog
index 8023892e4c87..ae123c49bd08 100644
--- a/app-accessibility/espeak/ChangeLog
+++ b/app-accessibility/espeak/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-accessibility/espeak
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.93 2011/03/16 17:40:33 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.94 2011/03/16 18:00:18 williamh Exp $
+
+ 16 Mar 2011; William Hubbs <williamh@gentoo.org> -espeak-1.40.02.ebuild,
+ -espeak-1.41.01.ebuild, -espeak-1.43.ebuild, -espeak-1.44.05.ebuild,
+ -files/espeak-1.44.05-respect-ldflags.patch, -espeak-1.45.01.ebuild,
+ -files/espeak-1.45.01-fix-libname.patch:
+ remove old versions
*espeak-1.45.02 (16 Mar 2011)
diff --git a/app-accessibility/espeak/espeak-1.40.02.ebuild b/app-accessibility/espeak/espeak-1.40.02.ebuild
deleted file mode 100644
index 85286e9df4bf..000000000000
--- a/app-accessibility/espeak/espeak-1.40.02.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.40.02.ebuild,v 1.11 2009/11/01 18:49:54 eva 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 ia64 ppc ppc64 sparc x86"
-IUSE="portaudio pulseaudio"
-RDEPEND="portaudio? ( >=media-libs/portaudio-18.1-r5 )
- pulseaudio? ( media-sound/pulseaudio )"
- DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-get_audio() {
- local MY_AUDIO
-
- MY_AUDIO=none
- if use portaudio; then
- MY_AUDIO=portaudio
- elif use pulseaudio; then
- MY_AUDIO=pulseaudio
- fi
- echo ${MY_AUDIO}
-}
-
-pkg_setup() {
- if ! use portaudio && ! use pulseaudio; then
- ewarn
- ewarn Since portaudio and pulseaudio are not in your use flags,
- ewarn espeak will only be able to create wav files.
- ewarn If this is not what you want, press ctrl-c and put either
- ewarn portaudio or pulseaudio in your use flags.
- ebeep
- epause 10
- elif use portaudio && use pulseaudio; then
- die "You must choose either portaudio or pulseaudio, but not both."
- fi
-}
-
-src_unpack() {
- unpack ${A}
-
- # portaudio.h is by default the same as portaudio18.h, but use the version
- # 19 API if available
- if use portaudio; then
- if has_version "=media-libs/portaudio-19*" ; then
- mv -f "${S}/src/portaudio19.h" "${S}/src/portaudio.h"
- fi
- fi
-}
-
-src_compile() {
- cd src
- emake AUDIO="$(get_audio)" CXXFLAGS="${CXXFLAGS}" all || 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"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" AUDIO="$(get_audio)" install || die "Installation failed"
-
- cd ..
- insinto /usr/share/espeak-data
- doins -r dictsource
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.41.01.ebuild b/app-accessibility/espeak/espeak-1.41.01.ebuild
deleted file mode 100644
index 50dba92c01b7..000000000000
--- a/app-accessibility/espeak/espeak-1.41.01.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.41.01.ebuild,v 1.3 2009/11/01 18:49:54 eva Exp $
-
-EAPI="2"
-
-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 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="portaudio pulseaudio"
-RDEPEND="portaudio? ( >=media-libs/portaudio-19_pre20071207 )
- pulseaudio? ( media-sound/pulseaudio )"
- DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-get_audio() {
- local MY_AUDIO
-
- MY_AUDIO=none
- if use portaudio; then
- MY_AUDIO=portaudio
- elif use pulseaudio; then
- MY_AUDIO=pulseaudio
- fi
- echo ${MY_AUDIO}
-}
-
-pkg_setup() {
- if ! use portaudio && ! use pulseaudio; then
- ewarn
- ewarn Since portaudio and pulseaudio are not in your use flags,
- ewarn espeak will only be able to create wav files.
- ewarn If this is not what you want, press ctrl-c and put either
- ewarn portaudio or pulseaudio in your use flags.
- ebeep
- epause 10
- elif use portaudio && use pulseaudio; then
- die "You must choose either portaudio or pulseaudio, but not both."
- fi
-}
-
-src_prepare() {
- cd src
- # gentoo uses portaudio 19.
- if use portaudio; then
- mv -f portaudio19.h portaudio.h
- fi
-}
-
-src_compile() {
- cd src
- emake AUDIO="$(get_audio)" CXXFLAGS="${CXXFLAGS}" all || 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"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" AUDIO="$(get_audio)" install || die "Installation failed"
-
- cd ..
- insinto /usr/share/espeak-data
- doins -r dictsource
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
diff --git a/app-accessibility/espeak/espeak-1.43.ebuild b/app-accessibility/espeak/espeak-1.43.ebuild
deleted file mode 100644
index 96cfe775ac94..000000000000
--- a/app-accessibility/espeak/espeak-1.43.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.43.ebuild,v 1.1 2010/02/17 06:03:31 williamh Exp $
-
-EAPI="3"
-
-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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="portaudio pulseaudio"
-RDEPEND="portaudio? ( >=media-libs/portaudio-19_pre20071207 )
- pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-get_audio() {
- local MY_AUDIO
-
- if use portaudio; then
- MY_AUDIO=portaudio
- elif use pulseaudio; then
- MY_AUDIO=pulseaudio
- else
- MY_AUDIO=none
- fi
- echo ${MY_AUDIO}
-}
-
-pkg_setup() {
- if use portaudio && use pulseaudio; then
- die "You must choose either portaudio or pulseaudio, but not both."
- fi
-}
-
-src_prepare() {
- cd src
- # gentoo uses portaudio 19.
- if use portaudio; then
- mv -f portaudio19.h portaudio.h
- fi
-}
-
-src_compile() {
- cd src
- emake PREFIX="${EPREFIX}/usr" AUDIO="$(get_audio)" CXXFLAGS="${CXXFLAGS}" all || 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"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="\$(PREFIX)/$(get_libdir)" AUDIO="$(get_audio)" install || die "Installation failed"
-
- cd ..
- insinto /usr/share/espeak-data
- doins -r dictsource
- dodoc ChangeLog ReadMe
- dohtml -r docs/*
-}
-
-pkg_postinst() {
- if ! use portaudio && ! use pulseaudio; then
- ewarn "Since portaudio and pulseaudio are not in your use flags,"
- ewarn "espeak will only be able to create wav files."
- ewarn "If this is not what you want, please reemerge ${CATEGORY}/${PN}"
- ewarn "with either portaudio or pulseaudio USE flag enabled."
- fi
-}
diff --git a/app-accessibility/espeak/espeak-1.44.05.ebuild b/app-accessibility/espeak/espeak-1.44.05.ebuild
deleted file mode 100644
index b6551f00399d..000000000000
--- a/app-accessibility/espeak/espeak-1.44.05.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.44.05.ebuild,v 1.2 2010/10/29 20:37:35 williamh Exp $
-
-EAPI="3"
-
-inherit eutils toolchain-funcs
-
-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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="portaudio pulseaudio"
-RDEPEND="portaudio? ( >=media-libs/portaudio-19_pre20071207 )
- pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-get_audio() {
- local MY_AUDIO
-
- if use portaudio; then
- MY_AUDIO=portaudio
- elif use pulseaudio; then
- MY_AUDIO=pulseaudio
- else
- MY_AUDIO=none
- fi
- echo ${MY_AUDIO}
-}
-
-pkg_setup() {
- if use portaudio && use pulseaudio; then
- die "You must choose either portaudio or pulseaudio, but not both."
- fi
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-respect-ldflags.patch
- cd src
- # gentoo uses portaudio 19.
- if use portaudio; then
- mv -f portaudio19.h portaudio.h
- fi
-}
-
-src_compile() {
- cd src
- emake PREFIX="${EPREFIX}/usr" AUDIO="$(get_audio)" \
- CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" all || 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"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="\$(PREFIX)/$(get_libdir)" AUDIO="$(get_audio)" install || die "Installation failed"
-
- cd ..
- insinto /usr/share/espeak-data
- doins -r dictsource
- dodoc ChangeLog.txt ReadMe
- dohtml -r docs/*
-}
-
-pkg_postinst() {
- if ! use portaudio && ! use pulseaudio; then
- ewarn "Since portaudio and pulseaudio are not in your use flags,"
- ewarn "espeak will only be able to create wav files."
- ewarn "If this is not what you want, please reemerge ${CATEGORY}/${PN}"
- ewarn "with either portaudio or pulseaudio USE flag enabled."
- fi
-}
diff --git a/app-accessibility/espeak/espeak-1.45.01.ebuild b/app-accessibility/espeak/espeak-1.45.01.ebuild
deleted file mode 100644
index eb228bcc0854..000000000000
--- a/app-accessibility/espeak/espeak-1.45.01.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.45.01.ebuild,v 1.1 2011/03/16 03:29:19 williamh Exp $
-
-EAPI="4"
-
-inherit eutils toolchain-funcs
-
-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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="portaudio pulseaudio"
-REQUIRED_USE="portaudio? ( !pulseaudio )
- pulseaudio? ( !portaudio )"
- RDEPEND=" pulseaudio? ( media-sound/pulseaudio )
- portaudio? ( >=media-libs/portaudio-19_pre20071207 )"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-get_audio() {
- if use portaudio; then
- echo portaudio
- elif use pulseaudio; then
- echo pulseaudio
- else
- echo none
- fi
-}
-
-src_prepare() {
- cd src
- # gentoo uses portaudio 19.
- mv -f portaudio19.h portaudio.h
- epatch "${FILESDIR}"/${P}-fix-libname.patch
-}
-
-src_compile() {
- cd src
- emake PREFIX="${EPREFIX}/usr" AUDIO="$(get_audio)" \
- CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" all
-
- 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"
-}
-
-src_install() {
- cd src
- make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="\$(PREFIX)/$(get_libdir)" AUDIO="$(get_audio)" install
-
- cd ..
- insinto /usr/share/espeak-data
- doins -r dictsource
- dodoc ChangeLog.txt ReadMe
- dohtml -r docs/*
-}
-
-pkg_postinst() {
- if ! use portaudio && ! use pulseaudio; then
- ewarn "Since portaudio and pulseaudio are not in your use flags,"
- ewarn "espeak will only be able to create wav files."
- ewarn "If this is not what you want, please reemerge ${CATEGORY}/${PN}"
- ewarn "with either portaudio or pulseaudio USE flag enabled."
- fi
-}
diff --git a/app-accessibility/espeak/files/espeak-1.44.05-respect-ldflags.patch b/app-accessibility/espeak/files/espeak-1.44.05-respect-ldflags.patch
deleted file mode 100644
index abdf0e86de06..000000000000
--- a/app-accessibility/espeak/files/espeak-1.44.05-respect-ldflags.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index da9409e..4fb26d1 100755
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -80,10 +80,10 @@ all: $(BIN_NAME) $(LIB_NAME) $(STATIC_LIB_NAME) $(BIN2_NAME)
- $(CXX) $(CXXFLAGS) $(USE_AUDIO) -D PATH_ESPEAK_DATA=\"$(DATADIR)\" -Wall -pedantic -I. -c -fno-exceptions $<
-
- $(BIN_NAME): $(OBJS1)
-- $(CXX) -o $@ $(OBJS1) $(LIBS1)
-+ $(CXX) $(LDFLAGS) -o $@ $(OBJS1) $(LIBS1)
-
- $(BIN2_NAME): $(OBJS3) $(LIB_NAME)
-- $(CXX) -o $@ $(OBJS3) $(LIBS3)
-+ $(CXX) $(LDFLAGS) -o $@ $(OBJS3) $(LIBS3)
-
-
-
-@@ -92,7 +92,8 @@ x_%.o: %.cpp
- -I. -D LIBRARY -c -fno-exceptions $< -o x_$*.o
-
- $(LIB_NAME): $(OBJS2)
-- $(CXX) -shared $(SONAME_OPT)$(LIB_NAME).$(LIB_VERSION) -o $@ $(OBJS2) $(LIBS2)
-+ $(CXX) $(LDFLAGS) -shared $(SONAME_OPT)$(LIB_NAME).$(LIB_VERSION) -o $@ \
-+ $(OBJS2) $(LIBS2)
-
- $(STATIC_LIB_NAME): $(OBJS2)
- $(AR) cqs $(STATIC_LIB_NAME) $(OBJS2)
diff --git a/app-accessibility/espeak/files/espeak-1.45.01-fix-libname.patch b/app-accessibility/espeak/files/espeak-1.45.01-fix-libname.patch
deleted file mode 100644
index 8188c4dc9ff4..000000000000
--- a/app-accessibility/espeak/files/espeak-1.45.01-fix-libname.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index a184e85..a884f6f 100755
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -75,7 +75,6 @@ CXXFLAGS=-O2
-
-
- all: $(BIN_NAME) $(LIB_NAME) $(STATIC_LIB_NAME) $(BIN2_NAME)
-- mv $(LIB_NAME) $(LIB_NAME).$(LIBTAG)
-
- .cpp.o:
- $(CXX) $(CXXFLAGS) $(USE_AUDIO) -D PATH_ESPEAK_DATA=\"$(DATADIR)\" -Wall -pedantic -I. -c -fno-exceptions $<
-@@ -95,6 +94,9 @@ x_%.o: %.cpp
- $(LIB_NAME): $(OBJS2)
- $(CXX) $(LDFLAGS) -shared $(SONAME_OPT)$(LIB_NAME).$(LIB_VERSION) -o $@ \
- $(OBJS2) $(LIBS2)
-+ mv $(LIB_NAME) $(LIB_NAME).$(LIBTAG)
-+ $(LN_SF) $(LIB_NAME).$(LIBTAG) $(LIB_NAME).$(LIB_VERSION)
-+ $(LN_SF) $(LIB_NAME).$(LIB_VERSION) $(LIB_NAME)
-
- $(STATIC_LIB_NAME): $(OBJS2)
- $(AR) cqs $(STATIC_LIB_NAME) $(OBJS2)