diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-23 04:13:35 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-23 04:13:35 +0000 |
commit | 23fd6f5724a98ca444ec9c40035eebf0bf4bb62b (patch) | |
tree | 37b6a2200afb2d2e0914e91556e986d7536a6f14 /app-shells | |
parent | updated DESCRIPTION (diff) | |
download | gentoo-2-23fd6f5724a98ca444ec9c40035eebf0bf4bb62b.tar.gz gentoo-2-23fd6f5724a98ca444ec9c40035eebf0bf4bb62b.tar.bz2 gentoo-2-23fd6f5724a98ca444ec9c40035eebf0bf4bb62b.zip |
modernised
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/zsh/zsh-4.0.6.ebuild | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/app-shells/zsh/zsh-4.0.6.ebuild b/app-shells/zsh/zsh-4.0.6.ebuild index ad5c45fd27f3..3172e6f1828f 100644 --- a/app-shells/zsh/zsh-4.0.6.ebuild +++ b/app-shells/zsh/zsh-4.0.6.ebuild @@ -1,6 +1,6 @@ # 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.2 2002/08/19 12:55:28 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.6.ebuild,v 1.3 2002/08/23 04:13:35 seemant Exp $ DESCRIPTION="UNIX Shell similar to the Korn shell" SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.gz" @@ -8,19 +8,14 @@ HOMEPAGE="www.zsh.org/" SLOT="0" LICENSE="ZSH" -DEPEND="virtual/glibc - >=sys-libs/ncurses-5.1" - -RDEPEND="${DEPEND}" +DEPEND=">=sys-libs/ncurses-5.1" KEYWORDS="x86 ppc sparc sparc64" src_compile() { - ./configure --prefix=/usr --host=${CHOST} \ + econf \ --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 \ @@ -34,12 +29,10 @@ src_compile() { } src_install() { - make prefix=${D}/usr \ + einstall \ 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 "make install failed" |