blob: 75ec53d472fce3065b9317d672857c7a7c670f0d (
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
|
# 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/bash/bash-2.03-r1.ebuild,v 1.4 2000/09/15 20:09:16 drobbins Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="The standard GNU Bourne again shell"
SRC_URI="ftp://ftp.gnu.org/gnu/bash/"${A}
HOMEPAGE="http://www.gnu.org/software/bash/bash.html"
src_compile() {
cd ${S}
try ./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST}
try make
}
src_install() {
cd ${S}
cp doc/bashref.info doc/bash.info
into /usr
doinfo doc/bash.info
doman doc/*.1
into /
dobin bash bashbug
dosym bash /bin/sh
dodoc README NEWS AUTHORS CHANGES COMPAT COPYING Y2K doc/FAQ doc/INTRO
}
|