diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2003-07-04 15:12:52 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2003-07-04 15:12:52 +0000 |
commit | d6622ef7219771782bd27386180de5e8822bbb1f (patch) | |
tree | fe715ad9a73c85fbd9c80d7e2642990cec03f474 /shells | |
parent | o Add RUN_DEPEND on XFree86-4-clients, for the xauth binary, if (diff) |
Update to 4.1.1.
PR: ports/53513
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Notes
Notes:
svn path=/head/; revision=84212
Diffstat (limited to 'shells')
-rw-r--r-- | shells/zsh-devel/Makefile | 147 | ||||
-rw-r--r-- | shells/zsh-devel/distinfo | 3 | ||||
-rw-r--r-- | shells/zsh-devel/pkg-descr | 4 | ||||
-rw-r--r-- | shells/zsh-devel/pkg-plist | 1068 |
4 files changed, 687 insertions, 535 deletions
diff --git a/shells/zsh-devel/Makefile b/shells/zsh-devel/Makefile index 5fa387b37c2c..d06f3512477e 100644 --- a/shells/zsh-devel/Makefile +++ b/shells/zsh-devel/Makefile @@ -5,78 +5,127 @@ # $FreeBSD$ # +# The following compile-time options are available: +# NOSHARED=yes compile a static version of zsh +# (default: use dynamically loadable modules) +# WITHOUT_ZSH_MEM=yes disable zsh-mem and zsh-secure-free options +# (default: on) +# WITHOUT_ZSH_MAILDIR=yes disable support for Maildirs in MAIL and MAILPATH +# (default: on) +# ZSH_ETCDIR=<dir> directory for zsh system-wide configuration files: +# zshenv, zlogin, zprofile, zshrc, zlogout. +# e.g. use this to put config files inside ${PREFIX} +# (default: /etc) +# NOTE: does NOT have to be inside ${PREFIX} tree +# ZSH_FNDIR=<dir> directory for zsh functions (part of distribution) +# (default: ${PREFIX}/share/zsh/${ZSH_VER}/functions) +# NOTE: should be inside ${PREFIX} tree +# ZSH_SITEFNDIR=<dir> directory for zsh site functions (locally developed) +# (default: ${PREFIX}/share/zsh/site-functions) +# NOTE: does NOT have to be inside ${PREFIX} tree + PORTNAME= zsh -PORTVERSION= ${ZSH_VER}.dev${ZSH_DEV_REV} +PORTVERSION= ${ZSH_VER} CATEGORIES= shells -MASTER_SITES= ftp://ftp.zsh.org/%SUBDIR%/ \ - ftp://ftp.sterling.com/%SUBDIR%/ \ - ftp://ftp.rge.com/pub/shells/%SUBDIR%/ \ - ftp://ftp.fu-berlin.de/pub/unix/shells/%SUBDIR%/ \ - ftp://ftp.ips.oz.au/pub/packages/%SUBDIR%/ \ - ftp://ftp.uit.no/pub/unix/shells/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${PORTNAME}/development - -DISTNAME= ${PORTNAME}-${ZSH_VER}-dev-${ZSH_DEV_REV} +MASTER_SITES= http://www.zsh.org/zsh/ \ + ftp://ftp.zsh.org/zsh/ \ + ftp://sunsite.dk/pub/unix/shells/zsh/ \ + http://archive.progeny.com/zsh/ \ + ftp://archive.progeny.com/zsh/ \ + http://mirrors.theonlinerecordstore.com/zsh/ \ + ftp://uiarchive.uiuc.edu/mirrors/ftp/ftp.zsh.org/pub/zsh/ \ + ftp://ftp.rge.com/pub/shells/zsh/ \ + ftp://sunsite.org.uk/packages/zsh/ \ + ftp://ftp.net.lut.ac.uk/zsh/ \ + ftp://ftp.fu-berlin.de/pub/unix/shells/zsh/ \ + ftp://ftp.win.ne.jp/pub/shell/zsh/ \ + ftp://ftp.ayamura.org/pub/zsh/ \ + ftp://linux.sarang.net/mirror/systems/shell/zsh/ \ + ftp://ftp.lysator.liu.se/pub/unix/zsh/ \ + ftp://sunsite.icm.edu.pl/pub/unix/shells/zsh/ \ + ftp://ftp.kappa.ro/pub/mirrors/ftp.zsh.org/pub/zsh/ \ + ftp://ftp.demon.nl/pub/mirrors/zsh/ +PKGNAMESUFFIX= -devel +DISTNAME= ${PORTNAME}-${ZSH_VER} +.if !defined(NOPORTDOCS) +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}-doc${EXTRACT_SUFX} +.endif MAINTAINER= shige@FreeBSD.org COMMENT= The Z shell (development version) -USE_AUTOCONF= yes -USE_REINPLACE= yes +ZSH_VER= 4.1.1 -ZSH_VER= 4.1.0 -ZSH_DEV_REV= 7 -ZSHFUNC_SUBDIR= share/zsh/${ZSH_VER}-dev-${ZSH_DEV_REV}/functions -NO_LATEST_LINK= yes +# Conflicts with shells/zsh as it installs files into the same locations +CONFLICTS= zsh-4.0.* +USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free --enable-dynamic \ - --enable-maildir-support -.if !defined(NOPORTDOCS) -INSTALL_TARGET= install install.info -.endif +#CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ARGS= --enable-etcdir=${ZSH_ETCDIR} --with-curses-terminfo \ + --enable-fndir=${ZSH_FNDIR} --enable-function-subdirs \ + --enable-site-fndir=${ZSH_SITEFNDIR} -MAN1= zsh.1 zshbuiltins.1 zshcompctl.1 zshexpn.1 zshmisc.1 \ - zshoptions.1 zshall.1 zshparam.1 zshzle.1 zshmodules.1 \ - zshzftpsys.1 zshcompsys.1 zshcompwid.1 zshcontrib.1 +.if !defined(WITHOUT_ZSH_MEM) +CONFIGURE_ARGS+= --enable-zsh-mem --enable-zsh-secure-free +.endif -PLIST_SUB= ZSH_VER="${ZSH_VER}-dev-${ZSH_DEV_REV}" \ - ZSHFUNC_SUBDIR="${ZSHFUNC_SUBDIR}" +.if !defined(WITHOUT_ZSH_MAILDIR) +CONFIGURE_ARGS+= --enable-maildir-support +.endif -.if defined(WANT_STATIC) -CONFIGURE_ENV+= "LDFLAGS=-static" -PLIST_SUB+= NO_STATIC="@comment " +.if defined(NOSHARED) +CONFIGURE_ARGS+= --disable-dynamic +PLIST_SUB+= NO_STATIC="@comment " .else -PLIST_SUB+= NO_STATIC="" +CONFIGURE_ARGS+= --enable-dynamic +PLIST_SUB+= NO_STATIC="" .endif -post-patch: - @${REINPLACE_CMD} -e 's!\$\(htmldir\)!\$\(prefix\)/share/doc/zsh!' \ - ${WRKSRC}/Doc/Makefile.in +# These variables can be overriden by user +ZSH_ETCDIR?= /etc +ZSH_FNDIR?= ${DATADIR}/${ZSH_VER}/functions +ZSH_SITEFNDIR?= ${DATADIR}/site-functions + +PLIST_SUB+= ZSH_VER="${ZSH_VER}" ZSHETCDIR="${ZSH_ETCDIR}" \ + ZSH_FNDIR="${ZSH_FNDIR:S!${PREFIX}/!!}" \ + ZSH_SITEFNDIR="${ZSH_SITEFNDIR}" + +MAN1= zsh.1 zshall.1 zshbuiltins.1 zshcompctl.1 zshcompsys.1 \ + zshcompwid.1 zshcontrib.1 zshexpn.1 zshmisc.1 zshmodules.1 \ + zshoptions.1 zshparam.1 zshtcpsys.1 zshzftpsys.1 zshzle.1 +DOCS= LICENCE META-FAQ README Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ \ + Etc/FEATURES Etc/NEWS Etc/completion-style-guide \ + ChangeLog Etc/zsh-development-guide Etc/pubring.pgp \ + Doc/zsh*.html Doc/zsh.dvi Doc/zsh_a4.ps Doc/zsh_us.ps +EXAMPLES= zlogin zshenv zshrc post-build: -# Fix ".so" macro problem by using "soelim" command. - @(cd ${WRKSRC} ; \ - ${LN} -sf ./Doc man1 ; \ - if [ ! -f ./man1/zshall.1.source ]; then \ - ${MV} -f ./man1/zshall.1 ./man1/zshall.1.source ; \ - fi ; \ - ${RM} -f ./man1/zshall.1 ; \ - /usr/bin/soelim ./man1/zshall.1.source > ./man1/zshall.1 ; \ - ) + # Fix ".so" macro problem by using "soelim" command. + ${LN} -sf ${WRKSRC}/Doc ${WRKSRC}/man1 + ${MV} ${WRKSRC}/Doc/zshall.1 ${WRKSRC}/Doc/zshall.1.source + cd ${WRKSRC} && /usr/bin/soelim ${WRKSRC}/Doc/zshall.1.source > \ + ${WRKSRC}/Doc/zshall.1 +.if !defined(NOPORTDOCS) + cd ${WRKSRC}/Doc && makeinfo --no-split zsh.texi +.endif post-install: - @${MKDIR} ${PREFIX}/share/examples/zsh -.for file in zlogin zshenv zshrc - ${INSTALL_DATA} ${WRKSRC}/StartupFiles/${file} \ - ${PREFIX}/share/examples/zsh -.endfor + ${TEST} -d ${ZSH_ETCDIR} || ${MKDIR} ${ZSH_ETCDIR} + ${TEST} -d ${ZSH_SITEFNDIR} || ${MKDIR} ${ZSH_SITEFNDIR} + @${MKDIR} ${EXAMPLESDIR} + cd ${WRKSRC}/StartupFiles && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Doc/zsh.info ${PREFIX}/info @install-info ${PREFIX}/info/zsh.info ${PREFIX}/info/dir - @${ECHO} "Updating /etc/shells" +.endif + @${ECHO_MSG} "Updating /etc/shells" @${CP} /etc/shells /etc/shells.bak @(${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; \ - ${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells + ${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells @${RM} /etc/shells.bak .include <bsd.port.mk> diff --git a/shells/zsh-devel/distinfo b/shells/zsh-devel/distinfo index 4d0b8e1e7437..e2869880ce6d 100644 --- a/shells/zsh-devel/distinfo +++ b/shells/zsh-devel/distinfo @@ -1 +1,2 @@ -MD5 (zsh-4.1.0-dev-7.tar.gz) = 30e25772920734963bafc639479af57a +MD5 (zsh-4.1.1.tar.bz2) = 48958b1a3fc86261a26eea40a4f7d4af +MD5 (zsh-4.1.1-doc.tar.bz2) = 3ec54fa702b9a5c5209b56c2c8ed6a88 diff --git a/shells/zsh-devel/pkg-descr b/shells/zsh-devel/pkg-descr index 5df075c1db61..0020d39d9dc5 100644 --- a/shells/zsh-devel/pkg-descr +++ b/shells/zsh-devel/pkg-descr @@ -11,4 +11,6 @@ commands: $ autoload -U compinstall $ compinstall -See also zshcompsys(1) manpages. :) +See also zshcompsys(1) manpage. :) + +WWW: http://www.zsh.org/ diff --git a/shells/zsh-devel/pkg-plist b/shells/zsh-devel/pkg-plist index 1c6133a032ce..8fffc5df0550 100644 --- a/shells/zsh-devel/pkg-plist +++ b/shells/zsh-devel/pkg-plist @@ -1,31 +1,12 @@ 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; rm -f /etc/shells.bak -@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells; rm -f /etc/shells.bak +@exec echo "Updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells; rm -f /etc/shells.bak +@unexec echo "Updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells; rm -f /etc/shells.bak bin/zsh-%%ZSH_VER%% -%%PORTDOCS%%@unexec install-info --delete %D/%%PORTDOCS%%info/zsh.info %D/info/dir +@exec mkdir %%ZSH_ETCDIR%% 2> /dev/null || true +@unexec rmdir %%ZSH_ETCDIR%% 2> /dev/null || true +%%PORTDOCS%%@unexec install-info --delete %D/info/zsh.info %D/info/dir %%PORTDOCS%%info/zsh.info -%%PORTDOCS%%info/zsh.info-1 -%%PORTDOCS%%info/zsh.info-10 -%%PORTDOCS%%info/zsh.info-11 -%%PORTDOCS%%info/zsh.info-12 -%%PORTDOCS%%info/zsh.info-13 -%%PORTDOCS%%info/zsh.info-14 -%%PORTDOCS%%info/zsh.info-15 -%%PORTDOCS%%info/zsh.info-16 -%%PORTDOCS%%info/zsh.info-17 -%%PORTDOCS%%info/zsh.info-18 -%%PORTDOCS%%info/zsh.info-19 -%%PORTDOCS%%info/zsh.info-2 -%%PORTDOCS%%info/zsh.info-20 -%%PORTDOCS%%info/zsh.info-3 -%%PORTDOCS%%info/zsh.info-4 -%%PORTDOCS%%info/zsh.info-5 -%%PORTDOCS%%info/zsh.info-6 -%%PORTDOCS%%info/zsh.info-7 -%%PORTDOCS%%info/zsh.info-8 -%%PORTDOCS%%info/zsh.info-9 -%%PORTDOCS%%@exec install-info %D/%%PORTDOCS%%info/zsh.info %D/info/dir -%%NO_STATIC%%lib/zsh/libzsh-%%ZSH_VER%%.so +%%PORTDOCS%%@exec install-info %D/info/zsh.info %D/info/dir %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/cap.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/clone.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/compctl.so @@ -41,6 +22,7 @@ bin/zsh-%%ZSH_VER%% %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/mathfunc.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/socket.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/tcp.so +%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh/net %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/parameter.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/pcre.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/rlimits.so @@ -55,464 +37,582 @@ bin/zsh-%%ZSH_VER%% %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zpty.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zselect.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zutil.so -share/examples/zsh/zlogin -share/examples/zsh/zshenv -share/examples/zsh/zshrc -%%ZSHFUNC_SUBDIR%%/_a2ps -%%ZSHFUNC_SUBDIR%%/_alias -%%ZSHFUNC_SUBDIR%%/_aliases -%%ZSHFUNC_SUBDIR%%/_all_labels -%%ZSHFUNC_SUBDIR%%/_all_matches -%%ZSHFUNC_SUBDIR%%/_alternative -%%ZSHFUNC_SUBDIR%%/_ant -%%ZSHFUNC_SUBDIR%%/_apachectl -%%ZSHFUNC_SUBDIR%%/_apm -%%ZSHFUNC_SUBDIR%%/_approximate -%%ZSHFUNC_SUBDIR%%/_apt -%%ZSHFUNC_SUBDIR%%/_apt-show-versions -%%ZSHFUNC_SUBDIR%%/_archie -%%ZSHFUNC_SUBDIR%%/_arg_compile -%%ZSHFUNC_SUBDIR%%/_arguments -%%ZSHFUNC_SUBDIR%%/_arp -%%ZSHFUNC_SUBDIR%%/_arping -%%ZSHFUNC_SUBDIR%%/_arrays -%%ZSHFUNC_SUBDIR%%/_assign -%%ZSHFUNC_SUBDIR%%/_autocd -%%ZSHFUNC_SUBDIR%%/_autoload -%%ZSHFUNC_SUBDIR%%/_auto-apt -%%ZSHFUNC_SUBDIR%%/_bash_completions -%%ZSHFUNC_SUBDIR%%/_bindkey -%%ZSHFUNC_SUBDIR%%/_bison -%%ZSHFUNC_SUBDIR%%/_brace_parameter -%%ZSHFUNC_SUBDIR%%/_bsd_pkg -%%ZSHFUNC_SUBDIR%%/_bts -%%ZSHFUNC_SUBDIR%%/_bug -%%ZSHFUNC_SUBDIR%%/_builtin -%%ZSHFUNC_SUBDIR%%/_bzip2 -%%ZSHFUNC_SUBDIR%%/_cache_invalid -%%ZSHFUNC_SUBDIR%%/_call_function -%%ZSHFUNC_SUBDIR%%/_call_program -%%ZSHFUNC_SUBDIR%%/_cd -%%ZSHFUNC_SUBDIR%%/_cdcd -%%ZSHFUNC_SUBDIR%%/_chflags -%%ZSHFUNC_SUBDIR%%/_chkconfig -%%ZSHFUNC_SUBDIR%%/_chown -%%ZSHFUNC_SUBDIR%%/_combination -%%ZSHFUNC_SUBDIR%%/_command -%%ZSHFUNC_SUBDIR%%/_command_names -%%ZSHFUNC_SUBDIR%%/_compdef -%%ZSHFUNC_SUBDIR%%/_complete -%%ZSHFUNC_SUBDIR%%/_complete_debug -%%ZSHFUNC_SUBDIR%%/_complete_help -%%ZSHFUNC_SUBDIR%%/_complete_tag -%%ZSHFUNC_SUBDIR%%/_compress -%%ZSHFUNC_SUBDIR%%/_condition -%%ZSHFUNC_SUBDIR%%/_configure -%%ZSHFUNC_SUBDIR%%/_correct -%%ZSHFUNC_SUBDIR%%/_correct_filename -%%ZSHFUNC_SUBDIR%%/_correct_word -%%ZSHFUNC_SUBDIR%%/_cpio -%%ZSHFUNC_SUBDIR%%/_cvs -%%ZSHFUNC_SUBDIR%%/_cvsup -%%ZSHFUNC_SUBDIR%%/_dd -%%ZSHFUNC_SUBDIR%%/_deb_packages -%%ZSHFUNC_SUBDIR%%/_debchange -%%ZSHFUNC_SUBDIR%%/_debfoster -%%ZSHFUNC_SUBDIR%%/_default -%%ZSHFUNC_SUBDIR%%/_describe -%%ZSHFUNC_SUBDIR%%/_description -%%ZSHFUNC_SUBDIR%%/_dict -%%ZSHFUNC_SUBDIR%%/_dict_words -%%ZSHFUNC_SUBDIR%%/_diff -%%ZSHFUNC_SUBDIR%%/_diff_options -%%ZSHFUNC_SUBDIR%%/_dir_list -%%ZSHFUNC_SUBDIR%%/_directories -%%ZSHFUNC_SUBDIR%%/_directory_stack -%%ZSHFUNC_SUBDIR%%/_dirs -%%ZSHFUNC_SUBDIR%%/_disable -%%ZSHFUNC_SUBDIR%%/_dispatch -%%ZSHFUNC_SUBDIR%%/_domains -%%ZSHFUNC_SUBDIR%%/_dpkg -%%ZSHFUNC_SUBDIR%%/_dpkg_source -%%ZSHFUNC_SUBDIR%%/_dput -%%ZSHFUNC_SUBDIR%%/_dupload -%%ZSHFUNC_SUBDIR%%/_dvi -%%ZSHFUNC_SUBDIR%%/_echotc -%%ZSHFUNC_SUBDIR%%/_echoti -%%ZSHFUNC_SUBDIR%%/_elm -%%ZSHFUNC_SUBDIR%%/_elinks -%%ZSHFUNC_SUBDIR%%/_email_addresses -%%ZSHFUNC_SUBDIR%%/_emulate -%%ZSHFUNC_SUBDIR%%/_enable -%%ZSHFUNC_SUBDIR%%/_enscript -%%ZSHFUNC_SUBDIR%%/_equal -%%ZSHFUNC_SUBDIR%%/_expand -%%ZSHFUNC_SUBDIR%%/_expand_alias -%%ZSHFUNC_SUBDIR%%/_expand_word -%%ZSHFUNC_SUBDIR%%/_fakeroot -%%ZSHFUNC_SUBDIR%%/_fc -%%ZSHFUNC_SUBDIR%%/_fetchmail -%%ZSHFUNC_SUBDIR%%/_figlet -%%ZSHFUNC_SUBDIR%%/_file_descriptors -%%ZSHFUNC_SUBDIR%%/_file_systems -%%ZSHFUNC_SUBDIR%%/_files -%%ZSHFUNC_SUBDIR%%/_find -%%ZSHFUNC_SUBDIR%%/_finger -%%ZSHFUNC_SUBDIR%%/_first -%%ZSHFUNC_SUBDIR%%/_flex -%%ZSHFUNC_SUBDIR%%/_floppy -%%ZSHFUNC_SUBDIR%%/_fsh -%%ZSHFUNC_SUBDIR%%/_functions -%%ZSHFUNC_SUBDIR%%/_gcc -%%ZSHFUNC_SUBDIR%%/_gdb -%%ZSHFUNC_SUBDIR%%/_generic -%%ZSHFUNC_SUBDIR%%/_getconf -%%ZSHFUNC_SUBDIR%%/_global -%%ZSHFUNC_SUBDIR%%/_global_tags -%%ZSHFUNC_SUBDIR%%/_gnu_generic -%%ZSHFUNC_SUBDIR%%/_gprof -%%ZSHFUNC_SUBDIR%%/_grep -%%ZSHFUNC_SUBDIR%%/_groups -%%ZSHFUNC_SUBDIR%%/_gs -%%ZSHFUNC_SUBDIR%%/_guard -%%ZSHFUNC_SUBDIR%%/_gv -%%ZSHFUNC_SUBDIR%%/_gzip -%%ZSHFUNC_SUBDIR%%/_hash -%%ZSHFUNC_SUBDIR%%/_history -%%ZSHFUNC_SUBDIR%%/_history_complete_word -%%ZSHFUNC_SUBDIR%%/_hosts -%%ZSHFUNC_SUBDIR%%/_iconv -%%ZSHFUNC_SUBDIR%%/_ifconfig -%%ZSHFUNC_SUBDIR%%/_ignored -%%ZSHFUNC_SUBDIR%%/_imagemagick -%%ZSHFUNC_SUBDIR%%/_in_vared -%%ZSHFUNC_SUBDIR%%/_init_d -%%ZSHFUNC_SUBDIR%%/_irssi -%%ZSHFUNC_SUBDIR%%/_ispell -%%ZSHFUNC_SUBDIR%%/_java -%%ZSHFUNC_SUBDIR%%/_java_class -%%ZSHFUNC_SUBDIR%%/_jobs -%%ZSHFUNC_SUBDIR%%/_jobs_bg -%%ZSHFUNC_SUBDIR%%/_jobs_builtin -%%ZSHFUNC_SUBDIR%%/_jobs_fg -%%ZSHFUNC_SUBDIR%%/_joe -%%ZSHFUNC_SUBDIR%%/_kill -%%ZSHFUNC_SUBDIR%%/_killall -%%ZSHFUNC_SUBDIR%%/_kld -%%ZSHFUNC_SUBDIR%%/_larch -%%ZSHFUNC_SUBDIR%%/_last -%%ZSHFUNC_SUBDIR%%/_limit -%%ZSHFUNC_SUBDIR%%/_limits -%%ZSHFUNC_SUBDIR%%/_links -%%ZSHFUNC_SUBDIR%%/_list -%%ZSHFUNC_SUBDIR%%/_loadkeys -%%ZSHFUNC_SUBDIR%%/_locales -%%ZSHFUNC_SUBDIR%%/_logical_volumes -%%ZSHFUNC_SUBDIR%%/_look -%%ZSHFUNC_SUBDIR%%/_losetup -%%ZSHFUNC_SUBDIR%%/_lp -%%ZSHFUNC_SUBDIR%%/_ls -%%ZSHFUNC_SUBDIR%%/_lscfg -%%ZSHFUNC_SUBDIR%%/_lsdev -%%ZSHFUNC_SUBDIR%%/_lslv -%%ZSHFUNC_SUBDIR%%/_lsof -%%ZSHFUNC_SUBDIR%%/_lspv -%%ZSHFUNC_SUBDIR%%/_lsvg -%%ZSHFUNC_SUBDIR%%/_lynx -%%ZSHFUNC_SUBDIR%%/_lzop -%%ZSHFUNC_SUBDIR%%/_mail -%%ZSHFUNC_SUBDIR%%/_mailboxes -%%ZSHFUNC_SUBDIR%%/_main_complete -%%ZSHFUNC_SUBDIR%%/_make -%%ZSHFUNC_SUBDIR%%/_make-kpkg -%%ZSHFUNC_SUBDIR%%/_man -%%ZSHFUNC_SUBDIR%%/_match -%%ZSHFUNC_SUBDIR%%/_math -%%ZSHFUNC_SUBDIR%%/_menu -%%ZSHFUNC_SUBDIR%%/_mere -%%ZSHFUNC_SUBDIR%%/_message -%%ZSHFUNC_SUBDIR%%/_mh -%%ZSHFUNC_SUBDIR%%/_modutils -%%ZSHFUNC_SUBDIR%%/_mondo -%%ZSHFUNC_SUBDIR%%/_most_recent_file -%%ZSHFUNC_SUBDIR%%/_mount -%%ZSHFUNC_SUBDIR%%/_mozilla -%%ZSHFUNC_SUBDIR%%/_mt -%%ZSHFUNC_SUBDIR%%/_mtools -%%ZSHFUNC_SUBDIR%%/_multi_parts -%%ZSHFUNC_SUBDIR%%/_mutt -%%ZSHFUNC_SUBDIR%%/_my_accounts -%%ZSHFUNC_SUBDIR%%/_mysql_utils -%%ZSHFUNC_SUBDIR%%/_mysqldiff -%%ZSHFUNC_SUBDIR%%/_ncftp -%%ZSHFUNC_SUBDIR%%/_nedit -%%ZSHFUNC_SUBDIR%%/_net_interfaces -%%ZSHFUNC_SUBDIR%%/_netcat -%%ZSHFUNC_SUBDIR%%/_netscape -%%ZSHFUNC_SUBDIR%%/_newsgroups -%%ZSHFUNC_SUBDIR%%/_next_label -%%ZSHFUNC_SUBDIR%%/_next_tags -%%ZSHFUNC_SUBDIR%%/_normal -%%ZSHFUNC_SUBDIR%%/_nothing -%%ZSHFUNC_SUBDIR%%/_nslookup -%%ZSHFUNC_SUBDIR%%/_object_classes -%%ZSHFUNC_SUBDIR%%/_oldlist -%%ZSHFUNC_SUBDIR%%/_options -%%ZSHFUNC_SUBDIR%%/_options_set -%%ZSHFUNC_SUBDIR%%/_options_unset -%%ZSHFUNC_SUBDIR%%/_other_accounts -%%ZSHFUNC_SUBDIR%%/_p4 -%%ZSHFUNC_SUBDIR%%/_pack -%%ZSHFUNC_SUBDIR%%/_parameter -%%ZSHFUNC_SUBDIR%%/_parameters -%%ZSHFUNC_SUBDIR%%/_patch -%%ZSHFUNC_SUBDIR%%/_path_files -%%ZSHFUNC_SUBDIR%%/_pbm -%%ZSHFUNC_SUBDIR%%/_pdf -%%ZSHFUNC_SUBDIR%%/_perl -%%ZSHFUNC_SUBDIR%%/_perl_basepods -%%ZSHFUNC_SUBDIR%%/_perl_builtin_funcs -%%ZSHFUNC_SUBDIR%%/_perl_modules -%%ZSHFUNC_SUBDIR%%/_perldoc -%%ZSHFUNC_SUBDIR%%/_physical_volumes -%%ZSHFUNC_SUBDIR%%/_pick_variant -%%ZSHFUNC_SUBDIR%%/_pids -%%ZSHFUNC_SUBDIR%%/_pine -%%ZSHFUNC_SUBDIR%%/_ports -%%ZSHFUNC_SUBDIR%%/_prcs -%%ZSHFUNC_SUBDIR%%/_precommand -%%ZSHFUNC_SUBDIR%%/_prefix -%%ZSHFUNC_SUBDIR%%/_print -%%ZSHFUNC_SUBDIR%%/_printers -%%ZSHFUNC_SUBDIR%%/_prompt -%%ZSHFUNC_SUBDIR%%/_ps -%%ZSHFUNC_SUBDIR%%/_pspdf -%%ZSHFUNC_SUBDIR%%/_psutils -%%ZSHFUNC_SUBDIR%%/_rcs -%%ZSHFUNC_SUBDIR%%/_read -%%ZSHFUNC_SUBDIR%%/_read_comp -%%ZSHFUNC_SUBDIR%%/_redirect -%%ZSHFUNC_SUBDIR%%/_regex_arguments -%%ZSHFUNC_SUBDIR%%/_requested -%%ZSHFUNC_SUBDIR%%/_retrieve_cache -%%ZSHFUNC_SUBDIR%%/_rlogin -%%ZSHFUNC_SUBDIR%%/_rpm -%%ZSHFUNC_SUBDIR%%/_rsync -%%ZSHFUNC_SUBDIR%%/_ruby -%%ZSHFUNC_SUBDIR%%/_samba -%%ZSHFUNC_SUBDIR%%/_sccs -%%ZSHFUNC_SUBDIR%%/_sched -%%ZSHFUNC_SUBDIR%%/_sep_parts -%%ZSHFUNC_SUBDIR%%/_service -%%ZSHFUNC_SUBDIR%%/_services -%%ZSHFUNC_SUBDIR%%/_set -%%ZSHFUNC_SUBDIR%%/_set_command -%%ZSHFUNC_SUBDIR%%/_setopt -%%ZSHFUNC_SUBDIR%%/_setup -%%ZSHFUNC_SUBDIR%%/_sh -%%ZSHFUNC_SUBDIR%%/_signals -%%ZSHFUNC_SUBDIR%%/_slrn -%%ZSHFUNC_SUBDIR%%/_smit -%%ZSHFUNC_SUBDIR%%/_socket -%%ZSHFUNC_SUBDIR%%/_source -%%ZSHFUNC_SUBDIR%%/_spamassassin -%%ZSHFUNC_SUBDIR%%/_ssh -%%ZSHFUNC_SUBDIR%%/_stat -%%ZSHFUNC_SUBDIR%%/_store_cache -%%ZSHFUNC_SUBDIR%%/_strip -%%ZSHFUNC_SUBDIR%%/_stty -%%ZSHFUNC_SUBDIR%%/_su -%%ZSHFUNC_SUBDIR%%/_sub_commands -%%ZSHFUNC_SUBDIR%%/_subscript -%%ZSHFUNC_SUBDIR%%/_sudo -%%ZSHFUNC_SUBDIR%%/_sysctl -%%ZSHFUNC_SUBDIR%%/_tags -%%ZSHFUNC_SUBDIR%%/_tar -%%ZSHFUNC_SUBDIR%%/_tar_archive -%%ZSHFUNC_SUBDIR%%/_telnet -%%ZSHFUNC_SUBDIR%%/_terminals -%%ZSHFUNC_SUBDIR%%/_tex -%%ZSHFUNC_SUBDIR%%/_texi -%%ZSHFUNC_SUBDIR%%/_texinfo -%%ZSHFUNC_SUBDIR%%/_tidy -%%ZSHFUNC_SUBDIR%%/_tiff -%%ZSHFUNC_SUBDIR%%/_tilde -%%ZSHFUNC_SUBDIR%%/_tilde_files -%%ZSHFUNC_SUBDIR%%/_time_zone -%%ZSHFUNC_SUBDIR%%/_tin -%%ZSHFUNC_SUBDIR%%/_trap -%%ZSHFUNC_SUBDIR%%/_ttyctl -%%ZSHFUNC_SUBDIR%%/_typeset -%%ZSHFUNC_SUBDIR%%/_ulimit -%%ZSHFUNC_SUBDIR%%/_unhash -%%ZSHFUNC_SUBDIR%%/_unsetopt -%%ZSHFUNC_SUBDIR%%/_update-alternatives -%%ZSHFUNC_SUBDIR%%/_urls -%%ZSHFUNC_SUBDIR%%/_urpmi -%%ZSHFUNC_SUBDIR%%/_user_admin -%%ZSHFUNC_SUBDIR%%/_user_at_host -%%ZSHFUNC_SUBDIR%%/_users -%%ZSHFUNC_SUBDIR%%/_users_on -%%ZSHFUNC_SUBDIR%%/_valgrind -%%ZSHFUNC_SUBDIR%%/_value -%%ZSHFUNC_SUBDIR%%/_values -%%ZSHFUNC_SUBDIR%%/_vared -%%ZSHFUNC_SUBDIR%%/_vars -%%ZSHFUNC_SUBDIR%%/_vnc -%%ZSHFUNC_SUBDIR%%/_volume_groups -%%ZSHFUNC_SUBDIR%%/_w3m -%%ZSHFUNC_SUBDIR%%/_wait -%%ZSHFUNC_SUBDIR%%/_wanted -%%ZSHFUNC_SUBDIR%%/_webbrowser -%%ZSHFUNC_SUBDIR%%/_wget -%%ZSHFUNC_SUBDIR%%/_whereis -%%ZSHFUNC_SUBDIR%%/_which -%%ZSHFUNC_SUBDIR%%/_whois -%%ZSHFUNC_SUBDIR%%/_x_arguments -%%ZSHFUNC_SUBDIR%%/_x_borderwidth -%%ZSHFUNC_SUBDIR%%/_x_color -%%ZSHFUNC_SUBDIR%%/_x_colormapid -%%ZSHFUNC_SUBDIR%%/_x_cursor -%%ZSHFUNC_SUBDIR%%/_x_display -%%ZSHFUNC_SUBDIR%%/_x_extension -%%ZSHFUNC_SUBDIR%%/_x_font -%%ZSHFUNC_SUBDIR%%/_x_geometry -%%ZSHFUNC_SUBDIR%%/_x_keysym -%%ZSHFUNC_SUBDIR%%/_x_locale -%%ZSHFUNC_SUBDIR%%/_x_modifier -%%ZSHFUNC_SUBDIR%%/_x_name -%%ZSHFUNC_SUBDIR%%/_x_resource -%%ZSHFUNC_SUBDIR%%/_x_selection_timeout -%%ZSHFUNC_SUBDIR%%/_x_title -%%ZSHFUNC_SUBDIR%%/_x_utils -%%ZSHFUNC_SUBDIR%%/_x_visual -%%ZSHFUNC_SUBDIR%%/_x_window -%%ZSHFUNC_SUBDIR%%/_xargs -%%ZSHFUNC_SUBDIR%%/_xauth -%%ZSHFUNC_SUBDIR%%/_xdvi -%%ZSHFUNC_SUBDIR%%/_xfig -%%ZSHFUNC_SUBDIR%%/_xloadimage -%%ZSHFUNC_SUBDIR%%/_xmodmap -%%ZSHFUNC_SUBDIR%%/_xrdb -%%ZSHFUNC_SUBDIR%%/_xset -%%ZSHFUNC_SUBDIR%%/_xsltproc -%%ZSHFUNC_SUBDIR%%/_xt_arguments -%%ZSHFUNC_SUBDIR%%/_xt_session_id -%%ZSHFUNC_SUBDIR%%/_xterm -%%ZSHFUNC_SUBDIR%%/_xv -%%ZSHFUNC_SUBDIR%%/_xwit -%%ZSHFUNC_SUBDIR%%/_yodl -%%ZSHFUNC_SUBDIR%%/_yp -%%ZSHFUNC_SUBDIR%%/_zcat -%%ZSHFUNC_SUBDIR%%/_zcompile -%%ZSHFUNC_SUBDIR%%/_zdump -%%ZSHFUNC_SUBDIR%%/_zed -%%ZSHFUNC_SUBDIR%%/_zftp -%%ZSHFUNC_SUBDIR%%/_zip -%%ZSHFUNC_SUBDIR%%/_zle -%%ZSHFUNC_SUBDIR%%/_zmodload -%%ZSHFUNC_SUBDIR%%/_zmv -%%ZSHFUNC_SUBDIR%%/_zpty -%%ZSHFUNC_SUBDIR%%/_zstyle -%%ZSHFUNC_SUBDIR%%/allopt -%%ZSHFUNC_SUBDIR%%/bash-backward-kill-word -%%ZSHFUNC_SUBDIR%%/bash-backward-word -%%ZSHFUNC_SUBDIR%%/bash-down-case-word -%%ZSHFUNC_SUBDIR%%/bash-forward-word -%%ZSHFUNC_SUBDIR%%/bash-kill-word -%%ZSHFUNC_SUBDIR%%/bash-transpose-words -%%ZSHFUNC_SUBDIR%%/bash-up-case-word -%%ZSHFUNC_SUBDIR%%/checkmail -%%ZSHFUNC_SUBDIR%%/colors -%%ZSHFUNC_SUBDIR%%/compaudit -%%ZSHFUNC_SUBDIR%%/compdump -%%ZSHFUNC_SUBDIR%%/compinit -%%ZSHFUNC_SUBDIR%%/compinstall -%%ZSHFUNC_SUBDIR%%/copy-earlier-word -%%ZSHFUNC_SUBDIR%%/cycle-completion-positions -%%ZSHFUNC_SUBDIR%%/down-line-or-beginning-search -%%ZSHFUNC_SUBDIR%%/edit-command-line -%%ZSHFUNC_SUBDIR%%/getjobs -%%ZSHFUNC_SUBDIR%%/harden -%%ZSHFUNC_SUBDIR%%/history-search-end -%%ZSHFUNC_SUBDIR%%/incarg -%%ZSHFUNC_SUBDIR%%/incremental-complete-word -%%ZSHFUNC_SUBDIR%%/insert-files -%%ZSHFUNC_SUBDIR%%/is-at-least -%%ZSHFUNC_SUBDIR%%/mere -%%ZSHFUNC_SUBDIR%%/narrow-to-region -%%ZSHFUNC_SUBDIR%%/narrow-to-region-invisible -%%ZSHFUNC_SUBDIR%%/nslookup -%%ZSHFUNC_SUBDIR%%/predict-on -%%ZSHFUNC_SUBDIR%%/prompt_adam1_setup -%%ZSHFUNC_SUBDIR%%/prompt_adam2_setup -%%ZSHFUNC_SUBDIR%%/prompt_bart_setup -%%ZSHFUNC_SUBDIR%%/prompt_bigfade_setup -%%ZSHFUNC_SUBDIR%%/prompt_clint_setup -%%ZSHFUNC_SUBDIR%%/prompt_elite2_setup -%%ZSHFUNC_SUBDIR%%/prompt_elite_setup -%%ZSHFUNC_SUBDIR%%/prompt_fade_setup -%%ZSHFUNC_SUBDIR%%/prompt_fire_setup -%%ZSHFUNC_SUBDIR%%/prompt_off_setup -%%ZSHFUNC_SUBDIR%%/prompt_oliver_setup -%%ZSHFUNC_SUBDIR%%/prompt_redhat_setup -%%ZSHFUNC_SUBDIR%%/prompt_suse_setup -%%ZSHFUNC_SUBDIR%%/prompt_walters_setup -%%ZSHFUNC_SUBDIR%%/prompt_zefram_setup -%%ZSHFUNC_SUBDIR%%/promptinit -%%ZSHFUNC_SUBDIR%%/promptnl -%%ZSHFUNC_SUBDIR%%/read-from-minibuffer -%%ZSHFUNC_SUBDIR%%/relative -%%ZSHFUNC_SUBDIR%%/replace-string -%%ZSHFUNC_SUBDIR%%/run-help -%%ZSHFUNC_SUBDIR%%/smart-insert-last-word -%%ZSHFUNC_SUBDIR%%/tetris -%%ZSHFUNC_SUBDIR%%/up-line-or-beginning-search -%%ZSHFUNC_SUBDIR%%/zargs -%%ZSHFUNC_SUBDIR%%/zcalc -%%ZSHFUNC_SUBDIR%%/zed -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfanon -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfautocheck -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcd -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcd_match -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcget -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfclose -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcput -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfdir -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zffcache -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfgcp -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfget -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfget_match -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfgoto -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfhere -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfinit -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfls -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfmark -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfopen -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfparams -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfpcp -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfput -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfrglob -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfrtime -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfsession -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfstat -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftp_chpwd -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftp_progress -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftransfer -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftype -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfuget -%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfuput -%%ZSHFUNC_SUBDIR%%/zkbd -%%ZSHFUNC_SUBDIR%%/zmv -%%ZSHFUNC_SUBDIR%%/zrecompile -%%ZSHFUNC_SUBDIR%%/zstyle+ -@exec mkdir %D/share/zsh/site-functions -%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh/net %%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh %%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%% -%%NO_STATIC%%@dirrm lib/zsh -@dirrm %%ZSHFUNC_SUBDIR%% -@dirrm share/zsh/%%ZSH_VER%% -@dirrm share/zsh/site-functions -@dirrm share/zsh -@dirrm share/examples/zsh +%%NO_STATIC%%lib/zsh/libzsh-%%ZSH_VER%%.so +%%NO_STATIC%%@unexec rmdir %D/lib/zsh 2> /dev/null || true +%%PORTDOCS%%%%DOCSDIR%%/BUGS +%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/FAQ +%%PORTDOCS%%%%DOCSDIR%%/FEATURES +%%PORTDOCS%%%%DOCSDIR%%/LICENCE +%%PORTDOCS%%%%DOCSDIR%%/META-FAQ +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/completion-style-guide +%%PORTDOCS%%%%DOCSDIR%%/pubring.pgp +%%PORTDOCS%%%%DOCSDIR%%/zsh-development-guide +%%PORTDOCS%%%%DOCSDIR%%/zsh.dvi +%%PORTDOCS%%%%DOCSDIR%%/zsh_1.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_10.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_11.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_12.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_13.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_14.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_15.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_16.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_17.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_18.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_19.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_2.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_20.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_21.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_22.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_23.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_24.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_25.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_26.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_27.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_28.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_29.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_3.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_30.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_31.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_32.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_33.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_34.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_35.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_36.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_37.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_38.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_39.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_4.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_40.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_41.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_42.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_5.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_6.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_7.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_8.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_9.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_a4.ps +%%PORTDOCS%%%%DOCSDIR%%/zsh_toc.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_us.ps +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%EXAMPLESDIR%%/zlogin +%%EXAMPLESDIR%%/zshenv +%%EXAMPLESDIR%%/zshrc +@dirrm %%EXAMPLESDIR%% +@exec mkdir %%ZSH_SITEFNDIR%% 2> /dev/null || true +@unexec rmdir %%ZSH_SITEFNDIR%% 2> /dev/null || true +%%ZSH_FNDIR%%/Completion/AIX/_floppy +%%ZSH_FNDIR%%/Completion/AIX/_logical_volumes +%%ZSH_FNDIR%%/Completion/AIX/_lscfg +%%ZSH_FNDIR%%/Completion/AIX/_lsdev +%%ZSH_FNDIR%%/Completion/AIX/_lslv +%%ZSH_FNDIR%%/Completion/AIX/_lspv +%%ZSH_FNDIR%%/Completion/AIX/_lsvg +%%ZSH_FNDIR%%/Completion/AIX/_object_classes +%%ZSH_FNDIR%%/Completion/AIX/_physical_volumes +%%ZSH_FNDIR%%/Completion/AIX/_smit +%%ZSH_FNDIR%%/Completion/AIX/_volume_groups +@dirrm %%ZSH_FNDIR%%/Completion/AIX +%%ZSH_FNDIR%%/Completion/BSD/_bsd_pkg +%%ZSH_FNDIR%%/Completion/BSD/_chflags +%%ZSH_FNDIR%%/Completion/BSD/_cvsup +%%ZSH_FNDIR%%/Completion/BSD/_kld +@dirrm %%ZSH_FNDIR%%/Completion/BSD +%%ZSH_FNDIR%%/Completion/Base/_all_labels +%%ZSH_FNDIR%%/Completion/Base/_all_matches +%%ZSH_FNDIR%%/Completion/Base/_alternative +%%ZSH_FNDIR%%/Completion/Base/_approximate +%%ZSH_FNDIR%%/Completion/Base/_arg_compile +%%ZSH_FNDIR%%/Completion/Base/_arguments +%%ZSH_FNDIR%%/Completion/Base/_bash_completions +%%ZSH_FNDIR%%/Completion/Base/_cache_invalid +%%ZSH_FNDIR%%/Completion/Base/_call_function +%%ZSH_FNDIR%%/Completion/Base/_call_program +%%ZSH_FNDIR%%/Completion/Base/_combination +%%ZSH_FNDIR%%/Completion/Base/_complete +%%ZSH_FNDIR%%/Completion/Base/_complete_debug +%%ZSH_FNDIR%%/Completion/Base/_complete_help +%%ZSH_FNDIR%%/Completion/Base/_complete_tag +%%ZSH_FNDIR%%/Completion/Base/_correct +%%ZSH_FNDIR%%/Completion/Base/_correct_filename +%%ZSH_FNDIR%%/Completion/Base/_correct_word +%%ZSH_FNDIR%%/Completion/Base/_describe +%%ZSH_FNDIR%%/Completion/Base/_description +%%ZSH_FNDIR%%/Completion/Base/_dispatch +%%ZSH_FNDIR%%/Completion/Base/_expand +%%ZSH_FNDIR%%/Completion/Base/_expand_alias +%%ZSH_FNDIR%%/Completion/Base/_expand_word +%%ZSH_FNDIR%%/Completion/Base/_generic +%%ZSH_FNDIR%%/Completion/Base/_guard +%%ZSH_FNDIR%%/Completion/Base/_history +%%ZSH_FNDIR%%/Completion/Base/_history_complete_word +%%ZSH_FNDIR%%/Completion/Base/_ignored +%%ZSH_FNDIR%%/Completion/Base/_list +%%ZSH_FNDIR%%/Completion/Base/_main_complete +%%ZSH_FNDIR%%/Completion/Base/_match +%%ZSH_FNDIR%%/Completion/Base/_menu +%%ZSH_FNDIR%%/Completion/Base/_message +%%ZSH_FNDIR%%/Completion/Base/_most_recent_file +%%ZSH_FNDIR%%/Completion/Base/_multi_parts +%%ZSH_FNDIR%%/Completion/Base/_next_label +%%ZSH_FNDIR%%/Completion/Base/_next_tags +%%ZSH_FNDIR%%/Completion/Base/_normal +%%ZSH_FNDIR%%/Completion/Base/_nothing +%%ZSH_FNDIR%%/Completion/Base/_oldlist +%%ZSH_FNDIR%%/Completion/Base/_pick_variant +%%ZSH_FNDIR%%/Completion/Base/_prefix +%%ZSH_FNDIR%%/Completion/Base/_read_comp +%%ZSH_FNDIR%%/Completion/Base/_regex_arguments +%%ZSH_FNDIR%%/Completion/Base/_requested +%%ZSH_FNDIR%%/Completion/Base/_retrieve_cache +%%ZSH_FNDIR%%/Completion/Base/_sep_parts +%%ZSH_FNDIR%%/Completion/Base/_set_command +%%ZSH_FNDIR%%/Completion/Base/_setup +%%ZSH_FNDIR%%/Completion/Base/_store_cache +%%ZSH_FNDIR%%/Completion/Base/_sub_commands +%%ZSH_FNDIR%%/Completion/Base/_tags +%%ZSH_FNDIR%%/Completion/Base/_values +%%ZSH_FNDIR%%/Completion/Base/_wanted +@dirrm %%ZSH_FNDIR%%/Completion/Base +%%ZSH_FNDIR%%/Completion/Cygwin/_cygcheck +%%ZSH_FNDIR%%/Completion/Cygwin/_cygpath +%%ZSH_FNDIR%%/Completion/Cygwin/_cygrunsrv +%%ZSH_FNDIR%%/Completion/Cygwin/_cygserver +%%ZSH_FNDIR%%/Completion/Cygwin/_cygstart +%%ZSH_FNDIR%%/Completion/Cygwin/_dumper +%%ZSH_FNDIR%%/Completion/Cygwin/_getclip +%%ZSH_FNDIR%%/Completion/Cygwin/_getfacl +%%ZSH_FNDIR%%/Completion/Cygwin/_mkshortcut +%%ZSH_FNDIR%%/Completion/Cygwin/_mkzsh +%%ZSH_FNDIR%%/Completion/Cygwin/_pscp +%%ZSH_FNDIR%%/Completion/Cygwin/_putclip +@dirrm %%ZSH_FNDIR%%/Completion/Cygwin +%%ZSH_FNDIR%%/Completion/Debian/_apt +%%ZSH_FNDIR%%/Completion/Debian/_apt-show-versions +%%ZSH_FNDIR%%/Completion/Debian/_auto-apt +%%ZSH_FNDIR%%/Completion/Debian/_bts +%%ZSH_FNDIR%%/Completion/Debian/_bug +%%ZSH_FNDIR%%/Completion/Debian/_deb_packages +%%ZSH_FNDIR%%/Completion/Debian/_debchange +%%ZSH_FNDIR%%/Completion/Debian/_debfoster +%%ZSH_FNDIR%%/Completion/Debian/_dpkg +%%ZSH_FNDIR%%/Completion/Debian/_dpkg_source +%%ZSH_FNDIR%%/Completion/Debian/_dput +%%ZSH_FNDIR%%/Completion/Debian/_dupload +%%ZSH_FNDIR%%/Completion/Debian/_make-kpkg +%%ZSH_FNDIR%%/Completion/Debian/_update-alternatives +@dirrm %%ZSH_FNDIR%%/Completion/Debian +%%ZSH_FNDIR%%/Completion/Linux/_losetup +%%ZSH_FNDIR%%/Completion/Linux/_modutils +%%ZSH_FNDIR%%/Completion/Linux/_mondo +%%ZSH_FNDIR%%/Completion/Linux/_uml +%%ZSH_FNDIR%%/Completion/Linux/_valgrind +@dirrm %%ZSH_FNDIR%%/Completion/Linux +%%ZSH_FNDIR%%/Completion/Mandrake/_urpmi +@dirrm %%ZSH_FNDIR%%/Completion/Mandrake +%%ZSH_FNDIR%%/Completion/Redhat/_rpm +%%ZSH_FNDIR%%/Completion/Redhat/_service +@dirrm %%ZSH_FNDIR%%/Completion/Redhat +%%ZSH_FNDIR%%/Completion/Unix/_a2ps +%%ZSH_FNDIR%%/Completion/Unix/_ant +%%ZSH_FNDIR%%/Completion/Unix/_antiword +%%ZSH_FNDIR%%/Completion/Unix/_apachectl +%%ZSH_FNDIR%%/Completion/Unix/_apm +%%ZSH_FNDIR%%/Completion/Unix/_archie +%%ZSH_FNDIR%%/Completion/Unix/_arp +%%ZSH_FNDIR%%/Completion/Unix/_arping +%%ZSH_FNDIR%%/Completion/Unix/_bison +%%ZSH_FNDIR%%/Completion/Unix/_bzip2 +%%ZSH_FNDIR%%/Completion/Unix/_cdcd +%%ZSH_FNDIR%%/Completion/Unix/_chkconfig +%%ZSH_FNDIR%%/Completion/Unix/_chown +%%ZSH_FNDIR%%/Completion/Unix/_compress +%%ZSH_FNDIR%%/Completion/Unix/_configure +%%ZSH_FNDIR%%/Completion/Unix/_cpio +%%ZSH_FNDIR%%/Completion/Unix/_cvs +%%ZSH_FNDIR%%/Completion/Unix/_dd +%%ZSH_FNDIR%%/Completion/Unix/_dict +%%ZSH_FNDIR%%/Completion/Unix/_dict_words +%%ZSH_FNDIR%%/Completion/Unix/_diff +%%ZSH_FNDIR%%/Completion/Unix/_diff_options +%%ZSH_FNDIR%%/Completion/Unix/_dir_list +%%ZSH_FNDIR%%/Completion/Unix/_directories +%%ZSH_FNDIR%%/Completion/Unix/_domains +%%ZSH_FNDIR%%/Completion/Unix/_dvi +%%ZSH_FNDIR%%/Completion/Unix/_ecasound +%%ZSH_FNDIR%%/Completion/Unix/_elinks +%%ZSH_FNDIR%%/Completion/Unix/_elm +%%ZSH_FNDIR%%/Completion/Unix/_email_addresses +%%ZSH_FNDIR%%/Completion/Unix/_enscript +%%ZSH_FNDIR%%/Completion/Unix/_fakeroot +%%ZSH_FNDIR%%/Completion/Unix/_fetchmail +%%ZSH_FNDIR%%/Completion/Unix/_figlet +%%ZSH_FNDIR%%/Completion/Unix/_file_systems +%%ZSH_FNDIR%%/Completion/Unix/_files +%%ZSH_FNDIR%%/Completion/Unix/_find +%%ZSH_FNDIR%%/Completion/Unix/_finger +%%ZSH_FNDIR%%/Completion/Unix/_flex +%%ZSH_FNDIR%%/Completion/Unix/_fsh +%%ZSH_FNDIR%%/Completion/Unix/_gcc +%%ZSH_FNDIR%%/Completion/Unix/_gdb +%%ZSH_FNDIR%%/Completion/Unix/_getconf +%%ZSH_FNDIR%%/Completion/Unix/_global +%%ZSH_FNDIR%%/Completion/Unix/_global_tags +%%ZSH_FNDIR%%/Completion/Unix/_gnu_generic +%%ZSH_FNDIR%%/Completion/Unix/_gpg +%%ZSH_FNDIR%%/Completion/Unix/_gprof +%%ZSH_FNDIR%%/Completion/Unix/_grep +%%ZSH_FNDIR%%/Completion/Unix/_groups +%%ZSH_FNDIR%%/Completion/Unix/_gs +%%ZSH_FNDIR%%/Completion/Unix/_gzip +%%ZSH_FNDIR%%/Completion/Unix/_hosts +%%ZSH_FNDIR%%/Completion/Unix/_iconv +%%ZSH_FNDIR%%/Completion/Unix/_ifconfig +%%ZSH_FNDIR%%/Completion/Unix/_imagemagick +%%ZSH_FNDIR%%/Completion/Unix/_init_d +%%ZSH_FNDIR%%/Completion/Unix/_irssi +%%ZSH_FNDIR%%/Completion/Unix/_ispell +%%ZSH_FNDIR%%/Completion/Unix/_java +%%ZSH_FNDIR%%/Completion/Unix/_java_class +%%ZSH_FNDIR%%/Completion/Unix/_joe +%%ZSH_FNDIR%%/Completion/Unix/_killall +%%ZSH_FNDIR%%/Completion/Unix/_larch +%%ZSH_FNDIR%%/Completion/Unix/_last +%%ZSH_FNDIR%%/Completion/Unix/_links +%%ZSH_FNDIR%%/Completion/Unix/_loadkeys +%%ZSH_FNDIR%%/Completion/Unix/_locales +%%ZSH_FNDIR%%/Completion/Unix/_look +%%ZSH_FNDIR%%/Completion/Unix/_lp +%%ZSH_FNDIR%%/Completion/Unix/_ls +%%ZSH_FNDIR%%/Completion/Unix/_lsof +%%ZSH_FNDIR%%/Completion/Unix/_lynx +%%ZSH_FNDIR%%/Completion/Unix/_lzop +%%ZSH_FNDIR%%/Completion/Unix/_mail +%%ZSH_FNDIR%%/Completion/Unix/_mailboxes +%%ZSH_FNDIR%%/Completion/Unix/_make +%%ZSH_FNDIR%%/Completion/Unix/_man +%%ZSH_FNDIR%%/Completion/Unix/_mh +%%ZSH_FNDIR%%/Completion/Unix/_mount +%%ZSH_FNDIR%%/Completion/Unix/_mt +%%ZSH_FNDIR%%/Completion/Unix/_mtools +%%ZSH_FNDIR%%/Completion/Unix/_mutt +%%ZSH_FNDIR%%/Completion/Unix/_my_accounts +%%ZSH_FNDIR%%/Completion/Unix/_mysql_utils +%%ZSH_FNDIR%%/Completion/Unix/_mysqldiff +%%ZSH_FNDIR%%/Completion/Unix/_ncftp +%%ZSH_FNDIR%%/Completion/Unix/_net_interfaces +%%ZSH_FNDIR%%/Completion/Unix/_netcat +%%ZSH_FNDIR%%/Completion/Unix/_newsgroups +%%ZSH_FNDIR%%/Completion/Unix/_nslookup +%%ZSH_FNDIR%%/Completion/Unix/_other_accounts +%%ZSH_FNDIR%%/Completion/Unix/_pack +%%ZSH_FNDIR%%/Completion/Unix/_patch +%%ZSH_FNDIR%%/Completion/Unix/_path_files +%%ZSH_FNDIR%%/Completion/Unix/_pbm +%%ZSH_FNDIR%%/Completion/Unix/_pdf +%%ZSH_FNDIR%%/Completion/Unix/_perforce +%%ZSH_FNDIR%%/Completion/Unix/_perl +%%ZSH_FNDIR%%/Completion/Unix/_perl_basepods +%%ZSH_FNDIR%%/Completion/Unix/_perl_builtin_funcs +%%ZSH_FNDIR%%/Completion/Unix/_perl_modules +%%ZSH_FNDIR%%/Completion/Unix/_perldoc +%%ZSH_FNDIR%%/Completion/Unix/_pids +%%ZSH_FNDIR%%/Completion/Unix/_pine +%%ZSH_FNDIR%%/Completion/Unix/_ports +%%ZSH_FNDIR%%/Completion/Unix/_prcs +%%ZSH_FNDIR%%/Completion/Unix/_printers +%%ZSH_FNDIR%%/Completion/Unix/_ps +%%ZSH_FNDIR%%/Completion/Unix/_pspdf +%%ZSH_FNDIR%%/Completion/Unix/_psutils +%%ZSH_FNDIR%%/Completion/Unix/_python +%%ZSH_FNDIR%%/Completion/Unix/_rcs +%%ZSH_FNDIR%%/Completion/Unix/_renice +%%ZSH_FNDIR%%/Completion/Unix/_rlogin +%%ZSH_FNDIR%%/Completion/Unix/_rsync +%%ZSH_FNDIR%%/Completion/Unix/_ruby +%%ZSH_FNDIR%%/Completion/Unix/_samba +%%ZSH_FNDIR%%/Completion/Unix/_sccs +%%ZSH_FNDIR%%/Completion/Unix/_screen +%%ZSH_FNDIR%%/Completion/Unix/_services +%%ZSH_FNDIR%%/Completion/Unix/_sh +%%ZSH_FNDIR%%/Completion/Unix/_signals +%%ZSH_FNDIR%%/Completion/Unix/_slrn +%%ZSH_FNDIR%%/Completion/Unix/_socket +%%ZSH_FNDIR%%/Completion/Unix/_spamassassin +%%ZSH_FNDIR%%/Completion/Unix/_ssh +%%ZSH_FNDIR%%/Completion/Unix/_strip +%%ZSH_FNDIR%%/Completion/Unix/_stty +%%ZSH_FNDIR%%/Completion/Unix/_su +%%ZSH_FNDIR%%/Completion/Unix/_sudo +%%ZSH_FNDIR%%/Completion/Unix/_sysctl +%%ZSH_FNDIR%%/Completion/Unix/_tar +%%ZSH_FNDIR%%/Completion/Unix/_tar_archive +%%ZSH_FNDIR%%/Completion/Unix/_telnet +%%ZSH_FNDIR%%/Completion/Unix/_terminals +%%ZSH_FNDIR%%/Completion/Unix/_tex +%%ZSH_FNDIR%%/Completion/Unix/_texi +%%ZSH_FNDIR%%/Completion/Unix/_texinfo +%%ZSH_FNDIR%%/Completion/Unix/_tidy +%%ZSH_FNDIR%%/Completion/Unix/_tiff +%%ZSH_FNDIR%%/Completion/Unix/_tilde_files +%%ZSH_FNDIR%%/Completion/Unix/_time_zone +%%ZSH_FNDIR%%/Completion/Unix/_tin +%%ZSH_FNDIR%%/Completion/Unix/_urls +%%ZSH_FNDIR%%/Completion/Unix/_user_admin +%%ZSH_FNDIR%%/Completion/Unix/_user_at_host +%%ZSH_FNDIR%%/Completion/Unix/_users +%%ZSH_FNDIR%%/Completion/Unix/_users_on +%%ZSH_FNDIR%%/Completion/Unix/_w3m +%%ZSH_FNDIR%%/Completion/Unix/_webbrowser +%%ZSH_FNDIR%%/Completion/Unix/_wget +%%ZSH_FNDIR%%/Completion/Unix/_whereis +%%ZSH_FNDIR%%/Completion/Unix/_whois +%%ZSH_FNDIR%%/Completion/Unix/_xargs +%%ZSH_FNDIR%%/Completion/Unix/_xmlsoft +%%ZSH_FNDIR%%/Completion/Unix/_yodl +%%ZSH_FNDIR%%/Completion/Unix/_yp +%%ZSH_FNDIR%%/Completion/Unix/_zcat +%%ZSH_FNDIR%%/Completion/Unix/_zdump +%%ZSH_FNDIR%%/Completion/Unix/_zip +@dirrm %%ZSH_FNDIR%%/Completion/Unix +%%ZSH_FNDIR%%/Completion/X/_acroread +%%ZSH_FNDIR%%/Completion/X/_dcop +%%ZSH_FNDIR%%/Completion/X/_gqview +%%ZSH_FNDIR%%/Completion/X/_gv +%%ZSH_FNDIR%%/Completion/X/_mozilla +%%ZSH_FNDIR%%/Completion/X/_mplayer +%%ZSH_FNDIR%%/Completion/X/_nedit +%%ZSH_FNDIR%%/Completion/X/_netscape +%%ZSH_FNDIR%%/Completion/X/_vnc +%%ZSH_FNDIR%%/Completion/X/_x_arguments +%%ZSH_FNDIR%%/Completion/X/_x_borderwidth +%%ZSH_FNDIR%%/Completion/X/_x_color +%%ZSH_FNDIR%%/Completion/X/_x_colormapid +%%ZSH_FNDIR%%/Completion/X/_x_cursor +%%ZSH_FNDIR%%/Completion/X/_x_display +%%ZSH_FNDIR%%/Completion/X/_x_extension +%%ZSH_FNDIR%%/Completion/X/_x_font +%%ZSH_FNDIR%%/Completion/X/_x_geometry +%%ZSH_FNDIR%%/Completion/X/_x_keysym +%%ZSH_FNDIR%%/Completion/X/_x_locale +%%ZSH_FNDIR%%/Completion/X/_x_modifier +%%ZSH_FNDIR%%/Completion/X/_x_name +%%ZSH_FNDIR%%/Completion/X/_x_resource +%%ZSH_FNDIR%%/Completion/X/_x_selection_timeout +%%ZSH_FNDIR%%/Completion/X/_x_title +%%ZSH_FNDIR%%/Completion/X/_x_utils +%%ZSH_FNDIR%%/Completion/X/_x_visual +%%ZSH_FNDIR%%/Completion/X/_x_window +%%ZSH_FNDIR%%/Completion/X/_xauth +%%ZSH_FNDIR%%/Completion/X/_xdvi +%%ZSH_FNDIR%%/Completion/X/_xfig +%%ZSH_FNDIR%%/Completion/X/_xloadimage +%%ZSH_FNDIR%%/Completion/X/_xmodmap +%%ZSH_FNDIR%%/Completion/X/_xset +%%ZSH_FNDIR%%/Completion/X/_xt_arguments +%%ZSH_FNDIR%%/Completion/X/_xt_session_id +%%ZSH_FNDIR%%/Completion/X/_xterm +%%ZSH_FNDIR%%/Completion/X/_xv +%%ZSH_FNDIR%%/Completion/X/_xwit +@dirrm %%ZSH_FNDIR%%/Completion/X +%%ZSH_FNDIR%%/Completion/Zsh/_alias +%%ZSH_FNDIR%%/Completion/Zsh/_aliases +%%ZSH_FNDIR%%/Completion/Zsh/_arrays +%%ZSH_FNDIR%%/Completion/Zsh/_assign +%%ZSH_FNDIR%%/Completion/Zsh/_autocd +%%ZSH_FNDIR%%/Completion/Zsh/_autoload +%%ZSH_FNDIR%%/Completion/Zsh/_bindkey +%%ZSH_FNDIR%%/Completion/Zsh/_brace_parameter +%%ZSH_FNDIR%%/Completion/Zsh/_builtin +%%ZSH_FNDIR%%/Completion/Zsh/_cd +%%ZSH_FNDIR%%/Completion/Zsh/_command +%%ZSH_FNDIR%%/Completion/Zsh/_command_names +%%ZSH_FNDIR%%/Completion/Zsh/_compdef +%%ZSH_FNDIR%%/Completion/Zsh/_condition +%%ZSH_FNDIR%%/Completion/Zsh/_default +%%ZSH_FNDIR%%/Completion/Zsh/_directory_stack +%%ZSH_FNDIR%%/Completion/Zsh/_dirs +%%ZSH_FNDIR%%/Completion/Zsh/_disable +%%ZSH_FNDIR%%/Completion/Zsh/_echotc +%%ZSH_FNDIR%%/Completion/Zsh/_echoti +%%ZSH_FNDIR%%/Completion/Zsh/_emulate +%%ZSH_FNDIR%%/Completion/Zsh/_enable +%%ZSH_FNDIR%%/Completion/Zsh/_equal +%%ZSH_FNDIR%%/Completion/Zsh/_fc +%%ZSH_FNDIR%%/Completion/Zsh/_file_descriptors +%%ZSH_FNDIR%%/Completion/Zsh/_first +%%ZSH_FNDIR%%/Completion/Zsh/_functions +%%ZSH_FNDIR%%/Completion/Zsh/_hash +%%ZSH_FNDIR%%/Completion/Zsh/_in_vared +%%ZSH_FNDIR%%/Completion/Zsh/_jobs +%%ZSH_FNDIR%%/Completion/Zsh/_jobs_bg +%%ZSH_FNDIR%%/Completion/Zsh/_jobs_builtin +%%ZSH_FNDIR%%/Completion/Zsh/_jobs_fg +%%ZSH_FNDIR%%/Completion/Zsh/_kill +%%ZSH_FNDIR%%/Completion/Zsh/_limit +%%ZSH_FNDIR%%/Completion/Zsh/_limits +%%ZSH_FNDIR%%/Completion/Zsh/_math +%%ZSH_FNDIR%%/Completion/Zsh/_mere +%%ZSH_FNDIR%%/Completion/Zsh/_options +%%ZSH_FNDIR%%/Completion/Zsh/_options_set +%%ZSH_FNDIR%%/Completion/Zsh/_options_unset +%%ZSH_FNDIR%%/Completion/Zsh/_parameter +%%ZSH_FNDIR%%/Completion/Zsh/_parameters +%%ZSH_FNDIR%%/Completion/Zsh/_precommand +%%ZSH_FNDIR%%/Completion/Zsh/_print +%%ZSH_FNDIR%%/Completion/Zsh/_prompt +%%ZSH_FNDIR%%/Completion/Zsh/_read +%%ZSH_FNDIR%%/Completion/Zsh/_redirect +%%ZSH_FNDIR%%/Completion/Zsh/_sched +%%ZSH_FNDIR%%/Completion/Zsh/_set +%%ZSH_FNDIR%%/Completion/Zsh/_setopt +%%ZSH_FNDIR%%/Completion/Zsh/_source +%%ZSH_FNDIR%%/Completion/Zsh/_stat +%%ZSH_FNDIR%%/Completion/Zsh/_subscript +%%ZSH_FNDIR%%/Completion/Zsh/_tilde +%%ZSH_FNDIR%%/Completion/Zsh/_trap +%%ZSH_FNDIR%%/Completion/Zsh/_ttyctl +%%ZSH_FNDIR%%/Completion/Zsh/_typeset +%%ZSH_FNDIR%%/Completion/Zsh/_ulimit +%%ZSH_FNDIR%%/Completion/Zsh/_unhash +%%ZSH_FNDIR%%/Completion/Zsh/_unsetopt +%%ZSH_FNDIR%%/Completion/Zsh/_value +%%ZSH_FNDIR%%/Completion/Zsh/_vared +%%ZSH_FNDIR%%/Completion/Zsh/_vars +%%ZSH_FNDIR%%/Completion/Zsh/_wait +%%ZSH_FNDIR%%/Completion/Zsh/_which +%%ZSH_FNDIR%%/Completion/Zsh/_zcompile +%%ZSH_FNDIR%%/Completion/Zsh/_zed +%%ZSH_FNDIR%%/Completion/Zsh/_zftp +%%ZSH_FNDIR%%/Completion/Zsh/_zle +%%ZSH_FNDIR%%/Completion/Zsh/_zmodload +%%ZSH_FNDIR%%/Completion/Zsh/_zmv +%%ZSH_FNDIR%%/Completion/Zsh/_zpty +%%ZSH_FNDIR%%/Completion/Zsh/_zstyle +@dirrm %%ZSH_FNDIR%%/Completion/Zsh +%%ZSH_FNDIR%%/Completion/bashcompinit +%%ZSH_FNDIR%%/Completion/compaudit +%%ZSH_FNDIR%%/Completion/compdump +%%ZSH_FNDIR%%/Completion/compinit +%%ZSH_FNDIR%%/Completion/compinstall +@dirrm %%ZSH_FNDIR%%/Completion +%%ZSH_FNDIR%%/Misc/allopt +%%ZSH_FNDIR%%/Misc/checkmail +%%ZSH_FNDIR%%/Misc/colors +%%ZSH_FNDIR%%/Misc/getjobs +%%ZSH_FNDIR%%/Misc/harden +%%ZSH_FNDIR%%/Misc/is-at-least +%%ZSH_FNDIR%%/Misc/mere +%%ZSH_FNDIR%%/Misc/nslookup +%%ZSH_FNDIR%%/Misc/promptnl +%%ZSH_FNDIR%%/Misc/relative +%%ZSH_FNDIR%%/Misc/run-help +%%ZSH_FNDIR%%/Misc/tetris +%%ZSH_FNDIR%%/Misc/zargs +%%ZSH_FNDIR%%/Misc/zcalc +%%ZSH_FNDIR%%/Misc/zed +%%ZSH_FNDIR%%/Misc/zkbd +%%ZSH_FNDIR%%/Misc/zmv +%%ZSH_FNDIR%%/Misc/zrecompile +%%ZSH_FNDIR%%/Misc/zstyle+ +@dirrm %%ZSH_FNDIR%%/Misc +%%ZSH_FNDIR%%/Prompts/prompt_adam1_setup +%%ZSH_FNDIR%%/Prompts/prompt_adam2_setup +%%ZSH_FNDIR%%/Prompts/prompt_bart_setup +%%ZSH_FNDIR%%/Prompts/prompt_bigfade_setup +%%ZSH_FNDIR%%/Prompts/prompt_clint_setup +%%ZSH_FNDIR%%/Prompts/prompt_elite2_setup +%%ZSH_FNDIR%%/Prompts/prompt_elite_setup +%%ZSH_FNDIR%%/Prompts/prompt_fade_setup +%%ZSH_FNDIR%%/Prompts/prompt_fire_setup +%%ZSH_FNDIR%%/Prompts/prompt_off_setup +%%ZSH_FNDIR%%/Prompts/prompt_oliver_setup +%%ZSH_FNDIR%%/Prompts/prompt_redhat_setup +%%ZSH_FNDIR%%/Prompts/prompt_suse_setup +%%ZSH_FNDIR%%/Prompts/prompt_walters_setup +%%ZSH_FNDIR%%/Prompts/prompt_zefram_setup +%%ZSH_FNDIR%%/Prompts/promptinit +@dirrm %%ZSH_FNDIR%%/Prompts +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_alias +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_close +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_command +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_expect +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_fd_handler +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_log +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_open +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_output +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_proxy +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_read +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_rename +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_send +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_sess +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_spam +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_talk +%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_wait +%%NO_STATIC%%@dirrm %%ZSH_FNDIR%%/TCP +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfanon +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfautocheck +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcd +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcd_match +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcget +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfclose +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcput +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfdir +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zffcache +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfgcp +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfget +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfget_match +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfgoto +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfhere +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfinit +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfls +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfmark +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfopen +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfparams +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfpcp +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfput +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfrglob +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfrtime +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfsession +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfstat +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftp_chpwd +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftp_progress +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftransfer +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftype +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfuget +%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfuput +%%NO_STATIC%%@dirrm %%ZSH_FNDIR%%/Zftp +%%ZSH_FNDIR%%/Zle/backward-kill-word-match +%%ZSH_FNDIR%%/Zle/backward-word-match +%%ZSH_FNDIR%%/Zle/capitalize-word-match +%%ZSH_FNDIR%%/Zle/copy-earlier-word +%%ZSH_FNDIR%%/Zle/cycle-completion-positions +%%ZSH_FNDIR%%/Zle/down-case-word-match +%%ZSH_FNDIR%%/Zle/down-line-or-beginning-search +%%ZSH_FNDIR%%/Zle/edit-command-line +%%ZSH_FNDIR%%/Zle/forward-word-match +%%ZSH_FNDIR%%/Zle/history-search-end +%%ZSH_FNDIR%%/Zle/incarg +%%ZSH_FNDIR%%/Zle/incremental-complete-word +%%ZSH_FNDIR%%/Zle/insert-files +%%ZSH_FNDIR%%/Zle/kill-word-match +%%ZSH_FNDIR%%/Zle/match-words-by-style +%%ZSH_FNDIR%%/Zle/narrow-to-region +%%ZSH_FNDIR%%/Zle/narrow-to-region-invisible +%%ZSH_FNDIR%%/Zle/predict-on +%%ZSH_FNDIR%%/Zle/read-from-minibuffer +%%ZSH_FNDIR%%/Zle/replace-string +%%ZSH_FNDIR%%/Zle/select-word-style +%%ZSH_FNDIR%%/Zle/smart-insert-last-word +%%ZSH_FNDIR%%/Zle/transpose-words-match +%%ZSH_FNDIR%%/Zle/up-case-word-match +%%ZSH_FNDIR%%/Zle/up-line-or-beginning-search +@dirrm %%ZSH_FNDIR%%/Zle +@dirrm %%ZSH_FNDIR%% +@dirrm %%DATADIR%%/%%ZSH_VER%% +@dirrm %%DATADIR%% |