summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/tcsh/tcsh-6.10-r1.ebuild')
-rw-r--r--app-shells/tcsh/tcsh-6.10-r1.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-shells/tcsh/tcsh-6.10-r1.ebuild b/app-shells/tcsh/tcsh-6.10-r1.ebuild
deleted file mode 100644
index feaa380311a8..000000000000
--- a/app-shells/tcsh/tcsh-6.10-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.10-r1.ebuild,v 1.2 2001/11/10 03:07:01 hallski Exp $
-
-S=${WORKDIR}/${P}.00
-DESCRIPTION="Enhanced version of the Berkeley C shell (csh)"
-#ugh, astron.com doesn't support passive ftp... maybe another source?
-SRC_URI="ftp://ftp.astron.com/pub/tcsh/${P}.tar.gz"
-DEPEND="virtual/glibc
- >=sys-libs/ncurses-5.1
- perl? ( sys-devel/perl )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}-tc.os.h-gentoo.diff
-}
-
-src_compile() {
-
- try ./configure --prefix=/ --mandir=/usr/share/man --host=${CHOST}
- try make
-}
-
-src_install() {
-
- try make DESTDIR=${D} install install.man
- if [ "`use perl`" ]
- then
- try perl tcsh.man2html
- docinto html
- dodoc tcsh.html/*.html
- fi
- dosym tcsh /bin/csh
- dodoc FAQ Fixes NewThings Ported README WishList Y2K
-
-}
-
-
-