diff options
author | 2006-02-11 12:58:17 +0000 | |
---|---|---|
committer | 2006-02-11 12:58:17 +0000 | |
commit | 5066d9d094f0320d517a079b29aea62ca9b4ed97 (patch) | |
tree | 4bcb7f745a6e0814f13442911af3894e553cf68b /app-shells/tcsh/tcsh-6.12-r3.ebuild | |
parent | Version bump, see bug #111983. (diff) | |
download | gentoo-2-5066d9d094f0320d517a079b29aea62ca9b4ed97.tar.gz gentoo-2-5066d9d094f0320d517a079b29aea62ca9b4ed97.tar.bz2 gentoo-2-5066d9d094f0320d517a079b29aea62ca9b4ed97.zip |
Removing old versions + accompanying files
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'app-shells/tcsh/tcsh-6.12-r3.ebuild')
-rw-r--r-- | app-shells/tcsh/tcsh-6.12-r3.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app-shells/tcsh/tcsh-6.12-r3.ebuild b/app-shells/tcsh/tcsh-6.12-r3.ebuild deleted file mode 100644 index 9cc132616565..000000000000 --- a/app-shells/tcsh/tcsh-6.12-r3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12-r3.ebuild,v 1.14 2005/07/09 13:29:17 swegener Exp $ - -inherit eutils - -MY_P="${P}.00" -DESCRIPTION="Enhanced version of the Berkeley C shell (csh)" -HOMEPAGE="http://www.tcsh.org/" -SRC_URI="mirror://gentoo/${MY_P}.tar.gz - mirror://gentoo/tcsh-complete" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha arm hppa amd64 ia64 ppc64 mips" -IUSE="cjk perl" - -RDEPEND="virtual/libc - >=sys-libs/ncurses-5.1 - perl? ( dev-lang/perl )" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${MY_P}.tar.gz - cd ${S} - epatch ${FILESDIR}/${P}-tc.os.h-gentoo.diff - use cjk && epatch ${FILESDIR}/tcsh_enable_kanji.diff -} - -src_compile() { - econf --prefix=/ || die "econf failed" - 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 ${DISTDIR}/tcsh-complete -} |