summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-04-30 12:06:42 +0000
committerAchim Gottinger <achim@gentoo.org>2001-04-30 12:06:42 +0000
commit21e1583f4fea163c17c82b6b0878b90909a9ca7f (patch)
tree08b19a101b57f3951268e58813b175c71006d272 /sys-apps/bash
parentUpdate (diff)
downloadgentoo-2-21e1583f4fea163c17c82b6b0878b90909a9ca7f.tar.gz
gentoo-2-21e1583f4fea163c17c82b6b0878b90909a9ca7f.tar.bz2
gentoo-2-21e1583f4fea163c17c82b6b0878b90909a9ca7f.zip
Cleanup
Diffstat (limited to 'sys-apps/bash')
-rw-r--r--sys-apps/bash/bash-2.04-r1.ebuild56
-rw-r--r--sys-apps/bash/bash-2.04-r2.ebuild74
-rw-r--r--sys-apps/bash/files/digest-bash-2.04-r11
-rw-r--r--sys-apps/bash/files/digest-bash-2.04-r21
4 files changed, 0 insertions, 132 deletions
diff --git a/sys-apps/bash/bash-2.04-r1.ebuild b/sys-apps/bash/bash-2.04-r1.ebuild
deleted file mode 100644
index 670c6b8470da..000000000000
--- a/sys-apps/bash/bash-2.04-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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-r1.ebuild,v 1.3 2001/02/01 19:30:33 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="The standard GNU Bourne again shell"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/bash/${A}
- ftp://ftp.gnu.org/gnu/bash/${A}"
-
-HOMEPAGE="http://www.gnu.org/software/bash/bash.html"
-
-PROVIDE="virtual/bash"
-
-src_compile() {
-
- cd ${S}
- try ./configure --prefix=/ --host=${CHOST} \
- --disable-profiling --with-curses \
- --enable-static-link --with-installed-readline
- cp Makefile Makefile.orig
- sed -e "s:-lcurses:-lncurses:" Makefile.orig > Makefile
- try pmake
- if [ "`use tex`" ]
- then
- cd support
- cp texi2html texi2html.orig
- sed -e "s:/usr/local/bin/perl:/usr/bin/perl:" \
- texi2html.orig > texi2html
- cd ../doc
- try make
- fi
-
-}
-
-
-
-src_install() {
- cd ${S}
- if [ "`use tex`" ]
- then
- docinto html
- dodoc doc/*.html
- docinto ps
- dodoc doc/*.ps
- fi
- make prefix=${D}/usr install
- dodir /bin
- mv ${D}/usr/bin/bash ${D}/bin
- dosym bash /bin/sh
- doman doc/builtins.1 bash_builtins.1
- dodoc README NEWS AUTHORS CHANGES COMPAT COPYING Y2K
- dodoc doc/FAQ doc/INTRO
-}
-
diff --git a/sys-apps/bash/bash-2.04-r2.ebuild b/sys-apps/bash/bash-2.04-r2.ebuild
deleted file mode 100644
index 2a80cf5c0c97..000000000000
--- a/sys-apps/bash/bash-2.04-r2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# 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-r2.ebuild,v 1.2 2001/02/15 18:17:31 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="The standard GNU Bourne again shell"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/bash/${A}
- ftp://ftp.gnu.org/gnu/bash/${A}"
-
-HOMEPAGE="http://www.gnu.org/software/bash/bash.html"
-
-DEPEND=">=sys-libs/ncurses-5.2-r2
- readline? ( >=sys-libs/readline-4.1-r2 )
- tex? ( app-text/tetex )
- sys-apps/groff
- sys-apps/texinfo"
-
-src_compile() {
-
- local myconf
- if [ "`use readline`" ]
- then
- myconf="--with-installed-readline"
- fi
-
- try ./configure --prefix=/ --mandir=/usr/share/man \
- --infodir=/usr/share/info --host=${CHOST} \
- --disable-profiling --with-curses \
- --enable-static-link ${myconf}
-
- try pmake
-
- if [ "`use tex`" ]
- then
- cd support
- cp texi2html texi2html.orig
- sed -e "s:/usr/local/bin/perl:/usr/bin/perl:" \
- texi2html.orig > texi2html
- cd ../doc
- try make
- fi
-
-}
-
-
-
-src_install() {
-
- make prefix=${D}/usr mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info install
- dodir /bin
- mv ${D}/usr/bin/bash ${D}/bin
- dosym bash /bin/sh
- doman doc/*.1
-
- if [ -z "`use readline`" ]
- then
- doman doc/*.3
- fi
- dodoc README NEWS AUTHORS CHANGES COMPAT COPYING Y2K
- dodoc doc/FAQ doc/INTRO
-
- if [ "`use tex`" ]
- then
- docinto html
- dodoc doc/*.html
- docinto ps
- dodoc doc/*.ps
- fi
-
-}
-
diff --git a/sys-apps/bash/files/digest-bash-2.04-r1 b/sys-apps/bash/files/digest-bash-2.04-r1
deleted file mode 100644
index 2357c32167ec..000000000000
--- a/sys-apps/bash/files/digest-bash-2.04-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 49b548a8b72a4c925ff26930e4c31c6c bash-2.04.tar.gz
diff --git a/sys-apps/bash/files/digest-bash-2.04-r2 b/sys-apps/bash/files/digest-bash-2.04-r2
deleted file mode 100644
index 2357c32167ec..000000000000
--- a/sys-apps/bash/files/digest-bash-2.04-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 49b548a8b72a4c925ff26930e4c31c6c bash-2.04.tar.gz