summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeedra M. Waters <dmwaters@gentoo.org>2004-03-18 00:17:29 +0000
committerDeedra M. Waters <dmwaters@gentoo.org>2004-03-18 00:17:29 +0000
commit08601f983ee7f982ea01120381212f8607c473b6 (patch)
tree7e112ef3b4309c34fab20585dbad91d129b72e8f /app-accessibility
parentproper headers and other fixes (diff)
downloadgentoo-2-08601f983ee7f982ea01120381212f8607c473b6.tar.gz
gentoo-2-08601f983ee7f982ea01120381212f8607c473b6.tar.bz2
gentoo-2-08601f983ee7f982ea01120381212f8607c473b6.zip
closed bug 44982. I owe spanky a beer for that one:) Also fixed a typeo in the ebuild file
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/yasr/ChangeLog9
-rw-r--r--app-accessibility/yasr/yasr-0.6.5.ebuild10
2 files changed, 16 insertions, 3 deletions
diff --git a/app-accessibility/yasr/ChangeLog b/app-accessibility/yasr/ChangeLog
index 8db2cfe25563..ce2e418626d0 100644
--- a/app-accessibility/yasr/ChangeLog
+++ b/app-accessibility/yasr/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-misc/yasr
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.2 2004/03/17 23:05:34 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/ChangeLog,v 1.3 2004/03/18 00:17:29 dmwaters Exp $
+
+ 17 Mar 2004; <dmwaters@gentoo.org> yasr-0.6.5.ebuild:
+ Also fixed a typeo in the ebuild file.
+
+ 17 Mar 2004; <dmwaters@gentoo.org> yasr-0.6.5.ebuild:
+ Fix for files being installed in /@aclocaldir@
+ Closes #44982
18 Mar 2004; David Holm <dholm@gentoo.org> yasr-0.6.5.ebuild:
Added to ~ppc.
diff --git a/app-accessibility/yasr/yasr-0.6.5.ebuild b/app-accessibility/yasr/yasr-0.6.5.ebuild
index 5381ea5434d1..1600b5bc22da 100644
--- a/app-accessibility/yasr/yasr-0.6.5.ebuild
+++ b/app-accessibility/yasr/yasr-0.6.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/yasr-0.6.5.ebuild,v 1.2 2004/03/17 23:05:34 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/yasr/yasr-0.6.5.ebuild,v 1.3 2004/03/18 00:17:29 dmwaters Exp $
DESCRIPTION="Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems."
HOMEPAGE="http://yasr.sourceforge.net"
@@ -15,8 +15,14 @@ DEPEND="virtual/glibc
>=sys-devel/make-3.80
>=sys-devel/autoconf-2.58"
+src_unpack(){
+ unpack ${A}
+ cd ${S}
+ sed -i '/^aclocaldir =/s:@aclocaldir@:$(destdir)/aclocal:' ${S}/m4/Makefile.*
+ }
+
src_compile() {
- econf datadir='/etc' || die "econf failed"
+ econf --datadir='/etc' || die "econf failed"
emake || die "emake failed"
}