summaryrefslogtreecommitdiff
blob: 6d73ed8ed5450cf71912bc6d33e0c75db3068e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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.6 2004/04/23 03:57:35 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"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="x86 ~ppc ~amd64"
IUSE=""

DEPEND="virtual/glibc
	>=sys-devel/make-3.80
	>=sys-devel/autoconf-2.58"

RDEPEND=""

src_unpack(){
	unpack ${A}
	cd ${S}
	sed -i '/^aclocaldir =/s:@aclocaldir@:$(destdir)/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 COPYING ABOUT-NLS AUTHORS BUGS CREDITS INSTALL
}