summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/zsh/zsh-4.0.6-r4.ebuild')
-rw-r--r--app-shells/zsh/zsh-4.0.6-r4.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/app-shells/zsh/zsh-4.0.6-r4.ebuild b/app-shells/zsh/zsh-4.0.6-r4.ebuild
deleted file mode 100644
index c38942d2ec4c..000000000000
--- a/app-shells/zsh/zsh-4.0.6-r4.ebuild
+++ /dev/null
@@ -1,64 +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/zsh/zsh-4.0.6-r4.ebuild,v 1.5 2003/10/28 07:09:25 usata Exp $
-
-IUSE="ncurses"
-
-DESCRIPTION="UNIX Shell similar to the Korn shell"
-HOMEPAGE="http://www.zsh.org/"
-SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.gz
- mirror://debian/pool/main/z/zsh/${P/-/_}-15.gz
- http://dev.gentoo.org/~vladimir/distfiles/zshall-${PV}.bz2"
-
-SLOT="0"
-LICENSE="ZSH"
-KEYWORDS="x86 alpha ppc ~sparc"
-
-DEPEND="ncurses? ( >=sys-libs/ncurses-5.1 )"
-
-src_unpack() {
- unpack ${A}
- epatch ${WORKDIR}/${P/-/_}
-}
-
-src_compile() {
-
- # New zshall.1 generated with the following, run in Doc:
- # perl -nle'$_ = `cat $1` if /^\.so man1\/(.+\.1)/;print' zshall.1
- mv ${WORKDIR}/zshall-${PV} ${S}/Doc/zshall.1
-
- use ncurses && MYCONF="--with-curses-terminfo"
-
- econf \
- --bindir=/bin \
- --libdir=/usr/lib \
- --enable-maildir-support \
- --enable-etcdir=/etc/zsh \
- --enable-zshenv=/etc/zsh/zshenv \
- --enable-zshlogin=/etc/zsh/zshlogin \
- --enable-zshrc=/etc/zsh/zshrc \
- --enable-fndir=/usr/share/zsh/${PV}/functions \
- --enable-site-fndir=/usr/share/zsh/site-functions \
- --enable-function-subdirs \
- ${MYCONF}
- # emake still b0rks
- make || die "make failed"
- #make check || die "make check failed"
-}
-
-src_install() {
- einstall \
- bindir=${D}/bin \
- libdir=${D}/usr/lib \
- fndir=${D}/usr/share/zsh/${PV}/functions \
- sitefndir=${D}/usr/share/zsh/site-functions \
- install.bin install.man install.modules \
- install.info install.fns || die "make install failed"
-
- dodoc ChangeLog META-FAQ README INSTALL LICENCE config.modules
- docinto StartupFiles
- dodoc StartupFiles/z*
-
- insinto /etc/zsh
- doins ${FILESDIR}/zshenv
-}