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/yasr/yasr-0.6.7.ebuild
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/yasr/yasr-0.6.7.ebuild')
-rw-r--r--app-accessibility/yasr/yasr-0.6.7.ebuild34
1 files changed, 34 insertions, 0 deletions
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
+}