summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2007-06-17 22:05:08 +0000
committerWilliam Hubbs <williamh@gentoo.org>2007-06-17 22:05:08 +0000
commitb308ca22cd36be7240ee4fae2340d1f844e55f73 (patch)
tree3c437d655e9c56cfabbd646fa7686635f9fc6c84 /app-accessibility
parentInitial commit. (diff)
downloadgentoo-2-b308ca22cd36be7240ee4fae2340d1f844e55f73.tar.gz
gentoo-2-b308ca22cd36be7240ee4fae2340d1f844e55f73.tar.bz2
gentoo-2-b308ca22cd36be7240ee4fae2340d1f844e55f73.zip
Version bump and fix for #143967
(Portage version: 2.1.3_rc3)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/yasr/ChangeLog7
-rw-r--r--app-accessibility/yasr/files/digest-yasr-0.6.73
-rw-r--r--app-accessibility/yasr/yasr-0.6.7.ebuild34
3 files changed, 43 insertions, 1 deletions
diff --git a/app-accessibility/yasr/ChangeLog b/app-accessibility/yasr/ChangeLog
index 6977d63537fd..fa387b767300 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.14 2007/02/21 19:25:38 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.15 2007/06/17 22:05:08 williamh Exp $
+
+*yasr-0.6.7 (17 Jun 2007)
+
+ 17 Jun 2007; William Hubbs <williamh@gentoo.org> +yasr-0.6.7.ebuild:
+ Version bump and fix for #143967.
21 Feb 2007; <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
diff --git a/app-accessibility/yasr/files/digest-yasr-0.6.7 b/app-accessibility/yasr/files/digest-yasr-0.6.7
new file mode 100644
index 000000000000..904914a3cc5b
--- /dev/null
+++ b/app-accessibility/yasr/files/digest-yasr-0.6.7
@@ -0,0 +1,3 @@
+MD5 c7c6191f1d7413317924e580809817dc yasr-0.6.7.tar.gz 201786
+RMD160 0d3ee4356dfd01f4aa0529d1e504004f77353894 yasr-0.6.7.tar.gz 201786
+SHA256 dee640ae4a4c813f8248816f9457788737f4b90e38fe9e1a857f4eaf42dec159 yasr-0.6.7.tar.gz 201786
diff --git a/app-accessibility/yasr/yasr-0.6.7.ebuild b/app-accessibility/yasr/yasr-0.6.7.ebuild
new file mode 100644
index 000000000000..aadc5a074d03
--- /dev/null
+++ b/app-accessibility/yasr/yasr-0.6.7.ebuild
@@ -0,0 +1,34 @@
+# 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.7.ebuild,v 1.1 2007/06/17 22:05:08 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/make-3.80
+ >=sys-devel/autoconf-2.58
+ >=sys-apps/sed-4"
+RDEPEND=""
+
+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
+}