diff options
author | 2002-02-05 18:08:09 +0000 | |
---|---|---|
committer | 2002-02-05 18:08:09 +0000 | |
commit | 92fd16c89f15cb8c7b7a4925cd6531978b8fa49f (patch) | |
tree | cabca20a36f185789022e1dc0f4ceaa092defcff /app-shells/zsh | |
parent | portage-1.8.9_pre3 bugfix (diff) | |
download | historical-92fd16c89f15cb8c7b7a4925cd6531978b8fa49f.tar.gz historical-92fd16c89f15cb8c7b7a4925cd6531978b8fa49f.tar.bz2 historical-92fd16c89f15cb8c7b7a4925cd6531978b8fa49f.zip |
Fixed sandbox violations, parallell building disabled, zsh functions now installed properly
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/ChangeLog | 9 | ||||
-rw-r--r-- | app-shells/zsh/files/digest-zsh-4.0.4 | 1 | ||||
-rw-r--r-- | app-shells/zsh/files/digest-zsh-4.0.4-r1 | 1 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.0.4-r1.ebuild (renamed from app-shells/zsh/zsh-4.0.4.ebuild) | 17 |
4 files changed, 19 insertions, 9 deletions
diff --git a/app-shells/zsh/ChangeLog b/app-shells/zsh/ChangeLog index fbbb2f1a476b..0ef589608806 100644 --- a/app-shells/zsh/ChangeLog +++ b/app-shells/zsh/ChangeLog @@ -1,8 +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.1 2002/02/01 21:53:09 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.2 2002/02/05 18:08:09 karltk Exp $ -*zsh-4.0.4 (1 Feb 2002) +*zsh-4.0.4-r1 (5 Feb 2002) + + 5 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> zsh-4.0.4.ebuild zsh-4.0.4-r1.ebuild files/digest-zsh-4.0.4 files/digest-zsh-4.0.4-r1 + + The ebuild now installs the standard zsh functions properly. It can also + now be run nicely within the sandbox. 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : diff --git a/app-shells/zsh/files/digest-zsh-4.0.4 b/app-shells/zsh/files/digest-zsh-4.0.4 deleted file mode 100644 index c17e20e56c86..000000000000 --- a/app-shells/zsh/files/digest-zsh-4.0.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 c49e228c269b2ff4a0001941f4eb3bf7 zsh-4.0.4.tar.gz 2123119 diff --git a/app-shells/zsh/files/digest-zsh-4.0.4-r1 b/app-shells/zsh/files/digest-zsh-4.0.4-r1 new file mode 100644 index 000000000000..e73ac9b527d3 --- /dev/null +++ b/app-shells/zsh/files/digest-zsh-4.0.4-r1 @@ -0,0 +1 @@ +MD5 c49e228c269b2ff4a0001941f4eb3bf7 zsh-4.0.4.tar.gz 2125824 diff --git a/app-shells/zsh/zsh-4.0.4.ebuild b/app-shells/zsh/zsh-4.0.4-r1.ebuild index 4bfa517a68b3..1cb75deafd2a 100644 --- a/app-shells/zsh/zsh-4.0.4.ebuild +++ b/app-shells/zsh/zsh-4.0.4-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> # This ebuild by Parag Mehta <pm@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.4.ebuild,v 1.2 2001/11/27 08:15:56 jerrya Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.4-r1.ebuild,v 1.1 2002/02/05 18:08:09 karltk Exp $ S=${WORKDIR}/${P} @@ -26,15 +26,20 @@ src_compile() { --enable-zshrc=/etc/zsh/zshrc \ --enable-fndir=/usr/share \ --enable-function-subdirs || die - emake || die - make check || die + # Can't use emake, b0rks + make || die + # make check violates sandboxing +# make check || die } src_install() { - make prefix=${D} mandir=${D}/usr/share/man \ - libdir=${D}/usr/lib fndir=${D}/usr/share \ + make prefix=${D} \ + mandir=${D}/usr/share/man \ + libdir=${D}/usr/lib \ + fndir=${D}/usr/share \ + infodir=${D}/usr/share/info \ install.bin install.man install.modules \ - install.info || die + install.info install.fns || die dodoc ChangeLog META-FAQ README INSTALL LICENCE config.modules docinto StartupFiles |