diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-08-19 12:46:27 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-08-19 12:46:27 +0000 |
commit | 08284736a0d953283acca16dcef4e478b22c78cf (patch) | |
tree | a8c0f840a23ba4b7ed4963f55b159493ec5ab24c /app-shells | |
parent | Masked zsh-4.0.6 (diff) | |
download | historical-08284736a0d953283acca16dcef4e478b22c78cf.tar.gz historical-08284736a0d953283acca16dcef4e478b22c78cf.tar.bz2 historical-08284736a0d953283acca16dcef4e478b22c78cf.zip |
Bumped to new version
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/zsh/ChangeLog | 11 | ||||
-rw-r--r-- | app-shells/zsh/files/digest-zsh-4.0.6 | 1 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.0.6.ebuild | 52 |
3 files changed, 62 insertions, 2 deletions
diff --git a/app-shells/zsh/ChangeLog b/app-shells/zsh/ChangeLog index 6e55ce40e217..c8cc0dda690b 100644 --- a/app-shells/zsh/ChangeLog +++ b/app-shells/zsh/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-shells/zsh # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.7 2002/08/12 18:15:10 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.8 2002/08/19 12:46:27 phoenix Exp $ + +*zsh-4.0.6 (19 Aug 2002) + + 19 Aug 2002; phoen][x <phoenixk@gentoo.org> zsh-4.0.6.ebuild + files/digest-zsh-4.0.6 : + + Bumped to new version. *zsh-4.0.5 (12 Aug 2002) @@ -12,7 +19,7 @@ and missing paths in $fpath. Changed --fndir to /usr/share/zsh (--with-function-subdirs). - *zsh-4.0.4-r2 (3 Mar 2002) +*zsh-4.0.4-r2 (3 Mar 2002) 25 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> zsh-4.0.4-r2.ebuild : Added SLOT. diff --git a/app-shells/zsh/files/digest-zsh-4.0.6 b/app-shells/zsh/files/digest-zsh-4.0.6 new file mode 100644 index 000000000000..dba4516cff6d --- /dev/null +++ b/app-shells/zsh/files/digest-zsh-4.0.6 @@ -0,0 +1 @@ +MD5 6a86da9120e97ebe03afd6a51f717c0f zsh-4.0.6.tar.gz 2146169 diff --git a/app-shells/zsh/zsh-4.0.6.ebuild b/app-shells/zsh/zsh-4.0.6.ebuild new file mode 100644 index 000000000000..618c74a93b48 --- /dev/null +++ b/app-shells/zsh/zsh-4.0.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.6.ebuild,v 1.1 2002/08/19 12:46:27 phoenix Exp $ + +DESCRIPTION="UNIX Shell similar to the Korn shell" +SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.gz" +HOMEPAGE="www.zsh.org/" +SLOT="0" +LICENSE="ZSH" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.1" + +RDEPEND="${DEPEND}" + +KEYWORDS="x86 ppc sparc sparc64" + +src_compile() { + ./configure --prefix=/usr --host=${CHOST} \ + --bindir=/bin \ + --mandir=/usr/share/man \ + --libdir=/usr/lib \ + --infodir=/usr/share/info \ + --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 \ + --enable-function-subdirs || die + emake || die "emake failed" + make check || die +} + +src_install() { + make prefix=${D}/usr \ + bindir=${D}/bin \ + mandir=${D}/usr/share/man \ + libdir=${D}/usr/lib \ + fndir=${D}/usr/share/zsh \ + infodir=${D}/usr/share/info \ + install.bin install.man install.modules \ + install.info install.fns || die + + dodoc ChangeLog META-FAQ README INSTALL LICENCE config.modules + docinto StartupFiles + dodoc StartupFiles/z* + dodir /etc/zsh + cp ${S}/StartupFiles/z* ${D}/etc/zsh + + rm -rf ${D}/share +} |