summaryrefslogtreecommitdiff
path: root/shells/zsh-current/Makefile
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-05-18 20:31:19 +0000
committerjtb <jtb@pkgsrc.org>2001-05-18 20:31:19 +0000
commit3960a633c3e6e75877c682dd15aed1beebdeefed (patch)
tree93730c4215bed97dddcacd5a8250dcb7cbbfabfc /shells/zsh-current/Makefile
parentd3c108e26d73397d39310f4fa75fae47c9e6bef9 (diff)
downloadpkgsrc-3960a633c3e6e75877c682dd15aed1beebdeefed.tar.gz
Initial import of zsh-current.
Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell). Package provided in private mail by Masao Uebayashi <uebayasi@soum.co.jp> as a followup to pkg/12721.
Diffstat (limited to 'shells/zsh-current/Makefile')
-rw-r--r--shells/zsh-current/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/shells/zsh-current/Makefile b/shells/zsh-current/Makefile
new file mode 100644
index 00000000000..b9ce36059c7
--- /dev/null
+++ b/shells/zsh-current/Makefile
@@ -0,0 +1,35 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/05/18 20:31:19 jtb Exp $
+
+DISTNAME= zsh-3.1.9
+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.cenatls.cena.dgac.fr/shells/zsh/ \
+ ftp://ftp.net.lut.ac.uk/zsh/ \
+ ftp://ftp.zsh.org/zsh/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://sunsite.auc.dk/zsh/
+COMMENT= The Z shell
+
+CONFLICTS= zsh-3.0.*
+
+GNU_CONFIGURE= yes
+INFO_FILES= zsh.info
+
+.include "../../mk/bsd.prefs.mk"
+
+.if defined(ZSH_STATIC)
+LDFLAGS+= -static
+.else
+PLIST+= PLIST.dynamic
+.endif
+
+post-install:
+ @cd ${WRKSRC}/Doc; make install.info
+ ${CP} /etc/shells /etc/shells.bak
+ (${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; ${ECHO} ${PREFIX}/bin/zsh) >/etc/shells
+ ${RM} /etc/shells.bak
+
+.include "../../mk/bsd.pkg.mk"