upgrade to zsh 3.0.6
This commit is contained in:
parent
e708762b52
commit
3e3a81f437
@ -1,6 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.7 1999/06/23 17:01:43 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 1999/08/04 03:57:39 brad Exp $
|
||||
|
||||
DISTNAME= zsh-3.0.5
|
||||
DISTNAME= zsh-3.0.6
|
||||
CATEGORIES= shells
|
||||
MASTER_SITES= ftp://ftp.zsh.org/zsh/ \
|
||||
ftp://ftp.math.gatech.edu/pub/zsh/ \
|
||||
@ -15,7 +15,7 @@ MASTER_SITES= ftp://ftp.zsh.org/zsh/ \
|
||||
MAINTAINER= gene@OpenBSD.ORG
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free
|
||||
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free
|
||||
|
||||
# If you want to build a static binary, uncomment the following line
|
||||
#LDFLAGS+=-static
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (zsh-3.0.5.tar.gz) = 7c3ce278a75ee8d05c5d0fc1821b2a7a
|
||||
RMD160 (zsh-3.0.5.tar.gz) = 7141e8d634917f9c5a23302a52190080836abe75
|
||||
SHA1 (zsh-3.0.5.tar.gz) = 01449b03ec02745604e2e2432dfd10cb2f2a56d6
|
||||
MD5 (zsh-3.0.6.tar.gz) = 12fd65a2e3629674fd01f84a37e0e23e
|
||||
RMD160 (zsh-3.0.6.tar.gz) = a41eb6dbb35f6b1012fdb7c6cbb69e47f6e170a9
|
||||
SHA1 (zsh-3.0.6.tar.gz) = 107c4d58a660541b8d9762381b14acb58e973c94
|
||||
|
@ -1,19 +1,11 @@
|
||||
*** Src/Makefile.in.orig Tue Jul 9 11:00:39 1996
|
||||
--- Src/Makefile.in Tue Jul 9 11:00:46 1996
|
||||
***************
|
||||
*** 138,144 ****
|
||||
# install binary, creating install directory if necessary
|
||||
install.bin: zsh
|
||||
$(top_srcdir)/mkinstalldirs $(bindir)
|
||||
! -if [ -f $(bindir)/zsh ]; then mv $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
$(INSTALL_PROGRAM) zsh $(bindir)/zsh
|
||||
-if [ -f $(bindir)/zsh-$(VERSION) ]; then rm -f $(bindir)/zsh-$(VERSION); fi
|
||||
ln $(bindir)/zsh $(bindir)/zsh-$(VERSION)
|
||||
--- 138,144 ----
|
||||
# install binary, creating install directory if necessary
|
||||
install.bin: zsh
|
||||
$(top_srcdir)/mkinstalldirs $(bindir)
|
||||
! -if [ -f $(bindir)/zsh ]; then mv -f $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
$(INSTALL_PROGRAM) zsh $(bindir)/zsh
|
||||
-if [ -f $(bindir)/zsh-$(VERSION) ]; then rm -f $(bindir)/zsh-$(VERSION); fi
|
||||
ln $(bindir)/zsh $(bindir)/zsh-$(VERSION)
|
||||
--- Src/Makefile.in.orig Tue Aug 3 22:54:59 1999
|
||||
+++ Src/Makefile.in Tue Aug 3 22:55:37 1999
|
||||
@@ -148,7 +148,7 @@
|
||||
# install binary, creating install directory if necessary
|
||||
install.bin: zsh
|
||||
$(top_srcdir)/mkinstalldirs $(bindir)
|
||||
- -if [ -f $(bindir)/zsh ]; then mv $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
+ -if [ -f $(bindir)/zsh ]; then mv -f $(bindir)/zsh $(bindir)/zsh.old; fi
|
||||
$(INSTALL_PROGRAM) zsh $(bindir)/zsh
|
||||
-if [ -f $(bindir)/zsh-$(VERSION) ]; then rm -f $(bindir)/zsh-$(VERSION); fi
|
||||
ln $(bindir)/zsh $(bindir)/zsh-$(VERSION)
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- Doc/Makefile.in.orig Wed Dec 18 05:14:11 1996
|
||||
+++ Doc/Makefile.in Mon Jun 16 20:40:29 1997
|
||||
@@ -93,7 +93,8 @@
|
||||
--- Doc/Makefile.in.orig Tue Aug 3 22:56:17 1999
|
||||
+++ Doc/Makefile.in Tue Aug 3 22:57:17 1999
|
||||
@@ -91,7 +91,8 @@
|
||||
everything: all zsh_us.ps zsh_a4.ps zsh_toc.html
|
||||
|
||||
zsh.info: zsh.texi
|
||||
@ -10,11 +10,11 @@
|
||||
echo Info documentation cannot be compiled without $(MAKEINFO). ; \
|
||||
echo You can find precompiled info files in zsh-doc.tar.gz. ; }
|
||||
|
||||
@@ -127,7 +128,7 @@
|
||||
@@ -125,7 +126,7 @@
|
||||
# install info pages, creating install directory if necessary
|
||||
install.info: zsh.info
|
||||
$(top_srcdir)/mkinstalldirs $(infodir)
|
||||
- for file in zsh.info zsh.info-[1-9]; do \
|
||||
- for file in zsh.info zsh.info-[1-9]*; do \
|
||||
+ for file in zsh.info*; do \
|
||||
[ -f "$$file" ] && $(INSTALL_DATA) $$file $(infodir) ; \
|
||||
done
|
||||
|
@ -1,13 +1,13 @@
|
||||
--- Doc/zsh.texi.orig Thu Dec 19 09:00:10 1996
|
||||
+++ Doc/zsh.texi Mon Jun 16 20:35:02 1997
|
||||
--- Doc/zsh.texi.orig Tue Aug 3 22:58:00 1999
|
||||
+++ Doc/zsh.texi Tue Aug 3 23:00:08 1999
|
||||
@@ -2,6 +2,10 @@
|
||||
@c %**start of header
|
||||
@setfilename zsh.info
|
||||
@settitle zsh
|
||||
+@dircategory Shells
|
||||
+@direntry
|
||||
+* Zsh: (zsh). The Z shell.
|
||||
+* Zsh: (zsh). The Z shell.
|
||||
+@end direntry
|
||||
@c %**end of header
|
||||
|
||||
@setchapternewpage odd
|
||||
@ifinfo
|
||||
|
@ -1,6 +1,6 @@
|
||||
bin/zsh
|
||||
@unexec echo "Don't forget to update /etc/shells"
|
||||
bin/zsh-3.0.5
|
||||
bin/zsh-3.0.6
|
||||
@unexec install-info --delete %D/info/zsh.info %D/info/dir
|
||||
info/zsh.info
|
||||
@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir
|
||||
|
Loading…
Reference in New Issue
Block a user