There is currently no snapshot version of zsh. Use zsh/stable.

Reduce Makefile to a stub.
This commit is contained in:
lebel 2001-06-03 01:24:00 +00:00
parent 933b847b7d
commit 16fbaf6901
9 changed files with 6 additions and 657 deletions

View File

@ -1,41 +1,19 @@
# $OpenBSD: Makefile,v 1.1 2001/05/10 19:42:34 lebel Exp $
# $OpenBSD: Makefile,v 1.2 2001/06/03 01:24:00 lebel Exp $
COMMENT= "the Z shell, Bourne shell-compatible, development flavor"
VERSION= 3.1.9
DISTNAME= zsh-${VERSION}
CATEGORIES= shells
NEED_VERSION= 1.402
MASTER_SITES= ftp://ftp.zsh.org/zsh/ \
ftp://ftp.sterling.com/zsh/ \
ftp://ftp.rge.com/pub/zsh/ \
ftp://ftp.cenatls.cena.dgac.fr/pub/shells/zsh/ \
ftp://mrrl.lut.ac.uk/zsh/ \
ftp://ftp.fu-berlin.de/pub/unix/shells/zsh/ \
ftp://ftp.ips.oz.au/pub/packages/zsh/ \
ftp://ftp.uit.no/pub/unix/shells/zsh/
HOMEPAGE= http://www.zsh.org/
MAINTAINER= David Lebel <lebel@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
PERMIT_PACKAGE_CDROM= No
PERMIT_PACKAGE_FTP= No
PERMIT_DISTFILES_CDROM= No
PERMIT_DISTFILES_FTP= No
SUBST_VARS= VERSION
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free \
--enable-fndir='$${datadir}/zsh/functions' \
--disable-dynamic
FLAVORS= static
FLAVOR?=
.if ${FLAVOR:L} == "static"
CONFIGURE_ENV= LDFLAGS="-static"
.endif
IGNORE="There is currently no snapshot version of zsh. Use zsh/stable"
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
MD5 (zsh-3.1.9.tar.gz) = b69ed3f04d2a3eb676f8d2ace562270a
RMD160 (zsh-3.1.9.tar.gz) = 6ad8bc2453e76c4312e393632796c3aeb900e6a9
SHA1 (zsh-3.1.9.tar.gz) = 0248f047aa47933582706a49cd4d1404f14642f3

View File

@ -1,43 +0,0 @@
$OpenBSD: patch-Doc_Makefile_in,v 1.1 2001/05/10 19:50:28 lebel Exp $
--- Doc/Makefile.in.orig Mon Jun 5 04:57:32 2000
+++ Doc/Makefile.in Thu May 10 15:48:42 2001
@@ -37,7 +37,7 @@ INSTALL = @INSTALL@
@DEFS_MK@
-MAKEINFO = makeinfo
+MAKEINFO = makeinfo --no-split
TEXI2DVI = texi2dvi
DVIPS = dvips
TEXI2HTML = texi2html -expandinfo -split_chapter
@@ -96,6 +96,7 @@ info: zsh.info
.PHONY: info
zsh.info: $(sdir)/zsh.texi
+ @rm -f zsh.info*
$(MAKEINFO) $(sdir)/zsh.texi
.yo.1:
@@ -238,11 +239,11 @@ Zsh/manmodmenu.yo: $(MODDOCSRC)
# ========== DEPENDENCIES FOR INSTALLING ==========
# install just installs the manual pages
-install: install.man
+install: install.man install.info
.PHONY: install
# uninstall just unistalls the manual pages
-uninstall: uninstall.man
+uninstall: uninstall.man uninstall.info
.PHONY: uninstall
# install man pages, creating install directory if necessary
@@ -262,7 +263,7 @@ install.info: texi
sed '/^@setfilename/s|zsh|$(tzsh)|' \
< $(sdir)/zsh.texi > infodir/tzsh.texi && \
(cd infodir && $(MAKEINFO) tzsh.texi) && \
- for file in infodir/$(tzsh).info*; do \
+ for file in infodir/$(tzsh).info; do \
$(INSTALL_DATA) $$file $(DESTDIR)$(infodir) || exit 1; \
done \
); then \

View File

@ -1,167 +0,0 @@
$OpenBSD: patch-Doc_zsh_texi,v 1.1 2001/05/10 19:50:28 lebel Exp $
--- Doc/zsh.texi.orig Mon Jun 5 04:59:37 2000
+++ Doc/zsh.texi Thu May 10 15:48:42 2001
@@ -7,6 +7,10 @@
@end iftex
@setfilename zsh.info
@settitle zsh
+@dircategory Shells
+@direntry
+* Zsh: (zsh). The Z shell.
+@end direntry
@c %**end of header
@ifinfo
@@ -1185,14 +1189,14 @@ entirely quoted. A literal `@t{'}' char
string by using the `@t{\'}' escape.
@noindent
-All characters enclosed between a pair of single quotes (@t{@value{dsq}}) that
+All characters enclosed between a pair of single quotes (@t{'}@t{'}) that
is not preceded by a `@t{$}' are quoted. A single quote cannot appear
within single quotes unless the option @t{RC_QUOTES} is set, in which case
a pair of single quotes are turned into a single quote. For example,
@noindent
@example
-print @value{dsq}@value{dsq}
+print @t{'}@t{'}@t{'}@t{'}
@end example
@noindent
@@ -2674,7 +2678,7 @@ that is to be assigned to the @emph{next
A history expansion begins with the first character of the @t{histchars}
parameter, which is `@t{!}' by default, and may occur anywhere on the
command line; history expansions do not nest. The `@t{!}' can be escaped
-with `@t{\}' or can be enclosed between a pair of single quotes (@t{@value{dsq}})
+with `@t{\}' or can be enclosed between a pair of single quotes (@t{'}@t{'})
to suppress its special meaning. Double quotes will @emph{not} work for
this. Following this history character is an optional event designator
(@ref{Event Designators}) and then an optional word
@@ -6271,7 +6275,7 @@ For example,
@example
unsetopt localtraps
trap - INT
-fn() @{ setopt localtraps; trap @value{dsq} INT; sleep 3; @}
+fn() @{ setopt localtraps; trap @t{'}@t{'} INT; sleep 3; @}
@end example
@noindent
@@ -6500,7 +6504,8 @@ Array expansions of the form
@cindex rc, quoting style
@cindex quoting style, rc
@item @t{RC_QUOTES}
-Allow the character sequence `@t{@value{dsq}}' to signify a single quote
+Allow the character sequence `@t{'}@t{'}' to signify a single
+quote
within singly quoted strings. Note this does not apply in quoted strings
using the format @t{$'}@var{...}@t{'}, where a backslashed single quote can
be used.
@@ -9528,7 +9533,7 @@ An interrupt character will not be inser
@item @t{quote-line} (ESC-') (unbound) (unbound)
Quote the current line; that is, put a `@t{'}' character at the
beginning and the end, and convert all `@t{'}' characters
-to `@t{'\@value{dsq}}'.
+to `@t{'\}@t{'}@t{'}'.
@tindex quote-region
@item @t{quote-region} (ESC-") (unbound) (unbound)
@@ -12353,7 +12358,7 @@ different types of matches displayed sep
@noindent
@example
-zstyle ':completion:*' group-name @value{dsq}
+zstyle ':completion:*' group-name @t{'}@t{'}
@end example
@noindent
@@ -12586,7 +12591,7 @@ zstyle ':completion:*:default' list-colo
@noindent
The default colors are the same as for the GNU @t{ls} command and can be
-obtained by setting the style to an empty string (i.e. @t{@value{dsq}}).
+obtained by setting the style to an empty string (i.e. @t{'}@t{'}).
@kindex list-packed, completion style
@item @t{list-packed}
@@ -12666,7 +12671,7 @@ completion one would do:
@noindent
@example
-zstyle ':completion:*' matcher-list @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
+zstyle ':completion:*' matcher-list @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
@end example
@noindent
@@ -12680,7 +12685,7 @@ the @t{_complete} completer, one would d
@example
zstyle ':completion:*' completer _complete _prefix
zstyle ':completion:*:complete:*' matcher-list \
- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
@end example
@noindent
@@ -12698,7 +12703,7 @@ match specifications for each occurrence
@example
zstyle ':completion:*' completer _complete _correct _complete:foo
zstyle ':completion:*:complete:*' matcher-list \
- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
zstyle ':completion:*:foo:*' matcher-list \
'm:@{a-zA-Z@}=@{A-Za-z@} r:|[-_./]=* r:|=*'
@end example
@@ -15383,7 +15388,7 @@ generates at least one match. E.g.:
@noindent
@example
-compctl -M @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}'
+compctl -M @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}'
@end example
@noindent
@@ -15594,7 +15599,7 @@ use is
@noindent
@example
-compctl -D -f + -H 0 @value{dsq}
+compctl -D -f + -H 0 @t{'}@t{'}
@end example
@noindent
@@ -15682,7 +15687,7 @@ performed on the first word in the range
@noindent
@example
-compctl -x 'r[-exec,;]' -l @value{dsq} -- find
+compctl -x 'r[-exec,;]' -l @t{'}@t{'} -- find
@end example
@noindent
@@ -16743,7 +16748,7 @@ The @t{-s} option is a zsh extension to
paranoid behaviour, intended to avoid security problems involving
a @t{chown} being tricked into affecting files other than the ones
intended. It will refuse to follow symbolic links, so that (for example)
-``@t{chown luser /tmp/foo/passwd}@value{dsq} can't accidentally chown @t{/etc/passwd}
+``@t{chown luser /tmp/foo/passwd}@t{'}@t{'} can't accidentally chown @t{/etc/passwd}
if @t{/tmp/foo} happens to be a link to @t{/etc}. It will also check
where it is after leaving directories, so that a recursive chown of
a deep directory tree can't end up recursively chowning @t{/usr} as
@@ -16834,7 +16839,7 @@ The @t{-s} option is a zsh extension to
paranoid behaviour, intended to avoid common security problems involving
a root-run @t{rm} being tricked into removing files other than the ones
intended. It will refuse to follow symbolic links, so that (for example)
-``@t{rm /tmp/foo/passwd}@value{dsq} can't accidentally remove @t{/etc/passwd}
+``@t{rm /tmp/foo/passwd}@t{'}@t{'} can't accidentally remove @t{/etc/passwd}
if @t{/tmp/foo} happens to be a link to @t{/etc}. It will also check
where it is after leaving directories, so that a recursive removal of
a deep directory tree can't end up recursively removing @t{/usr} as
@@ -17234,7 +17239,7 @@ The number of disk blocks used by the fi
@item @t{link}
If the file is a link and the @t{-L} option is in
effect, this contains the name of the file linked to, otherwise
-it is empty. Note that if this element is selected (``@t{stat +link}@value{dsq})
+it is empty. Note that if this element is selected (``@t{stat +link}@t{'}@t{'})
then the @t{-L} option is automatically used.
@end table

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-Makefile_in,v 1.1 2001/05/10 19:50:28 lebel Exp $
--- Makefile.in.orig Sun May 21 14:31:05 2000
+++ Makefile.in Thu May 10 15:48:42 2001
@@ -60,8 +60,8 @@ install-strip:
$(MAKE) install STRIPFLAGS="-s"
# install/uninstall most things
-install: install.bin install.modules install.fns install.man
-uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man
+install: install.bin install.modules install.fns install.man install.info
+uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man uninstall.info
# install/uninstall just the binary
install.bin uninstall.bin:

View File

@ -1,22 +0,0 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2001/05/10 19:42:34 lebel Exp $
#
# zsh-devel de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
if grep -q ${PREFIX}/bin/zsh /etc/shells; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to edit"
echo "| /etc/shells and remove this line:"
echo "|"
echo "| ${PREFIX}/bin/zsh"
echo "|"
echo "+---------------"
echo
fi
exit 0

View File

@ -1,8 +0,0 @@
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).
WWW: ${HOMEPAGE}

View File

@ -1,52 +0,0 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.1 2001/05/10 19:42:34 lebel Exp $
#
# Pre/post-installation setup of zsh
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
# Function: tell the user what s/he needs to do to use the port just installed
#
do_notice()
{
echo
echo "+---------------"
echo "| For proper use of $1 you should notify the system"
echo "| that ${PREFIX}/bin/zsh is a valid shell by adding it to the"
echo "| the file /etc/shells. If you are unfamiliar with this file"
echo "| consult the shells(5) manual page"
echo "+---------------"
echo
}
# verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
PRE-INSTALL)
: nothing to pre-install for this port
;;
POST-INSTALL)
if grep -q ${PREFIX}/bin/zsh /etc/shells; then
:
else
do_notice $1
fi
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0

View File

@ -1,320 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1 2001/05/10 19:42:34 lebel Exp $
bin/zsh
bin/zsh-${VERSION}
@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/zshcompwid.1
man/man1/zshcompsys.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/functions/_a2ps
share/zsh/functions/_aliases
share/zsh/functions/_all_labels
share/zsh/functions/_alternative
share/zsh/functions/_approximate
share/zsh/functions/_apt
share/zsh/functions/_archie
share/zsh/functions/_arg_compile
share/zsh/functions/_arguments
share/zsh/functions/_arrays
share/zsh/functions/_autoload
share/zsh/functions/_bash_completions
share/zsh/functions/_bg_jobs
share/zsh/functions/_bindkey
share/zsh/functions/_bison
share/zsh/functions/_brace_parameter
share/zsh/functions/_bsd_pkg
share/zsh/functions/_bug
share/zsh/functions/_builtin
share/zsh/functions/_bzip2
share/zsh/functions/_call
share/zsh/functions/_cd
share/zsh/functions/_chown
share/zsh/functions/_combination
share/zsh/functions/_command
share/zsh/functions/_command_names
share/zsh/functions/_compalso
share/zsh/functions/_compdef
share/zsh/functions/_complete
share/zsh/functions/_complete_debug
share/zsh/functions/_complete_help
share/zsh/functions/_complete_tag
share/zsh/functions/_compress
share/zsh/functions/_condition
share/zsh/functions/_configure
share/zsh/functions/_correct
share/zsh/functions/_correct_filename
share/zsh/functions/_correct_word
share/zsh/functions/_cvs
share/zsh/functions/_cvsup
share/zsh/functions/_dd
share/zsh/functions/_deb_packages
share/zsh/functions/_default
share/zsh/functions/_describe
share/zsh/functions/_description
share/zsh/functions/_diff
share/zsh/functions/_diff_options
share/zsh/functions/_dir_list
share/zsh/functions/_dirs
share/zsh/functions/_disable
share/zsh/functions/_domains
share/zsh/functions/_dpkg
share/zsh/functions/_dpkg-source
share/zsh/functions/_dupload
share/zsh/functions/_dvi
share/zsh/functions/_echotc
share/zsh/functions/_emulate
share/zsh/functions/_enable
share/zsh/functions/_enscript
share/zsh/functions/_equal
share/zsh/functions/_expand
share/zsh/functions/_expand_word
share/zsh/functions/_fakeroot
share/zsh/functions/_fc
share/zsh/functions/_fg_jobs
share/zsh/functions/_file_descriptors
share/zsh/functions/_files
share/zsh/functions/_find
share/zsh/functions/_finger
share/zsh/functions/_first
share/zsh/functions/_flex
share/zsh/functions/_floppy
share/zsh/functions/_funcall
share/zsh/functions/_functions
share/zsh/functions/_gcc
share/zsh/functions/_gdb
share/zsh/functions/_getconf
share/zsh/functions/_gprof
share/zsh/functions/_groups
share/zsh/functions/_gs
share/zsh/functions/_gv
share/zsh/functions/_gzip
share/zsh/functions/_hash
share/zsh/functions/_history
share/zsh/functions/_history_complete_word
share/zsh/functions/_hosts
share/zsh/functions/_ignored
share/zsh/functions/_imagemagick
share/zsh/functions/_in_vared
share/zsh/functions/_ispell
share/zsh/functions/_jobs
share/zsh/functions/_joe
share/zsh/functions/_kill
share/zsh/functions/_killall
share/zsh/functions/_kld
share/zsh/functions/_limits
share/zsh/functions/_list
share/zsh/functions/_look
share/zsh/functions/_lp
share/zsh/functions/_lsdev
share/zsh/functions/_lslv
share/zsh/functions/_lspv
share/zsh/functions/_lsvg
share/zsh/functions/_lynx
share/zsh/functions/_lzop
share/zsh/functions/_mailboxes
share/zsh/functions/_main_complete
share/zsh/functions/_make
share/zsh/functions/_man
share/zsh/functions/_match
share/zsh/functions/_math
share/zsh/functions/_menu
share/zsh/functions/_message
share/zsh/functions/_mh
share/zsh/functions/_most_recent_file
share/zsh/functions/_mount
share/zsh/functions/_multi_parts
share/zsh/functions/_mutt
share/zsh/functions/_my_accounts
share/zsh/functions/_mysql_utils
share/zsh/functions/_nedit
share/zsh/functions/_netscape
share/zsh/functions/_next_label
share/zsh/functions/_next_tags
share/zsh/functions/_normal
share/zsh/functions/_nothing
share/zsh/functions/_nslookup
share/zsh/functions/_oldlist
share/zsh/functions/_options
share/zsh/functions/_other_accounts
share/zsh/functions/_pack
share/zsh/functions/_parameter
share/zsh/functions/_parameters
share/zsh/functions/_patch
share/zsh/functions/_path_files
share/zsh/functions/_pbm
share/zsh/functions/_pdf
share/zsh/functions/_perl
share/zsh/functions/_perl_basepods
share/zsh/functions/_perl_builtin_funcs
share/zsh/functions/_perl_modules
share/zsh/functions/_perldoc
share/zsh/functions/_physical_volumes
share/zsh/functions/_pids
share/zsh/functions/_popd
share/zsh/functions/_ports
share/zsh/functions/_prcs
share/zsh/functions/_precommand
share/zsh/functions/_prefix
share/zsh/functions/_print
share/zsh/functions/_printers
share/zsh/functions/_prompt
share/zsh/functions/_ps
share/zsh/functions/_pspdf
share/zsh/functions/_psutils
share/zsh/functions/_rcs
share/zsh/functions/_read_comp
share/zsh/functions/_redirect
share/zsh/functions/_regex_arguments
share/zsh/functions/_requested
share/zsh/functions/_rlogin
share/zsh/functions/_rpm
share/zsh/functions/_sched
share/zsh/functions/_sep_parts
share/zsh/functions/_set
share/zsh/functions/_set_options
share/zsh/functions/_setopt
share/zsh/functions/_setup
share/zsh/functions/_sh
share/zsh/functions/_signals
share/zsh/functions/_smit
share/zsh/functions/_socket
share/zsh/functions/_sort_tags
share/zsh/functions/_source
share/zsh/functions/_ssh
share/zsh/functions/_stat
share/zsh/functions/_strip
share/zsh/functions/_stty
share/zsh/functions/_su
share/zsh/functions/_subscript
share/zsh/functions/_sudo
share/zsh/functions/_tags
share/zsh/functions/_tar
share/zsh/functions/_tar_archive
share/zsh/functions/_telnet
share/zsh/functions/_tex
share/zsh/functions/_texi
share/zsh/functions/_tiff
share/zsh/functions/_tilde
share/zsh/functions/_tilde_files
share/zsh/functions/_trap
share/zsh/functions/_unhash
share/zsh/functions/_unset_options
share/zsh/functions/_unsetopt
share/zsh/functions/_urls
share/zsh/functions/_use_lo
share/zsh/functions/_user_at_host
share/zsh/functions/_users
share/zsh/functions/_users_on
share/zsh/functions/_value
share/zsh/functions/_values
share/zsh/functions/_vars
share/zsh/functions/_vars_eq
share/zsh/functions/_volume_groups
share/zsh/functions/_wait
share/zsh/functions/_wanted
share/zsh/functions/_webbrowser
share/zsh/functions/_wget
share/zsh/functions/_whereis
share/zsh/functions/_which
share/zsh/functions/_whois
share/zsh/functions/_x_arguments
share/zsh/functions/_x_borderwidth
share/zsh/functions/_x_color
share/zsh/functions/_x_colormapid
share/zsh/functions/_x_cursor
share/zsh/functions/_x_display
share/zsh/functions/_x_extension
share/zsh/functions/_x_font
share/zsh/functions/_x_geometry
share/zsh/functions/_x_keysym
share/zsh/functions/_x_locale
share/zsh/functions/_x_modifier
share/zsh/functions/_x_name
share/zsh/functions/_x_resource
share/zsh/functions/_x_selection_timeout
share/zsh/functions/_x_title
share/zsh/functions/_x_window
share/zsh/functions/_xargs
share/zsh/functions/_xauth
share/zsh/functions/_xdvi
share/zsh/functions/_xfig
share/zsh/functions/_xmodmap
share/zsh/functions/_xrdb
share/zsh/functions/_xset
share/zsh/functions/_xt_arguments
share/zsh/functions/_xt_session_id
share/zsh/functions/_xterm
share/zsh/functions/_xutils
share/zsh/functions/_xv
share/zsh/functions/_xwit
share/zsh/functions/_yodl
share/zsh/functions/_yp
share/zsh/functions/_zcat
share/zsh/functions/_zcompile
share/zsh/functions/_zdump
share/zsh/functions/_zftp
share/zsh/functions/_zle
share/zsh/functions/_zmodload
share/zsh/functions/_zpty
share/zsh/functions/_zstyle
share/zsh/functions/acx
share/zsh/functions/allopt
share/zsh/functions/cat
share/zsh/functions/cdmatch
share/zsh/functions/cdmatch2
share/zsh/functions/checkmail
share/zsh/functions/colors
share/zsh/functions/compdump
share/zsh/functions/compinit
share/zsh/functions/compinstall
share/zsh/functions/cx
share/zsh/functions/edit-command-line
share/zsh/functions/harden
share/zsh/functions/history-search-end
share/zsh/functions/incarg
share/zsh/functions/incremental-complete-word
share/zsh/functions/insert-files
share/zsh/functions/is-at-least
share/zsh/functions/mere
share/zsh/functions/multicomp
share/zsh/functions/nslookup
share/zsh/functions/predict-on
share/zsh/functions/prompt_adam1_setup
share/zsh/functions/prompt_adam2_setup
share/zsh/functions/prompt_bart_setup
share/zsh/functions/prompt_bigfade_setup
share/zsh/functions/prompt_elite2_setup
share/zsh/functions/prompt_elite_setup
share/zsh/functions/prompt_fade_setup
share/zsh/functions/prompt_fire_setup
share/zsh/functions/prompt_off_setup
share/zsh/functions/prompt_oliver_setup
share/zsh/functions/prompt_redhat_setup
share/zsh/functions/prompt_suse_setup
share/zsh/functions/prompt_zefram_setup
share/zsh/functions/promptinit
share/zsh/functions/proto
share/zsh/functions/pushd
share/zsh/functions/randline
share/zsh/functions/run-help
share/zsh/functions/yp
share/zsh/functions/yu
share/zsh/functions/zed
share/zsh/functions/zless
share/zsh/functions/zls
share/zsh/functions/zmv
share/zsh/functions/zrecompile
share/zsh/functions/zstyle+
@dirrm share/zsh/functions
@dirrm share/zsh