upgrade to zsh 3.1.5

This commit is contained in:
brad 1999-03-05 14:38:32 +00:00
parent 8878b73278
commit 4abc967feb
6 changed files with 43 additions and 69 deletions

View File

@ -1,15 +1,9 @@
# OpenBSD makefile for: zsh
# Version required: 3.0.5
# Date created: 17 November 1997
# Whom: gene
#
# $OpenBSD: Makefile,v 1.4 1997/12/15 06:54:00 gene Exp $
#
# $OpenBSD: Makefile,v 1.5 1999/03/05 14:38:32 brad Exp $
DISTNAME= zsh-3.0.5
PKGNAME= zsh-3.0.5
DISTNAME= zsh-3.1.5
CATEGORIES= shells
MASTER_SITES= ftp://ftp.math.gatech.edu/pub/zsh/ \
MASTER_SITES= ftp://ftp.zsh.org/zsh/ \
ftp://ftp.math.gatech.edu/pub/zsh/ \
ftp://ftp.sterling.com/zsh/ \
ftp://ftp.rge.com/pub/zsh/ \
ftp://ftp.cenatls.cena.dgac.fr/pub/shells/zsh/ \
@ -21,9 +15,9 @@ MASTER_SITES= ftp://ftp.math.gatech.edu/pub/zsh/ \
MAINTAINER= gene@OpenBSD.ORG
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free --enable-dynamic
MAN1= zsh.1 zshbuiltins.1 zshcompctl.1 zshexpn.1 zshmisc.1 \
zshoptions.1 zshall.1 zshparam.1 zshzle.1
zshoptions.1 zshall.1 zshparam.1 zshzle.1 zshmodules.1
# If you want to build a static binary, uncomment the following line
#LDFLAGS+=-static

View File

@ -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.1.5.tar.gz) = d954f91b6f0bd71e45e39f1228e7f4d7
RMD160 (zsh-3.1.5.tar.gz) = 751bf2bffda19d307e980d71870f0639d86990f8
SHA1 (zsh-3.1.5.tar.gz) = c20bef2cb427cf31db82a06ccb71f65ef91b9279

View File

@ -1,19 +1,20 @@
*** 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)
--- Doc/Makefile.in.orig Fri Mar 5 09:03:09 1999
+++ Doc/Makefile.in Fri Mar 5 09:04:24 1999
@@ -65,7 +65,7 @@
$(TEXI2DVI) $(sdir)/zsh.texi
zsh.info: zsh.texi
- $(MAKEINFO) $(sdir)/zsh.texi; exit 0
+ $(MAKEINFO) --no-split $(sdir)/zsh.texi; exit 0
zsh.texi: zsh.yo
$(YODL) -o $(sdir)/zsh.texi -I$(sdir) -w ztexi.yo version.yo zsh.yo
@@ -133,7 +133,7 @@
# install info pages, creating install directory if necessary
install.info: zsh.info
$(sdir_top)/mkinstalldirs $(infodir)
- for file in zsh.info zsh.info-[1-9]; do \
+ for file in zsh.info ; do \
if test -f $$file; then \
$(INSTALL_DATA) $$file $(infodir); \
elif test -f $(sdir)/$$file; then \

View File

@ -1,21 +1,13 @@
--- 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 @@
everything: all zsh_us.ps zsh_a4.ps zsh_toc.html
zsh.info: zsh.texi
- @$(MAKEINFO) -I$(srcdir) $(srcdir)/zsh.texi || { \
+ @rm -f zsh.info*
+ @$(MAKEINFO) --no-split -I$(srcdir) $(srcdir)/zsh.texi || { \
echo Info documentation cannot be compiled without $(MAKEINFO). ; \
echo You can find precompiled info files in zsh-doc.tar.gz. ; }
@@ -127,7 +128,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*; do \
[ -f "$$file" ] && $(INSTALL_DATA) $$file $(infodir) ; \
done
--- Doc/zsh.texi.orig Fri Mar 5 09:00:10 1999
+++ Doc/zsh.texi Fri Mar 5 09:01:05 1999
@@ -2,6 +2,10 @@
@c %**start of header
@setfilename zsh.info
@settitle zsh
+@dircategory Shells
+@direntry
+* Zsh: (zsh). The Z shell.
+@end direntry
@c %**end of header
@ifinfo

View File

@ -1,13 +0,0 @@
--- Doc/zsh.texi.orig Thu Dec 19 09:00:10 1996
+++ Doc/zsh.texi Mon Jun 16 20:35:02 1997
@@ -2,6 +2,10 @@
@c %**start of header
@setfilename zsh.info
@settitle zsh
+@dircategory Shells
+@direntry
+* Zsh: (zsh). The Z shell.
+@end direntry
@c %**end of header
@setchapternewpage odd

View File

@ -1,11 +1,10 @@
bin/zsh
@unexec echo "Don't forget to update /etc/shells"
bin/zsh-3.0.5
bin/zsh-3.1.5
@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
@exec install-info %D/info/zsh.info %D/info/dir
info/dir
man/man1/zshcompctl.1
man/man1/zshexpn.1
man/man1/zshmisc.1
@ -15,3 +14,4 @@ man/man1/zshzle.1
man/man1/zsh.1
man/man1/zshbuiltins.1
man/man1/zshparam.1
man/man1/zshmodules.1