diff options
author | William Hubbs <williamh@gentoo.org> | 2010-03-03 06:29:07 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-03-03 06:29:07 +0000 |
commit | 9b7bcb89dc7b18dcf591c147d0220dba2f1a5b99 (patch) | |
tree | 24734c7f70528c57f5c9d3e731b4a6d1582778ce /app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild | |
parent | Cleaned up the patchset again and restricted this version of (diff) | |
download | gentoo-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/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild')
-rw-r--r-- | app-accessibility/speech-dispatcher/speech-dispatcher-0.6.6-r1.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
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." -} |