diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2003-06-20 05:59:02 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2003-06-20 05:59:02 +0000 |
commit | cac7dd28bc7d36b7ebb02ca36b95c011722a0a4b (patch) | |
tree | 201a5827928e0e6fa9d26e91d151223fa72e621e /shells/zsh/Makefile | |
parent | ca88321ed4467a58d927810e8df9c95ae93b4e42 (diff) | |
download | pkgsrc-cac7dd28bc7d36b7ebb02ca36b95c011722a0a4b.tar.gz |
Update to 4.0.7.
Bug fix release for stable version as well as a few completion
improvements. Also includes more current MASTER_SITES.
PR21938 by Geoff Wing <gcw at primenet dot com dot au>.
Diffstat (limited to 'shells/zsh/Makefile')
-rw-r--r-- | shells/zsh/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index abe5c3e470d..17c514936c3 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -1,15 +1,16 @@ -# $NetBSD: Makefile,v 1.39 2003/03/14 19:37:55 jlam Exp $ +# $NetBSD: Makefile,v 1.40 2003/06/20 05:59:02 uebayasi Exp $ -DISTNAME= zsh-4.0.6 +DISTNAME= zsh-4.0.7 CATEGORIES= shells -MASTER_SITES= ftp://ftp.rge.com/pub/shells/zsh/ \ - ftp://sunsite.auc.dk/pub/unix/shells/zsh/ \ - ftp://ftp.uit.no/pub/unix/shells/zsh/ \ - ftp://ftp.net.lut.ac.uk/zsh/ \ +MASTER_SITES= ftp://sunsite.dk/pub/unix/shells/zsh/ \ + ftp://ftp.fu-berlin.de/pub/unix/shells/zsh/ \ + ftp://ftp.lysator.liu.se/pub/unix/zsh/ \ + ftp://ftp.funet.fi/pub/unix/shells/zsh/ \ + http://www.math.technion.ac.il/pub/zsh/ \ ftp://ftp.zsh.org/zsh/ EXTRACT_SUFX= .tar.bz2 -MAINTAINER= uebayasi@netbsd.org +MAINTAINER= gcw@zsh.org HOMEPAGE= http://sunsite.dk/zsh/ COMMENT= The Z shell @@ -43,5 +44,12 @@ post-install: @cd ${WRKSRC}/Etc; ${INSTALL_DATA} BUGS FAQ FEATURES NEWS \ ${PREFIX}/share/doc/zsh +test: + @if [ `${ID} -u` != 0 ]; then \ + ${ECHO_MSG} "You must be root to run this target."; \ + else \ + (cd ${WRKSRC}; ${MAKE} check) \ + fi + .include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" |