summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2008-02-03 20:36:09 +0000
committerWilliam Hubbs <williamh@gentoo.org>2008-02-03 20:36:09 +0000
commit2c1f05bf4e587dee38b17e08b33368244d48dde2 (patch)
treee02ebfca8c2d3084400befd361cfd3eb24fa9743 /app-accessibility
parentSet both ppc and ppc64 herds as maintainer, as discussed in the 2008/02/03 Po... (diff)
downloadgentoo-2-2c1f05bf4e587dee38b17e08b33368244d48dde2.tar.gz
gentoo-2-2c1f05bf4e587dee38b17e08b33368244d48dde2.tar.bz2
gentoo-2-2c1f05bf4e587dee38b17e08b33368244d48dde2.zip
Version bump.
(Portage version: 2.1.4.1)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/yasr/ChangeLog9
-rw-r--r--app-accessibility/yasr/yasr-0.6.9.ebuild41
2 files changed, 48 insertions, 2 deletions
diff --git a/app-accessibility/yasr/ChangeLog b/app-accessibility/yasr/ChangeLog
index 8f8978177980..a393699a13c0 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.16 2007/12/31 14:55:13 williamh Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.17 2008/02/03 20:36:09 williamh Exp $
+
+*yasr-0.6.9 (03 Feb 2008)
+
+ 03 Feb 2008; William Hubbs <williamh@gentoo.org> +yasr-0.6.9.ebuild:
+ Version bump.
*yasr-0.6.8 (31 Dec 2007)
diff --git a/app-accessibility/yasr/yasr-0.6.9.ebuild b/app-accessibility/yasr/yasr-0.6.9.ebuild
new file mode 100644
index 000000000000..ab1c4bb99207
--- /dev/null
+++ b/app-accessibility/yasr/yasr-0.6.9.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/yasr-0.6.9.ebuild,v 1.1 2008/02/03 20:36:09 williamh Exp $
+
+DESCRIPTION="general-purpose console screen reader"
+HOMEPAGE="http://yasr.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+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."
+}