summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2007-12-31 14:55:14 +0000
committerWilliam Hubbs <williamh@gentoo.org>2007-12-31 14:55:14 +0000
commitb43ca5acfa6c353c3e84e9adfb9b886c7cb16794 (patch)
tree6ba264977f832a76e2f51b5869e34c6888bd61ad /app-accessibility/yasr
parentMarked ppc/ppc64 stable for bug #203653. (diff)
downloadgentoo-2-b43ca5acfa6c353c3e84e9adfb9b886c7cb16794.tar.gz
gentoo-2-b43ca5acfa6c353c3e84e9adfb9b886c7cb16794.tar.bz2
gentoo-2-b43ca5acfa6c353c3e84e9adfb9b886c7cb16794.zip
Version bump.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'app-accessibility/yasr')
-rw-r--r--app-accessibility/yasr/ChangeLog7
-rw-r--r--app-accessibility/yasr/files/digest-yasr-0.6.83
-rw-r--r--app-accessibility/yasr/yasr-0.6.8.ebuild41
3 files changed, 50 insertions, 1 deletions
diff --git a/app-accessibility/yasr/ChangeLog b/app-accessibility/yasr/ChangeLog
index fa387b767300..8f8978177980 100644
--- a/app-accessibility/yasr/ChangeLog
+++ b/app-accessibility/yasr/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-accessibility/yasr
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.15 2007/06/17 22:05:08 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.16 2007/12/31 14:55:13 williamh Exp $
+
+*yasr-0.6.8 (31 Dec 2007)
+
+ 31 Dec 2007; William Hubbs <williamh@gentoo.org> +yasr-0.6.8.ebuild:
+ Version bump.
*yasr-0.6.7 (17 Jun 2007)
diff --git a/app-accessibility/yasr/files/digest-yasr-0.6.8 b/app-accessibility/yasr/files/digest-yasr-0.6.8
new file mode 100644
index 000000000000..2d5029633b43
--- /dev/null
+++ b/app-accessibility/yasr/files/digest-yasr-0.6.8
@@ -0,0 +1,3 @@
+MD5 40152c81e5674fae59af3d7c98c4fd45 yasr-0.6.8.tar.bz2 191917
+RMD160 d3e634351220f973db6decbd69caffa5b887aefd yasr-0.6.8.tar.bz2 191917
+SHA256 c54f5da482db5112c86e50947e2c9a482750bf879ae9b60a6391f57cbcfbac0c yasr-0.6.8.tar.bz2 191917
diff --git a/app-accessibility/yasr/yasr-0.6.8.ebuild b/app-accessibility/yasr/yasr-0.6.8.ebuild
new file mode 100644
index 000000000000..11ae35e9aba0
--- /dev/null
+++ b/app-accessibility/yasr/yasr-0.6.8.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/yasr-0.6.8.ebuild,v 1.1 2007/12/31 14:55:13 williamh Exp $
+
+DESCRIPTION="general-purpose console screen reader"
+HOMEPAGE="http://yasr.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND=">=sys-devel/autoconf-2.58"
+
+src_unpack(){
+ unpack ${A}
+ cd "${S}"
+ sed -i '/^aclocaldir.*=/s:@aclocaldir@:$(destdir)/usr/share/aclocal:' "${S}"/m4/Makefile.*
+}
+
+src_compile() {
+ econf --datadir='/etc' || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc README ChangeLog AUTHORS BUGS CREDITS
+ rm -rf "${D}"/usr/share/aclocal
+ dosed \
+ 's:^\(synthesizer=emacspeak server\):#\1:
+ s:^\(synthesizer port=|/usr/local/bin/eflite\):#\1:
+ s:^#\(synthesizer=speech dispatcher\):\1:
+ s:^#\(synthesizer port=127.0.0.1.6560\):\1:' /etc/yasr/yasr.conf
+}
+
+pkg_postinst() {
+ elog
+ elog "Speech-dispatcher is configured as the default synthesizer for yasr."
+}