blob: d19e67be39ef7a176b650c4b11577648eaa83f8b (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.4.2-r1.ebuild,v 1.7 2001/01/31 20:49:07 achim Exp $
P=grep-2.4.2
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="GNU regular expression matcher"
SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/grep/${A}
ftp://prep.ai.mit.edu/gnu/grep/${A}"
HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
DEPEND="virtual/glibc"
src_compile() {
try ./configure --prefix=/usr --host=${CHOST}
try make ${MAKEOPTS}
}
src_install() {
try make prefix=${D}/usr install
dodoc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
}
|