summaryrefslogtreecommitdiff
blob: 4f17eb859fa756642797d98e437fd15f96c0eb78 (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.04.ebuild,v 1.1 2000/08/16 05:28:14 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}
	./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST}
	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

}