summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-03-26 04:29:29 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-03-26 04:29:29 +0000
commite36297c8970de354ed95c7391f107792a5398bd6 (patch)
treea091fd976ad2c57c4ccd5f38207b51ffe2e530f2 /app-shells
parentChanged ~sparc keyword to sparc. (diff)
downloadhistorical-e36297c8970de354ed95c7391f107792a5398bd6.tar.gz
historical-e36297c8970de354ed95c7391f107792a5398bd6.tar.bz2
historical-e36297c8970de354ed95c7391f107792a5398bd6.zip
removed old ebuilds
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/tcsh/files/digest-tcsh-6.10-r31
-rw-r--r--app-shells/tcsh/files/digest-tcsh-6.121
-rw-r--r--app-shells/tcsh/files/digest-tcsh-6.12-r11
-rw-r--r--app-shells/tcsh/tcsh-6.10-r3.ebuild49
-rw-r--r--app-shells/tcsh/tcsh-6.12-r1.ebuild52
-rw-r--r--app-shells/tcsh/tcsh-6.12.ebuild45
6 files changed, 0 insertions, 149 deletions
diff --git a/app-shells/tcsh/files/digest-tcsh-6.10-r3 b/app-shells/tcsh/files/digest-tcsh-6.10-r3
deleted file mode 100644
index 1d2487bf5af0..000000000000
--- a/app-shells/tcsh/files/digest-tcsh-6.10-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f459c423074d85dfaa55439eb908a053 tcsh-6.10.tar.gz 665733
diff --git a/app-shells/tcsh/files/digest-tcsh-6.12 b/app-shells/tcsh/files/digest-tcsh-6.12
deleted file mode 100644
index 7733a6633626..000000000000
--- a/app-shells/tcsh/files/digest-tcsh-6.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 dccf1e673103594546fe74c313932428 tcsh-6.12.00.tar.gz 824297
diff --git a/app-shells/tcsh/files/digest-tcsh-6.12-r1 b/app-shells/tcsh/files/digest-tcsh-6.12-r1
deleted file mode 100644
index 7733a6633626..000000000000
--- a/app-shells/tcsh/files/digest-tcsh-6.12-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 dccf1e673103594546fe74c313932428 tcsh-6.12.00.tar.gz 824297
diff --git a/app-shells/tcsh/tcsh-6.10-r3.ebuild b/app-shells/tcsh/tcsh-6.10-r3.ebuild
deleted file mode 100644
index bdad605a8fa4..000000000000
--- a/app-shells/tcsh/tcsh-6.10-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.10-r3.ebuild,v 1.11 2003/03/11 21:11:45 seemant Exp $
-
-IUSE="perl"
-
-S=${WORKDIR}/${P}.00
-DESCRIPTION="Enhanced version of the Berkeley C shell (csh)"
-SRC_URI="ftp://ftp.gw.com/pub/unix/tcsh/${P}.tar.gz
- ftp://ftp.astron.com/pub/tcsh/${P}.tar.gz
- ftp://ftp.funet.fi/pub/unix/shells/tcsh/${P}.tar.gz"
-HOMEPAGE="http://www.tcsh.org/"
-DEPEND="virtual/glibc
- >=sys-libs/ncurses-5.1
- perl? ( dev-lang/perl )"
-
-SLOT="0"
-KEYWORDS="x86 ppc sparc "
-LICENSE="BSD"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}-tc.os.h-gentoo.diff
-}
-
-src_compile() {
- ./configure \
- --prefix=/ \
- --mandir=/usr/share/man \
- --host=${CHOST} \
- || die
-
- emake || die
-}
-
-src_install() {
-
- make DESTDIR=${D} install install.man || die
- if [ "`use perl`" ]; then
- perl tcsh.man2html || die
- dohtml tcsh.html/*.html
- fi
- dosym tcsh /bin/csh
- dodoc FAQ Fixes NewThings Ported README WishList Y2K
-
- insinto /etc
- doins ${FILESDIR}/csh.cshrc ${FILESDIR}/csh.login
-}
diff --git a/app-shells/tcsh/tcsh-6.12-r1.ebuild b/app-shells/tcsh/tcsh-6.12-r1.ebuild
deleted file mode 100644
index d86e35516cd8..000000000000
--- a/app-shells/tcsh/tcsh-6.12-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12-r1.ebuild,v 1.5 2003/03/11 21:11:45 seemant Exp $
-
-MY_P="${PN}-${PV}.00"
-DESCRIPTION="Enhanced version of the Berkeley C shell (csh)"
-SRC_URI="ftp://ftp.astron.com/pub/tcsh/${MY_P}.tar.gz"
-HOMEPAGE="http://www.tcsh.org/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="x86 ~ppc sparc "
-IUSE="perl"
-
-RDEPEND="virtual/glibc
- >=sys-libs/ncurses-5.1
- perl? ( dev-lang/perl )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}-tc.os.h-gentoo.diff || die
-}
-
-src_compile() {
- econf --prefix=/
- emake || die "compile problem"
-}
-
-src_install() {
- make DESTDIR=${D} install install.man || die
-
- if [ "`use perl`" ] ; then
- perl tcsh.man2html || die
- dohtml tcsh.html/*.html
- fi
-
- dosym /bin/tcsh /bin/csh
- dodoc FAQ Fixes NewThings Ported README WishList Y2K
-
- insinto /etc
- newins ${FILESDIR}/csh.cshrc_new csh.cshrc
- newins ${FILESDIR}/csh.login_new csh.login
-
- insinto /etc/skel
- newins ${FILESDIR}/tcsh.config .tcsh.config
-
- insinto /etc/profile.d
- doins ${FILESDIR}/tcsh-settings ${FILESDIR}/tcsh-aliases ${FILESDIR}/tcsh-bindkey ${FILESDIR}/tcsh-complete
-}
diff --git a/app-shells/tcsh/tcsh-6.12.ebuild b/app-shells/tcsh/tcsh-6.12.ebuild
deleted file mode 100644
index e2bf5bc7789c..000000000000
--- a/app-shells/tcsh/tcsh-6.12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12.ebuild,v 1.6 2003/03/11 21:11:45 seemant Exp $
-
-MY_P="${PN}-${PV}.00"
-DESCRIPTION="Enhanced version of the Berkeley C shell (csh)"
-SRC_URI="ftp://ftp.astron.com/pub/tcsh/${MY_P}.tar.gz"
-HOMEPAGE="http://www.tcsh.org/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~x86 ~ppc sparc "
-IUSE="perl"
-
-RDEPEND="virtual/glibc
- >=sys-libs/ncurses-5.1
- perl? ( dev-lang/perl )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}-tc.os.h-gentoo.diff || die
-}
-
-src_compile() {
- econf --prefix=/
- emake || die "compile problem"
-}
-
-src_install() {
- make DESTDIR=${D} install install.man || die
-
- if [ "`use perl`" ] ; then
- perl tcsh.man2html || die
- dohtml tcsh.html/*.html
- fi
-
- dosym /bin/tcsh /bin/csh
- dodoc FAQ Fixes NewThings Ported README WishList Y2K
-
- insinto /etc
- doins ${FILESDIR}/csh.cshrc ${FILESDIR}/csh.login
-}