summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-09-12 02:18:03 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-09-12 02:18:03 +0000
commit43bcc159a27f5547e78641689ae7c8139a27d731 (patch)
treefac74945c5a92794ac251d9fa5db91ad784744e7 /app-accessibility
parentBump to 2.12.0 (diff)
downloadgentoo-2-43bcc159a27f5547e78641689ae7c8139a27d731.tar.gz
gentoo-2-43bcc159a27f5547e78641689ae7c8139a27d731.tar.bz2
gentoo-2-43bcc159a27f5547e78641689ae7c8139a27d731.zip
Removing old ebuild
(Portage version: 2.0.52-r1)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/gnome-speech/files/digest-gnome-speech-0.3.71
-rw-r--r--app-accessibility/gnome-speech/gnome-speech-0.3.7.ebuild82
2 files changed, 0 insertions, 83 deletions
diff --git a/app-accessibility/gnome-speech/files/digest-gnome-speech-0.3.7 b/app-accessibility/gnome-speech/files/digest-gnome-speech-0.3.7
deleted file mode 100644
index aace3ab08846..000000000000
--- a/app-accessibility/gnome-speech/files/digest-gnome-speech-0.3.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0afa367c75288357fa3b8e274e72584d gnome-speech-0.3.7.tar.bz2 275371
diff --git a/app-accessibility/gnome-speech/gnome-speech-0.3.7.ebuild b/app-accessibility/gnome-speech/gnome-speech-0.3.7.ebuild
deleted file mode 100644
index e1f9d88a0e4b..000000000000
--- a/app-accessibility/gnome-speech/gnome-speech-0.3.7.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/gnome-speech/gnome-speech-0.3.7.ebuild,v 1.8 2005/08/23 02:15:06 agriffis Exp $
-
-inherit java-pkg gnome2
-
-DESCRIPTION="Simple general API for producing text-to-speech output"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="LGPL-2"
-SLOT="1"
-KEYWORDS="alpha ~amd64 hppa ia64 ppc ppc64 sparc x86"
-IUSE="freetts static"
-
-RDEPEND=">=gnome-base/libbonobo-1.97
- >=gnome-base/orbit-2.3.94
- freetts? (
- =app-accessibility/freetts-1.2*
- virtual/jdk
- app-accessibility/java-access-bridge
- )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-src_compile() {
- G2CONF="${G2CONF} $(use_enable static)"
-
- if use freetts
- then
- if [ -z "${JDK_HOME}" ] || [ ! -d "${JDK_HOME}" ]
- then
- eerror "The FreeTTS driver includes java components. In order to"
- eerror "compile java sources you have to set the\$JDK_HOME"
- eerror "environment properly."
- eerror ""
- eerror "You may do this using dev-java/java-config."
- die "Couldn't find a valid JDK home"
- fi
-
- local JABDIR="${ROOT}/usr/share/java-access-bridge/lib"
- G2CONF="${G2CONF} --with-java-home=${JDK_HOME} \
---with-jab-dir=${JABDIR} --with-freetts-dir=${ROOT}/usr/share/freetts/lib"
-
- sed -i \
- -e 's:\(GNOME_SPEECH_JAR_DIR=\).*:\1"/usr/share/gnome-speech-1/lib":' \
- -e 's:\(FREETTS_DRIVER_JAR_DIR=\).*:\1"/usr/share/gnome-speech-1/lib":' \
- ${S}/configure
- else
- export JAVAC=no
- fi
-
- gnome2_src_compile
-}
-
-src_install() {
- gnome2_src_install
-
- if use freetts
- then
- java-pkg_dojar ${D}/usr/share/jar/*.jar
- rm -rf ${D}/usr/share/jar
- fi
-}
-
-pkg_postinst() {
- einfo ""
- einfo "Gnome Speech has been successfully installed. You may now use the"
- einfo "speech interface using app-accessibility/gnopernicus."
- einfo ""
- einfo "Please note that gnome-speech relies on external programs that"
- einfo "implement the actual text-to-speech funcionality. Supported"
- einfo "implementations include festival and freetts."
- einfo ""
- einfo "The festival driver is always installed with gnome-speech and"
- einfo "should work as-is if you install app-accessibility/festival."
- einfo "The freetts driver is installed if you enable the 'freetts' USE"
- einfo "flag when installing gnome-speech."
- einfo ""
-}