summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorjtb <jtb>2001-06-05 04:08:24 +0000
committerjtb <jtb>2001-06-05 04:08:24 +0000
commit2264120570dfc0f53eeb339aecc179b3af513f08 (patch)
treeca3143f2fdb838fd7845adc2b38f83ac1835051b /shells
parentb492fc70402a4cf5164d57a1b623e79f17851ae3 (diff)
downloadpkgsrc-2264120570dfc0f53eeb339aecc179b3af513f08.tar.gz
Import of zsh-4.0.1 as zsh4.
The changes from previous stable release (3.0.8) are almost 15,000 lines of changelog. (Not included here, see ChangeLog-3.1 in source distribution). Provided by Masao Uebayashi <uebayasi@soum.co.jp> in PR pkg/13113 with some changes by me.
Diffstat (limited to 'shells')
-rw-r--r--shells/zsh4/Makefile36
-rw-r--r--shells/zsh4/distinfo6
-rw-r--r--shells/zsh4/patches/patch-aa13
-rw-r--r--shells/zsh4/patches/patch-ab13
-rw-r--r--shells/zsh4/pkg/DESCR6
-rw-r--r--shells/zsh4/pkg/PLIST395
-rw-r--r--shells/zsh4/pkg/PLIST.dynamic28
7 files changed, 497 insertions, 0 deletions
diff --git a/shells/zsh4/Makefile b/shells/zsh4/Makefile
new file mode 100644
index 00000000000..c440615b6f3
--- /dev/null
+++ b/shells/zsh4/Makefile
@@ -0,0 +1,36 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/06/05 04:08:24 jtb Exp $
+
+DISTNAME= zsh-4.0.1
+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/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= uebayasi@soum.co.jp
+HOMEPAGE= http://sunsite.auc.dk/zsh/
+COMMENT= The Z shell
+
+GNU_CONFIGURE= yes
+INFO_FILES= zsh.info
+
+PLIST_SRC= ${PKGDIR}/PLIST
+
+.include "../../mk/bsd.prefs.mk"
+
+.if defined(ZSH_STATIC)
+LDFLAGS+= -static
+.else
+PLIST_SRC+= ${PKGDIR}/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"
diff --git a/shells/zsh4/distinfo b/shells/zsh4/distinfo
new file mode 100644
index 00000000000..80e3651f06f
--- /dev/null
+++ b/shells/zsh4/distinfo
@@ -0,0 +1,6 @@
+SHA1 (patch-aa) = 0cfe03d2bbae988a6c59ec4ee67244ed836d7f1d
+
+SHA1 (zsh-4.0.1.tar.bz2) = f47c555f4d85745017869b15e22d64a67304a716
+Size (zsh-4.0.1.tar.bz2) = 1650945 bytes
+SHA1 (patch-aa) = 0cfe03d2bbae988a6c59ec4ee67244ed836d7f1d
+SHA1 (patch-ab) = 9f9ca7de2eb97308102316ef2acc8b0fa5175f93
diff --git a/shells/zsh4/patches/patch-aa b/shells/zsh4/patches/patch-aa
new file mode 100644
index 00000000000..053ed912096
--- /dev/null
+++ b/shells/zsh4/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/06/05 04:08:28 jtb Exp $
+
+--- Doc/Makefile.in.orig Fri Jun 1 23:43:42 2001
++++ Doc/Makefile.in
+@@ -37,7 +37,7 @@
+
+ @DEFS_MK@
+
+-MAKEINFO = makeinfo
++MAKEINFO = makeinfo --no-split
+ TEXI2DVI = texi2dvi
+ DVIPS = dvips
+ TEXI2HTML = texi2html -expandinfo -split_chapter
diff --git a/shells/zsh4/patches/patch-ab b/shells/zsh4/patches/patch-ab
new file mode 100644
index 00000000000..6f13155158a
--- /dev/null
+++ b/shells/zsh4/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2001/06/05 04:08:28 jtb Exp $
+
+--- configure.orig Fri Jun 1 14:52:49 2001
++++ configure
+@@ -6771,7 +6771,7 @@
+ DLLDARG=""
+ fi
+ if test -n "$GCC"; then
+- DLCFLAGS="${DLCFLAGS=-fpic}"
++ DLCFLAGS="${DLCFLAGS=-fPIC}"
+ else
+ case "$host_os" in
+ hpux*) DLCFLAGS="${DLCFLAGS=+z}" ;;
diff --git a/shells/zsh4/pkg/DESCR b/shells/zsh4/pkg/DESCR
new file mode 100644
index 00000000000..8f4144f053e
--- /dev/null
+++ b/shells/zsh4/pkg/DESCR
@@ -0,0 +1,6 @@
+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).
diff --git a/shells/zsh4/pkg/PLIST b/shells/zsh4/pkg/PLIST
new file mode 100644
index 00000000000..2b4aaa46efd
--- /dev/null
+++ b/shells/zsh4/pkg/PLIST
@@ -0,0 +1,395 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2001/06/05 04:08:27 jtb Exp $
+bin/zsh
+@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells
+@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells
+bin/${PKGNAME}
+@unexec install-info --delete %D/info/zsh.info %D/info/dir
+info/zsh.info
+@exec install-info %D/info/zsh.info %D/info/dir
+man/man1/zsh.1
+man/man1/zshall.1
+man/man1/zshbuiltins.1
+man/man1/zshcompctl.1
+man/man1/zshcompsys.1
+man/man1/zshcompwid.1
+man/man1/zshcontrib.1
+man/man1/zshexpn.1
+man/man1/zshmisc.1
+man/man1/zshmodules.1
+man/man1/zshoptions.1
+man/man1/zshparam.1
+man/man1/zshzftpsys.1
+man/man1/zshzle.1
+share/zsh/4.0.1/functions/_a2ps
+share/zsh/4.0.1/functions/_alias
+share/zsh/4.0.1/functions/_aliases
+share/zsh/4.0.1/functions/_all_labels
+share/zsh/4.0.1/functions/_all_matches
+share/zsh/4.0.1/functions/_alternative
+share/zsh/4.0.1/functions/_apachectl
+share/zsh/4.0.1/functions/_apm
+share/zsh/4.0.1/functions/_approximate
+share/zsh/4.0.1/functions/_apt
+share/zsh/4.0.1/functions/_archie
+share/zsh/4.0.1/functions/_arg_compile
+share/zsh/4.0.1/functions/_arguments
+share/zsh/4.0.1/functions/_arp
+share/zsh/4.0.1/functions/_arrays
+share/zsh/4.0.1/functions/_autoload
+share/zsh/4.0.1/functions/_bash_completions
+share/zsh/4.0.1/functions/_bindkey
+share/zsh/4.0.1/functions/_bison
+share/zsh/4.0.1/functions/_brace_parameter
+share/zsh/4.0.1/functions/_bsd_pkg
+share/zsh/4.0.1/functions/_bug
+share/zsh/4.0.1/functions/_builtin
+share/zsh/4.0.1/functions/_bzip2
+share/zsh/4.0.1/functions/_cache_invalid
+share/zsh/4.0.1/functions/_call_function
+share/zsh/4.0.1/functions/_call_program
+share/zsh/4.0.1/functions/_cd
+share/zsh/4.0.1/functions/_chown
+share/zsh/4.0.1/functions/_combination
+share/zsh/4.0.1/functions/_command
+share/zsh/4.0.1/functions/_command_names
+share/zsh/4.0.1/functions/_compdef
+share/zsh/4.0.1/functions/_complete
+share/zsh/4.0.1/functions/_complete_debug
+share/zsh/4.0.1/functions/_complete_help
+share/zsh/4.0.1/functions/_complete_tag
+share/zsh/4.0.1/functions/_compress
+share/zsh/4.0.1/functions/_condition
+share/zsh/4.0.1/functions/_configure
+share/zsh/4.0.1/functions/_contexts
+share/zsh/4.0.1/functions/_correct
+share/zsh/4.0.1/functions/_correct_filename
+share/zsh/4.0.1/functions/_correct_word
+share/zsh/4.0.1/functions/_cpio
+share/zsh/4.0.1/functions/_cvs
+share/zsh/4.0.1/functions/_cvsup
+share/zsh/4.0.1/functions/_dd
+share/zsh/4.0.1/functions/_deb_packages
+share/zsh/4.0.1/functions/_default
+share/zsh/4.0.1/functions/_describe
+share/zsh/4.0.1/functions/_description
+share/zsh/4.0.1/functions/_dict
+share/zsh/4.0.1/functions/_dict_words
+share/zsh/4.0.1/functions/_diff
+share/zsh/4.0.1/functions/_diff_options
+share/zsh/4.0.1/functions/_dir_list
+share/zsh/4.0.1/functions/_directories
+share/zsh/4.0.1/functions/_directory_stack
+share/zsh/4.0.1/functions/_disable
+share/zsh/4.0.1/functions/_domains
+share/zsh/4.0.1/functions/_dpkg
+share/zsh/4.0.1/functions/_dpkg_source
+share/zsh/4.0.1/functions/_dupload
+share/zsh/4.0.1/functions/_dvi
+share/zsh/4.0.1/functions/_echotc
+share/zsh/4.0.1/functions/_echoti
+share/zsh/4.0.1/functions/_elm
+share/zsh/4.0.1/functions/_emulate
+share/zsh/4.0.1/functions/_enable
+share/zsh/4.0.1/functions/_enscript
+share/zsh/4.0.1/functions/_equal
+share/zsh/4.0.1/functions/_expand
+share/zsh/4.0.1/functions/_expand_alias
+share/zsh/4.0.1/functions/_expand_word
+share/zsh/4.0.1/functions/_fakeroot
+share/zsh/4.0.1/functions/_fc
+share/zsh/4.0.1/functions/_fetchmail
+share/zsh/4.0.1/functions/_file_descriptors
+share/zsh/4.0.1/functions/_files
+share/zsh/4.0.1/functions/_find
+share/zsh/4.0.1/functions/_finger
+share/zsh/4.0.1/functions/_first
+share/zsh/4.0.1/functions/_flex
+share/zsh/4.0.1/functions/_floppy
+share/zsh/4.0.1/functions/_functions
+share/zsh/4.0.1/functions/_gcc
+share/zsh/4.0.1/functions/_gdb
+share/zsh/4.0.1/functions/_generic
+share/zsh/4.0.1/functions/_getconf
+share/zsh/4.0.1/functions/_gnu_generic
+share/zsh/4.0.1/functions/_gprof
+share/zsh/4.0.1/functions/_grep
+share/zsh/4.0.1/functions/_groups
+share/zsh/4.0.1/functions/_gs
+share/zsh/4.0.1/functions/_guard
+share/zsh/4.0.1/functions/_gv
+share/zsh/4.0.1/functions/_gzip
+share/zsh/4.0.1/functions/_hash
+share/zsh/4.0.1/functions/_history
+share/zsh/4.0.1/functions/_history_complete_word
+share/zsh/4.0.1/functions/_hosts
+share/zsh/4.0.1/functions/_iconv
+share/zsh/4.0.1/functions/_ignored
+share/zsh/4.0.1/functions/_imagemagick
+share/zsh/4.0.1/functions/_in_vared
+share/zsh/4.0.1/functions/_init_d
+share/zsh/4.0.1/functions/_ispell
+share/zsh/4.0.1/functions/_java
+share/zsh/4.0.1/functions/_jobs
+share/zsh/4.0.1/functions/_jobs_bg
+share/zsh/4.0.1/functions/_jobs_builtin
+share/zsh/4.0.1/functions/_jobs_fg
+share/zsh/4.0.1/functions/_joe
+share/zsh/4.0.1/functions/_kill
+share/zsh/4.0.1/functions/_killall
+share/zsh/4.0.1/functions/_kld
+share/zsh/4.0.1/functions/_limits
+share/zsh/4.0.1/functions/_list
+share/zsh/4.0.1/functions/_loadkeys
+share/zsh/4.0.1/functions/_logical_volumes
+share/zsh/4.0.1/functions/_look
+share/zsh/4.0.1/functions/_lp
+share/zsh/4.0.1/functions/_ls
+share/zsh/4.0.1/functions/_lscfg
+share/zsh/4.0.1/functions/_lsdev
+share/zsh/4.0.1/functions/_lslv
+share/zsh/4.0.1/functions/_lspv
+share/zsh/4.0.1/functions/_lsvg
+share/zsh/4.0.1/functions/_lynx
+share/zsh/4.0.1/functions/_lzop
+share/zsh/4.0.1/functions/_mail
+share/zsh/4.0.1/functions/_mailboxes
+share/zsh/4.0.1/functions/_main_complete
+share/zsh/4.0.1/functions/_make
+share/zsh/4.0.1/functions/_man
+share/zsh/4.0.1/functions/_match
+share/zsh/4.0.1/functions/_math
+share/zsh/4.0.1/functions/_menu
+share/zsh/4.0.1/functions/_mere
+share/zsh/4.0.1/functions/_message
+share/zsh/4.0.1/functions/_mh
+share/zsh/4.0.1/functions/_modutils
+share/zsh/4.0.1/functions/_most_recent_file
+share/zsh/4.0.1/functions/_mount
+share/zsh/4.0.1/functions/_multi_parts
+share/zsh/4.0.1/functions/_mutt
+share/zsh/4.0.1/functions/_my_accounts
+share/zsh/4.0.1/functions/_mysql_utils
+share/zsh/4.0.1/functions/_ncftp
+share/zsh/4.0.1/functions/_nedit
+share/zsh/4.0.1/functions/_netscape
+share/zsh/4.0.1/functions/_newsgroups
+share/zsh/4.0.1/functions/_next_label
+share/zsh/4.0.1/functions/_next_tags
+share/zsh/4.0.1/functions/_normal
+share/zsh/4.0.1/functions/_nothing
+share/zsh/4.0.1/functions/_nslookup
+share/zsh/4.0.1/functions/_object_classes
+share/zsh/4.0.1/functions/_oldlist
+share/zsh/4.0.1/functions/_options
+share/zsh/4.0.1/functions/_options_set
+share/zsh/4.0.1/functions/_options_unset
+share/zsh/4.0.1/functions/_other_accounts
+share/zsh/4.0.1/functions/_pack
+share/zsh/4.0.1/functions/_parameter
+share/zsh/4.0.1/functions/_parameters
+share/zsh/4.0.1/functions/_patch
+share/zsh/4.0.1/functions/_path_files
+share/zsh/4.0.1/functions/_pbm
+share/zsh/4.0.1/functions/_pdf
+share/zsh/4.0.1/functions/_perl
+share/zsh/4.0.1/functions/_perl_basepods
+share/zsh/4.0.1/functions/_perl_builtin_funcs
+share/zsh/4.0.1/functions/_perl_modules
+share/zsh/4.0.1/functions/_perldoc
+share/zsh/4.0.1/functions/_physical_volumes
+share/zsh/4.0.1/functions/_pids
+share/zsh/4.0.1/functions/_pine
+share/zsh/4.0.1/functions/_ports
+share/zsh/4.0.1/functions/_prcs
+share/zsh/4.0.1/functions/_precommand
+share/zsh/4.0.1/functions/_prefix
+share/zsh/4.0.1/functions/_print
+share/zsh/4.0.1/functions/_printers
+share/zsh/4.0.1/functions/_prompt
+share/zsh/4.0.1/functions/_ps
+share/zsh/4.0.1/functions/_pspdf
+share/zsh/4.0.1/functions/_psutils
+share/zsh/4.0.1/functions/_rcs
+share/zsh/4.0.1/functions/_read
+share/zsh/4.0.1/functions/_read_comp
+share/zsh/4.0.1/functions/_redirect
+share/zsh/4.0.1/functions/_regex_arguments
+share/zsh/4.0.1/functions/_requested
+share/zsh/4.0.1/functions/_retrieve_cache
+share/zsh/4.0.1/functions/_rlogin
+share/zsh/4.0.1/functions/_rpm
+share/zsh/4.0.1/functions/_ruby
+share/zsh/4.0.1/functions/_sched
+share/zsh/4.0.1/functions/_sep_parts
+share/zsh/4.0.1/functions/_set
+share/zsh/4.0.1/functions/_setopt
+share/zsh/4.0.1/functions/_setup
+share/zsh/4.0.1/functions/_sh
+share/zsh/4.0.1/functions/_signals
+share/zsh/4.0.1/functions/_slrn
+share/zsh/4.0.1/functions/_smit
+share/zsh/4.0.1/functions/_socket
+share/zsh/4.0.1/functions/_source
+share/zsh/4.0.1/functions/_ssh
+share/zsh/4.0.1/functions/_stat
+share/zsh/4.0.1/functions/_store_cache
+share/zsh/4.0.1/functions/_strip
+share/zsh/4.0.1/functions/_stty
+share/zsh/4.0.1/functions/_su
+share/zsh/4.0.1/functions/_sub_commands
+share/zsh/4.0.1/functions/_subscript
+share/zsh/4.0.1/functions/_sudo
+share/zsh/4.0.1/functions/_tags
+share/zsh/4.0.1/functions/_tar
+share/zsh/4.0.1/functions/_tar_archive
+share/zsh/4.0.1/functions/_telnet
+share/zsh/4.0.1/functions/_tex
+share/zsh/4.0.1/functions/_texi
+share/zsh/4.0.1/functions/_tiff
+share/zsh/4.0.1/functions/_tilde
+share/zsh/4.0.1/functions/_tilde_files
+share/zsh/4.0.1/functions/_tin
+share/zsh/4.0.1/functions/_trap
+share/zsh/4.0.1/functions/_ttyctl
+share/zsh/4.0.1/functions/_typeset
+share/zsh/4.0.1/functions/_ulimit
+share/zsh/4.0.1/functions/_unhash
+share/zsh/4.0.1/functions/_unsetopt
+share/zsh/4.0.1/functions/_update-alternatives
+share/zsh/4.0.1/functions/_urls
+share/zsh/4.0.1/functions/_user_at_host
+share/zsh/4.0.1/functions/_users
+share/zsh/4.0.1/functions/_users_on
+share/zsh/4.0.1/functions/_value
+share/zsh/4.0.1/functions/_values
+share/zsh/4.0.1/functions/_vared
+share/zsh/4.0.1/functions/_vars
+share/zsh/4.0.1/functions/_vnc
+share/zsh/4.0.1/functions/_volume_groups
+share/zsh/4.0.1/functions/_w3m
+share/zsh/4.0.1/functions/_wait
+share/zsh/4.0.1/functions/_wanted
+share/zsh/4.0.1/functions/_webbrowser
+share/zsh/4.0.1/functions/_wget
+share/zsh/4.0.1/functions/_whereis
+share/zsh/4.0.1/functions/_which
+share/zsh/4.0.1/functions/_whois
+share/zsh/4.0.1/functions/_x_arguments
+share/zsh/4.0.1/functions/_x_borderwidth
+share/zsh/4.0.1/functions/_x_color
+share/zsh/4.0.1/functions/_x_colormapid
+share/zsh/4.0.1/functions/_x_cursor
+share/zsh/4.0.1/functions/_x_display
+share/zsh/4.0.1/functions/_x_extension
+share/zsh/4.0.1/functions/_x_font
+share/zsh/4.0.1/functions/_x_geometry
+share/zsh/4.0.1/functions/_x_keysym
+share/zsh/4.0.1/functions/_x_locale
+share/zsh/4.0.1/functions/_x_modifier
+share/zsh/4.0.1/functions/_x_name
+share/zsh/4.0.1/functions/_x_resource
+share/zsh/4.0.1/functions/_x_selection_timeout
+share/zsh/4.0.1/functions/_x_title
+share/zsh/4.0.1/functions/_x_utils
+share/zsh/4.0.1/functions/_x_window
+share/zsh/4.0.1/functions/_xargs
+share/zsh/4.0.1/functions/_xauth
+share/zsh/4.0.1/functions/_xdvi
+share/zsh/4.0.1/functions/_xfig
+share/zsh/4.0.1/functions/_xmodmap
+share/zsh/4.0.1/functions/_xrdb
+share/zsh/4.0.1/functions/_xset
+share/zsh/4.0.1/functions/_xt_arguments
+share/zsh/4.0.1/functions/_xt_session_id
+share/zsh/4.0.1/functions/_xterm
+share/zsh/4.0.1/functions/_xv
+share/zsh/4.0.1/functions/_xwit
+share/zsh/4.0.1/functions/_yodl
+share/zsh/4.0.1/functions/_yp
+share/zsh/4.0.1/functions/_zcat
+share/zsh/4.0.1/functions/_zcompile
+share/zsh/4.0.1/functions/_zdump
+share/zsh/4.0.1/functions/_zed
+share/zsh/4.0.1/functions/_zftp
+share/zsh/4.0.1/functions/_zip
+share/zsh/4.0.1/functions/_zle
+share/zsh/4.0.1/functions/_zmodload
+share/zsh/4.0.1/functions/_zpty
+share/zsh/4.0.1/functions/_zstyle
+share/zsh/4.0.1/functions/allopt
+share/zsh/4.0.1/functions/checkmail
+share/zsh/4.0.1/functions/colors
+share/zsh/4.0.1/functions/compaudit
+share/zsh/4.0.1/functions/compdump
+share/zsh/4.0.1/functions/compinit
+share/zsh/4.0.1/functions/compinstall
+share/zsh/4.0.1/functions/cycle-completion-positions
+share/zsh/4.0.1/functions/edit-command-line
+share/zsh/4.0.1/functions/getjobs
+share/zsh/4.0.1/functions/harden
+share/zsh/4.0.1/functions/history-search-end
+share/zsh/4.0.1/functions/incarg
+share/zsh/4.0.1/functions/incremental-complete-word
+share/zsh/4.0.1/functions/insert-files
+share/zsh/4.0.1/functions/is-at-least
+share/zsh/4.0.1/functions/mere
+share/zsh/4.0.1/functions/nslookup
+share/zsh/4.0.1/functions/predict-on
+share/zsh/4.0.1/functions/prompt_adam1_setup
+share/zsh/4.0.1/functions/prompt_adam2_setup
+share/zsh/4.0.1/functions/prompt_bart_setup
+share/zsh/4.0.1/functions/prompt_bigfade_setup
+share/zsh/4.0.1/functions/prompt_clint_setup
+share/zsh/4.0.1/functions/prompt_elite2_setup
+share/zsh/4.0.1/functions/prompt_elite_setup
+share/zsh/4.0.1/functions/prompt_fade_setup
+share/zsh/4.0.1/functions/prompt_fire_setup
+share/zsh/4.0.1/functions/prompt_off_setup
+share/zsh/4.0.1/functions/prompt_oliver_setup
+share/zsh/4.0.1/functions/prompt_redhat_setup
+share/zsh/4.0.1/functions/prompt_suse_setup
+share/zsh/4.0.1/functions/prompt_zefram_setup
+share/zsh/4.0.1/functions/promptinit
+share/zsh/4.0.1/functions/promptnl
+share/zsh/4.0.1/functions/run-help
+share/zsh/4.0.1/functions/smart-insert-last-word
+share/zsh/4.0.1/functions/zed
+share/zsh/4.0.1/functions/zfanon
+share/zsh/4.0.1/functions/zfautocheck
+share/zsh/4.0.1/functions/zfcd
+share/zsh/4.0.1/functions/zfcd_match
+share/zsh/4.0.1/functions/zfcget
+share/zsh/4.0.1/functions/zfclose
+share/zsh/4.0.1/functions/zfcput
+share/zsh/4.0.1/functions/zfdir
+share/zsh/4.0.1/functions/zffcache
+share/zsh/4.0.1/functions/zfgcp
+share/zsh/4.0.1/functions/zfget
+share/zsh/4.0.1/functions/zfget_match
+share/zsh/4.0.1/functions/zfgoto
+share/zsh/4.0.1/functions/zfhere
+share/zsh/4.0.1/functions/zfinit
+share/zsh/4.0.1/functions/zfls
+share/zsh/4.0.1/functions/zfmark
+share/zsh/4.0.1/functions/zfopen
+share/zsh/4.0.1/functions/zfparams
+share/zsh/4.0.1/functions/zfpcp
+share/zsh/4.0.1/functions/zfput
+share/zsh/4.0.1/functions/zfrglob
+share/zsh/4.0.1/functions/zfrtime
+share/zsh/4.0.1/functions/zfsession
+share/zsh/4.0.1/functions/zfstat
+share/zsh/4.0.1/functions/zftp_chpwd
+share/zsh/4.0.1/functions/zftp_progress
+share/zsh/4.0.1/functions/zftransfer
+share/zsh/4.0.1/functions/zftype
+share/zsh/4.0.1/functions/zfuget
+share/zsh/4.0.1/functions/zfuput
+share/zsh/4.0.1/functions/zkbd
+share/zsh/4.0.1/functions/zmv
+share/zsh/4.0.1/functions/zrecompile
+share/zsh/4.0.1/functions/zstyle+
+@dirrm share/zsh/site-functions
+@dirrm share/zsh/4.0.1/functions
+@dirrm share/zsh/4.0.1
+@dirrm share/zsh
diff --git a/shells/zsh4/pkg/PLIST.dynamic b/shells/zsh4/pkg/PLIST.dynamic
new file mode 100644
index 00000000000..64d77c0f5bc
--- /dev/null
+++ b/shells/zsh4/pkg/PLIST.dynamic
@@ -0,0 +1,28 @@
+@comment $NetBSD: PLIST.dynamic,v 1.1.1.1 2001/06/05 04:08:28 jtb Exp $
+lib/zsh/libzsh-4.0.1.so
+lib/zsh/4.0.1/zsh/rlimits.so
+lib/zsh/4.0.1/zsh/sched.so
+lib/zsh/4.0.1/zsh/cap.so
+lib/zsh/4.0.1/zsh/clone.so
+lib/zsh/4.0.1/zsh/example.so
+lib/zsh/4.0.1/zsh/files.so
+lib/zsh/4.0.1/zsh/mapfile.so
+lib/zsh/4.0.1/zsh/mathfunc.so
+lib/zsh/4.0.1/zsh/parameter.so
+lib/zsh/4.0.1/zsh/stat.so
+lib/zsh/4.0.1/zsh/termcap.so
+lib/zsh/4.0.1/zsh/terminfo.so
+lib/zsh/4.0.1/zsh/zftp.so
+lib/zsh/4.0.1/zsh/zprof.so
+lib/zsh/4.0.1/zsh/zpty.so
+lib/zsh/4.0.1/zsh/zutil.so
+lib/zsh/4.0.1/zsh/compctl.so
+lib/zsh/4.0.1/zsh/complete.so
+lib/zsh/4.0.1/zsh/complist.so
+lib/zsh/4.0.1/zsh/computil.so
+lib/zsh/4.0.1/zsh/deltochar.so
+lib/zsh/4.0.1/zsh/zle.so
+lib/zsh/4.0.1/zsh/zleparameter.so
+@dirrm lib/zsh/4.0.1/zsh
+@dirrm lib/zsh/4.0.1
+@dirrm lib/zsh