From owner-freebsd-ports-bugs Wed Mar 12 3:40:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4772037B401 for ; Wed, 12 Mar 2003 03:40:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD53D43FBF for ; Wed, 12 Mar 2003 03:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CBe5NS034147 for ; Wed, 12 Mar 2003 03:40:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CBe5ie034146; Wed, 12 Mar 2003 03:40:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E12337B401 for ; Wed, 12 Mar 2003 03:33:28 -0800 (PST) Received: from outpost.lukarcos.com (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 219FB43F75 for ; Wed, 12 Mar 2003 03:33:24 -0800 (PST) (envelope-from sgk@outpost.globcon.net) Received: (qmail 53672 invoked by uid 911); 12 Mar 2003 11:33:18 -0000 Message-Id: <20030312113318.53671.qmail@outpost.globcon.net> Date: 12 Mar 2003 11:33:18 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org Cc: will@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/49954: [PATCH] shells/zsh: enable function subdirs, add docs, and more Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49954 >Category: ports >Synopsis: [PATCH] shells/zsh: enable function subdirs, add docs, and more >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 03:40:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD outpost.globcon.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Oct 14 02:23:23 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 >Description: - Enable functions subdirs. Now functions bundled in the distribution will be installed in several subdirs (.../Completion/BSD, .../Prompts, etc.) instead of a single flat dir with zillions of files in it. Functions, especially completion functions, could be very good educational resoure, so make it easier for user to browse that collection. - Install single zsh.info instead of breaking it up into 20 pieces - Simplify HTML docs installation - removes the need for USE_REINPLACE - Install additional documentation - Add 2 compile-time knobs and document existing one - Allow user to override some directory structure settings: - ZSH_ETCDIR - where to put system-wide config files. Defaults to /etc to avoid violating POLA, although making it ${PREFIX}/etc/zsh would be better way to do it, IMHO (and PREFIX-clean, too) - ZSH_SITEFNDIR - where to put local (site) functions. Default to ${PREFIX}/share/zsh/site-functions as before. - ZSH_FNDIR - where to put the bundled functions. - Use (DATA|DOCS|EXAMPLES)DIR in Makefile and pkg-plist - Bump PORTREVISION Port maintainer - will@FreeBSD.org - has been copied. >How-To-Repeat: >Fix: --- zsh-4.0.6.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/shells/zsh/Makefile,v retrieving revision 1.58 diff -u -r1.58 Makefile --- Makefile 2003/02/18 05:58:39 1.58 +++ Makefile 2003/03/12 11:13:43 @@ -5,8 +5,28 @@ # $FreeBSD: ports/shells/zsh/Makefile,v 1.58 2003/02/18 05:58:39 knu Exp $ # +# The following compile-time options are available: +# WANT_STATIC=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= 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= directory for zsh functions (part of distribution) +# (default: ${PREFIX}/share/zsh/${ZSH_VER}/functions) +# NOTE: should be inside ${PREFIX} tree +# ZSH_SITEFNDIR= 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= 4.0.6 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= ftp://ftp.zsh.org/%SUBDIR%/ \ ftp://ftp.sterling.com/%SUBDIR%/ \ @@ -27,57 +47,68 @@ COMMENT?= The Z shell USE_BZIP2= yes -USE_REINPLACE= yes - -ZSH_VER= ${PORTVERSION} -ZSHFUNC_SUBDIR= share/zsh/${ZSH_VER}/functions GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free --enable-dynamic \ - --enable-maildir-support --with-curses-terminfo +CONFIGURE_ARGS= --enable-etcdir=${ZSH_ETCDIR} --with-curses-terminfo \ + --enable-fndir=${ZSH_FNDIR} --enable-function-subdirs \ + --enable-site-fndir=${ZSH_SITEFNDIR} -.if !defined(NOPORTDOCS) -INSTALL_TARGET= install install.html +.if !defined(WITHOUT_ZSH_MEM) +CONFIGURE_ARGS+= --enable-zsh-mem --enable-zsh-secure-free .endif - -MAN1= zsh.1 zshbuiltins.1 zshcompctl.1 zshcompwid.1 zshcompsys.1 \ - zshcontrib.1 zshexpn.1 zshmisc.1 zshmodules.1 zshoptions.1 \ - zshparam.1 zshzftpsys.1 zshzle.1 zshall.1 -PLIST_SUB= ZSH_VER="${ZSH_VER}" ZSHFUNC_SUBDIR="${ZSHFUNC_SUBDIR}" +.if !defined(WITHOUT_MAILDIR) +CONFIGURE_ARGS+= --enable-maildir-support +.endif .if defined(WANT_STATIC) -CONFIGURE_ENV+= "LDFLAGS=-static" -PLIST_SUB+= NO_STATIC="@comment " +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 +ZSH_VER= ${PORTVERSION} +# 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 zshbuiltins.1 zshcompctl.1 zshcompwid.1 zshcompsys.1 \ + zshcontrib.1 zshexpn.1 zshmisc.1 zshmodules.1 zshoptions.1 \ + zshparam.1 zshzftpsys.1 zshzle.1 zshall.1 +DOCS= INSTALL LICENCE META-FAQ README +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} -f ${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) + ${RM} -f ${WRKSRC}/Doc/zsh.info* + cd ${WRKSRC}/Doc && makeinfo --no-split zsh.texi +.endif post-install: + if [ ! -d ${ZSH_ETCDIR} ]; then ${MKDIR} ${ZSH_ETCDIR}; fi + if [ ! -d ${ZSH_SITEFNDIR} ]; then ${MKDIR} ${ZSH_SITEFNDIR}; fi + @${MKDIR} ${EXAMPLESDIR} + cd ${WRKSRC}/StartupFiles && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR} .if !defined(NOPORTDOCS) - @${INSTALL_DATA} ${WRKSRC}/Doc/zsh.info* ${PREFIX}/info -.endif - @${MKDIR} ${PREFIX}/share/examples/zsh -.for file in zlogin zshenv zshrc - ${INSTALL_DATA} ${WRKSRC}/StartupFiles/${file} \ - ${PREFIX}/share/examples/zsh -.endfor + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Doc/zsh*.html ${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 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/shells/zsh/pkg-plist,v retrieving revision 1.27 diff -u -r1.27 pkg-plist --- pkg-plist 2002/08/15 15:15:16 1.27 +++ pkg-plist 2003/03/12 11:13:44 @@ -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 @@ -49,470 +30,490 @@ %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zprof.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zpty.so %%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zutil.so -%%PORTDOCS%%share/doc/zsh/zsh.html -%%PORTDOCS%%share/doc/zsh/zsh_1.html -%%PORTDOCS%%share/doc/zsh/zsh_10.html -%%PORTDOCS%%share/doc/zsh/zsh_11.html -%%PORTDOCS%%share/doc/zsh/zsh_12.html -%%PORTDOCS%%share/doc/zsh/zsh_13.html -%%PORTDOCS%%share/doc/zsh/zsh_14.html -%%PORTDOCS%%share/doc/zsh/zsh_15.html -%%PORTDOCS%%share/doc/zsh/zsh_16.html -%%PORTDOCS%%share/doc/zsh/zsh_17.html -%%PORTDOCS%%share/doc/zsh/zsh_18.html -%%PORTDOCS%%share/doc/zsh/zsh_19.html -%%PORTDOCS%%share/doc/zsh/zsh_2.html -%%PORTDOCS%%share/doc/zsh/zsh_20.html -%%PORTDOCS%%share/doc/zsh/zsh_21.html -%%PORTDOCS%%share/doc/zsh/zsh_22.html -%%PORTDOCS%%share/doc/zsh/zsh_23.html -%%PORTDOCS%%share/doc/zsh/zsh_24.html -%%PORTDOCS%%share/doc/zsh/zsh_25.html -%%PORTDOCS%%share/doc/zsh/zsh_26.html -%%PORTDOCS%%share/doc/zsh/zsh_27.html -%%PORTDOCS%%share/doc/zsh/zsh_28.html -%%PORTDOCS%%share/doc/zsh/zsh_29.html -%%PORTDOCS%%share/doc/zsh/zsh_30.html -%%PORTDOCS%%share/doc/zsh/zsh_31.html -%%PORTDOCS%%share/doc/zsh/zsh_32.html -%%PORTDOCS%%share/doc/zsh/zsh_33.html -%%PORTDOCS%%share/doc/zsh/zsh_34.html -%%PORTDOCS%%share/doc/zsh/zsh_35.html -%%PORTDOCS%%share/doc/zsh/zsh_36.html -%%PORTDOCS%%share/doc/zsh/zsh_37.html -%%PORTDOCS%%share/doc/zsh/zsh_38.html -%%PORTDOCS%%share/doc/zsh/zsh_39.html -%%PORTDOCS%%share/doc/zsh/zsh_40.html -%%PORTDOCS%%share/doc/zsh/zsh_3.html -%%PORTDOCS%%share/doc/zsh/zsh_4.html -%%PORTDOCS%%share/doc/zsh/zsh_5.html -%%PORTDOCS%%share/doc/zsh/zsh_6.html -%%PORTDOCS%%share/doc/zsh/zsh_7.html -%%PORTDOCS%%share/doc/zsh/zsh_8.html -%%PORTDOCS%%share/doc/zsh/zsh_9.html -%%PORTDOCS%%share/doc/zsh/zsh_abt.html -%%PORTDOCS%%share/doc/zsh/zsh_ovr.html -%%PORTDOCS%%share/doc/zsh/zsh_toc.html -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%%/_apachectl -%%ZSHFUNC_SUBDIR%%/_apm -%%ZSHFUNC_SUBDIR%%/_approximate -%%ZSHFUNC_SUBDIR%%/_apt -%%ZSHFUNC_SUBDIR%%/_archie -%%ZSHFUNC_SUBDIR%%/_arg_compile -%%ZSHFUNC_SUBDIR%%/_arguments -%%ZSHFUNC_SUBDIR%%/_arp -%%ZSHFUNC_SUBDIR%%/_arping -%%ZSHFUNC_SUBDIR%%/_arrays -%%ZSHFUNC_SUBDIR%%/_auto-apt -%%ZSHFUNC_SUBDIR%%/_autocd -%%ZSHFUNC_SUBDIR%%/_autoload -%%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%%/_contexts -%%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%%/_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%%/_disable -%%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%%/_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%%/_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%%/_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%%/_last -%%ZSHFUNC_SUBDIR%%/_limits -%%ZSHFUNC_SUBDIR%%/_links -%%ZSHFUNC_SUBDIR%%/_list -%%ZSHFUNC_SUBDIR%%/_loadkeys -%%ZSHFUNC_SUBDIR%%/_logical_volumes -%%ZSHFUNC_SUBDIR%%/_look -%%ZSHFUNC_SUBDIR%%/_lp -%%ZSHFUNC_SUBDIR%%/_ls -%%ZSHFUNC_SUBDIR%%/_lscfg -%%ZSHFUNC_SUBDIR%%/_lsdev -%%ZSHFUNC_SUBDIR%%/_lslv -%%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%%/_mtools -%%ZSHFUNC_SUBDIR%%/_multi_parts -%%ZSHFUNC_SUBDIR%%/_mutt -%%ZSHFUNC_SUBDIR%%/_my_accounts -%%ZSHFUNC_SUBDIR%%/_mysql_utils -%%ZSHFUNC_SUBDIR%%/_ncftp -%%ZSHFUNC_SUBDIR%%/_nedit -%%ZSHFUNC_SUBDIR%%/_net_interfaces -%%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%%/_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%%/_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%%/_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%%/_tex -%%ZSHFUNC_SUBDIR%%/_texi -%%ZSHFUNC_SUBDIR%%/_tiff -%%ZSHFUNC_SUBDIR%%/_tilde -%%ZSHFUNC_SUBDIR%%/_tilde_files -%%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%%/_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%%/_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%%/_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%%/cycle-completion-positions -%%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%%/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%%/run-help -%%ZSHFUNC_SUBDIR%%/smart-insert-last-word -%%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%%lib/zsh/libzsh-%%ZSH_VER%%.so +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/LICENCE +%%PORTDOCS%%%%DOCSDIR%%/META-FAQ +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/zsh.html +%%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_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_40.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_3.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_4.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_abt.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_ovr.html +%%PORTDOCS%%%%DOCSDIR%%/zsh_toc.html +%%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 %%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 -@dirrm share/doc/zsh +%%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/_contexts +%%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/_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/_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/_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/Debian/_apt +%%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/_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/_mondo +@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/_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/_elm +%%ZSH_FNDIR%%/Completion/Unix/_enscript +%%ZSH_FNDIR%%/Completion/Unix/_fakeroot +%%ZSH_FNDIR%%/Completion/Unix/_fetchmail +%%ZSH_FNDIR%%/Completion/Unix/_figlet +%%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/_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/_joe +%%ZSH_FNDIR%%/Completion/Unix/_killall +%%ZSH_FNDIR%%/Completion/Unix/_last +%%ZSH_FNDIR%%/Completion/Unix/_links +%%ZSH_FNDIR%%/Completion/Unix/_loadkeys +%%ZSH_FNDIR%%/Completion/Unix/_look +%%ZSH_FNDIR%%/Completion/Unix/_lp +%%ZSH_FNDIR%%/Completion/Unix/_ls +%%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/_modutils +%%ZSH_FNDIR%%/Completion/Unix/_mount +%%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/_ncftp +%%ZSH_FNDIR%%/Completion/Unix/_net_interfaces +%%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/_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/_rcs +%%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/_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/_tex +%%ZSH_FNDIR%%/Completion/Unix/_texi +%%ZSH_FNDIR%%/Completion/Unix/_tiff +%%ZSH_FNDIR%%/Completion/Unix/_tilde_files +%%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/_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/_gv +%%ZSH_FNDIR%%/Completion/X/_mozilla +%%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/_xrdb +%%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/_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/_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/_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/_zpty +%%ZSH_FNDIR%%/Completion/Zsh/_zstyle +@dirrm %%ZSH_FNDIR%%/Completion/Zsh +%%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/run-help +%%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%%/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/bash-backward-kill-word +%%ZSH_FNDIR%%/Zle/bash-backward-word +%%ZSH_FNDIR%%/Zle/bash-down-case-word +%%ZSH_FNDIR%%/Zle/bash-forward-word +%%ZSH_FNDIR%%/Zle/bash-kill-word +%%ZSH_FNDIR%%/Zle/bash-transpose-words +%%ZSH_FNDIR%%/Zle/bash-up-case-word +%%ZSH_FNDIR%%/Zle/cycle-completion-positions +%%ZSH_FNDIR%%/Zle/edit-command-line +%%ZSH_FNDIR%%/Zle/history-search-end +%%ZSH_FNDIR%%/Zle/incarg +%%ZSH_FNDIR%%/Zle/incremental-complete-word +%%ZSH_FNDIR%%/Zle/insert-files +%%ZSH_FNDIR%%/Zle/predict-on +%%ZSH_FNDIR%%/Zle/smart-insert-last-word +@dirrm %%ZSH_FNDIR%%/Zle +@dirrm %%ZSH_FNDIR%% +@dirrm %%DATADIR%%/%%ZSH_VER%% +@dirrm %%DATADIR%% --- zsh-4.0.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message