View | Details | Raw Unified | Return to bug 53513
Collapse All | Expand All

(-)Makefile (-50 / +98 lines)
Lines 5-82 Link Here
5
# $FreeBSD: ports/shells/zsh-devel/Makefile,v 1.61 2003/04/04 12:44:52 shige Exp $
5
# $FreeBSD: ports/shells/zsh-devel/Makefile,v 1.61 2003/04/04 12:44:52 shige Exp $
6
#
6
#
7
7
8
# The following compile-time options are available:
9
# NOSHARED=yes		compile a static version of zsh
10
#			(default: use dynamically loadable modules)
11
# WITHOUT_ZSH_MEM=yes	disable zsh-mem and zsh-secure-free options
12
#			(default: on)
13
# WITHOUT_ZSH_MAILDIR=yes disable support for Maildirs in MAIL and MAILPATH
14
#			(default: on)
15
# ZSH_ETCDIR=<dir>	directory for zsh system-wide configuration files:
16
#			zshenv, zlogin, zprofile, zshrc, zlogout.
17
#			e.g. use this to put config files inside ${PREFIX}
18
#			(default: /etc)
19
#			NOTE: does NOT have to be inside ${PREFIX} tree
20
# ZSH_FNDIR=<dir>	directory for zsh functions (part of distribution)
21
#			(default: ${PREFIX}/share/zsh/${ZSH_VER}/functions)
22
#			NOTE: should be inside ${PREFIX} tree
23
# ZSH_SITEFNDIR=<dir>	directory for zsh site functions (locally developed)
24
#			(default: ${PREFIX}/share/zsh/site-functions)
25
#			NOTE: does NOT have to be inside ${PREFIX} tree
26
8
PORTNAME=	zsh
27
PORTNAME=	zsh
9
PORTVERSION=	${ZSH_VER}.dev${ZSH_DEV_REV}
28
PORTVERSION=	4.1.1
10
CATEGORIES=	shells
29
CATEGORIES=	shells
11
MASTER_SITES=	ftp://ftp.zsh.org/%SUBDIR%/ \
30
MASTER_SITES=	http://www.zsh.org/zsh/ \
12
		ftp://ftp.sterling.com/%SUBDIR%/ \
31
		ftp://ftp.zsh.org/zsh/ \
13
		ftp://ftp.rge.com/pub/shells/%SUBDIR%/ \
32
		ftp://sunsite.dk/pub/unix/shells/zsh/ \
14
		ftp://ftp.fu-berlin.de/pub/unix/shells/%SUBDIR%/ \
33
		http://archive.progeny.com/zsh/ \
15
		ftp://ftp.ips.oz.au/pub/packages/%SUBDIR%/ \
34
		ftp://archive.progeny.com/zsh/ \
16
		ftp://ftp.uit.no/pub/unix/shells/%SUBDIR%/
35
		http://mirrors.theonlinerecordstore.com/zsh/ \
17
MASTER_SITE_SUBDIR=	${PORTNAME}/development
36
		ftp://uiarchive.uiuc.edu/mirrors/ftp/ftp.zsh.org/pub/zsh/ \
18
37
		ftp://ftp.rge.com/pub/shells/zsh/ \
19
DISTNAME=	${PORTNAME}-${ZSH_VER}-dev-${ZSH_DEV_REV}
38
		ftp://sunsite.org.uk/packages/zsh/ \
39
		ftp://ftp.net.lut.ac.uk/zsh/ \
40
		ftp://ftp.fu-berlin.de/pub/unix/shells/zsh/ \
41
		ftp://ftp.win.ne.jp/pub/shell/zsh/ \
42
		ftp://ftp.ayamura.org/pub/zsh/ \
43
		ftp://linux.sarang.net/mirror/systems/shell/zsh/ \
44
		ftp://ftp.lysator.liu.se/pub/unix/zsh/ \
45
		ftp://sunsite.icm.edu.pl/pub/unix/shells/zsh/ \
46
		ftp://ftp.kappa.ro/pub/mirrors/ftp.zsh.org/pub/zsh/ \
47
		ftp://ftp.demon.nl/pub/mirrors/zsh/
48
PKGNAMESUFFIX=	-devel
49
DISTNAME=	${PORTNAME}-${ZSH_VER}
50
.if !defined(NOPORTDOCS)
51
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}-doc${EXTRACT_SUFX}
52
.endif
20
53
21
MAINTAINER=	shige@FreeBSD.org
54
MAINTAINER=	shige@FreeBSD.org
22
COMMENT=	The Z shell (development version)
55
COMMENT=	The Z shell (development version)
23
56
24
USE_AUTOCONF=   yes
57
ZSH_VER=	${PORTVERSION}
25
USE_REINPLACE=	yes
58
# Conflicts with shells/zsh as it installs files into the same locations
26
59
CONFLICTS=	zsh-4.0.*
27
ZSH_VER=	4.1.0
28
ZSH_DEV_REV=	7
29
ZSHFUNC_SUBDIR=	share/zsh/${ZSH_VER}-dev-${ZSH_DEV_REV}/functions
30
NO_LATEST_LINK=	yes
31
60
61
USE_BZIP2=	yes
32
GNU_CONFIGURE=	yes
62
GNU_CONFIGURE=	yes
33
CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free --enable-dynamic \
34
		--enable-maildir-support
35
63
36
.if !defined(NOPORTDOCS)
64
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
37
INSTALL_TARGET= install install.info
65
CONFIGURE_ARGS=	--enable-etcdir=${ZSH_ETCDIR} --with-curses-terminfo \
38
.endif
66
		--enable-fndir=${ZSH_FNDIR} --enable-function-subdirs \
67
		--enable-site-fndir=${ZSH_SITEFNDIR}
39
68
40
MAN1=		zsh.1 zshbuiltins.1 zshcompctl.1 zshexpn.1 zshmisc.1 \
69
.if !defined(WITHOUT_ZSH_MEM)
41
		zshoptions.1 zshall.1 zshparam.1 zshzle.1 zshmodules.1 \
70
CONFIGURE_ARGS+=	--enable-zsh-mem --enable-zsh-secure-free
42
		zshzftpsys.1 zshcompsys.1 zshcompwid.1 zshcontrib.1
71
.endif
43
72
44
PLIST_SUB=	ZSH_VER="${ZSH_VER}-dev-${ZSH_DEV_REV}" \
73
.if !defined(WITHOUT_ZSH_MAILDIR)
45
		ZSHFUNC_SUBDIR="${ZSHFUNC_SUBDIR}"
74
CONFIGURE_ARGS+=	--enable-maildir-support
75
.endif
46
76
47
.if defined(WANT_STATIC)
77
.if defined(NOSHARED)
48
CONFIGURE_ENV+=	"LDFLAGS=-static"
78
CONFIGURE_ARGS+=	--disable-dynamic
49
PLIST_SUB+=	NO_STATIC="@comment "
79
PLIST_SUB+=		NO_STATIC="@comment "
50
.else
80
.else
51
PLIST_SUB+=	NO_STATIC=""
81
CONFIGURE_ARGS+=	--enable-dynamic
82
PLIST_SUB+=		NO_STATIC=""
52
.endif
83
.endif
53
84
54
post-patch:
85
# These variables can be overriden by user
55
	@${REINPLACE_CMD} -e 's!\$\(htmldir\)!\$\(prefix\)/share/doc/zsh!' \
86
ZSH_ETCDIR?=	/etc
56
		${WRKSRC}/Doc/Makefile.in
87
ZSH_FNDIR?=	${DATADIR}/${ZSH_VER}/functions
88
ZSH_SITEFNDIR?=	${DATADIR}/site-functions
89
90
PLIST_SUB+=	ZSH_VER="${ZSH_VER}" ZSHETCDIR="${ZSH_ETCDIR}" \
91
		ZSH_FNDIR="${ZSH_FNDIR:S!${PREFIX}/!!}" \
92
		ZSH_SITEFNDIR="${ZSH_SITEFNDIR}"
93
94
MAN1=		zsh.1 zshall.1 zshbuiltins.1 zshcompctl.1 zshcompsys.1 \
95
		zshcompwid.1 zshcontrib.1 zshexpn.1 zshmisc.1 zshmodules.1 \
96
		zshoptions.1 zshparam.1 zshtcpsys.1 zshzftpsys.1 zshzle.1
97
DOCS=		LICENCE META-FAQ README Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ \
98
		Etc/FEATURES Etc/NEWS Etc/completion-style-guide \
99
		ChangeLog Etc/zsh-development-guide Etc/pubring.pgp \
100
		Doc/zsh*.html Doc/zsh.dvi Doc/zsh_a4.ps Doc/zsh_us.ps
101
EXAMPLES=	zlogin zshenv zshrc
57
102
58
post-build:
103
post-build:
59
# Fix ".so" macro problem by using "soelim" command.
104
	# Fix ".so" macro problem by using "soelim" command.
60
	@(cd ${WRKSRC} ; \
105
	${LN} -sf ${WRKSRC}/Doc ${WRKSRC}/man1
61
		${LN} -sf ./Doc man1 ; \
106
	${MV} ${WRKSRC}/Doc/zshall.1 ${WRKSRC}/Doc/zshall.1.source
62
		if [ ! -f ./man1/zshall.1.source ]; then \
107
	cd ${WRKSRC} && /usr/bin/soelim ${WRKSRC}/Doc/zshall.1.source > \
63
			${MV} -f ./man1/zshall.1 ./man1/zshall.1.source ; \
108
		${WRKSRC}/Doc/zshall.1
64
		fi ; \
109
.if !defined(NOPORTDOCS)
65
		${RM} -f ./man1/zshall.1 ; \
110
	cd ${WRKSRC}/Doc && makeinfo --no-split zsh.texi
66
		/usr/bin/soelim ./man1/zshall.1.source > ./man1/zshall.1 ; \
111
.endif
67
	)
68
112
69
post-install:
113
post-install:
70
	@${MKDIR} ${PREFIX}/share/examples/zsh
114
	${TEST} -d ${ZSH_ETCDIR} || ${MKDIR} ${ZSH_ETCDIR}
71
.for file in zlogin zshenv zshrc
115
	${TEST} -d ${ZSH_SITEFNDIR} || ${MKDIR} ${ZSH_SITEFNDIR}
72
	${INSTALL_DATA} ${WRKSRC}/StartupFiles/${file} \
116
	@${MKDIR} ${EXAMPLESDIR}
73
		${PREFIX}/share/examples/zsh
117
	cd ${WRKSRC}/StartupFiles && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
74
.endfor
118
.if !defined(NOPORTDOCS)
119
	@${MKDIR} ${DOCSDIR}
120
	cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
121
	${INSTALL_DATA} ${WRKSRC}/Doc/zsh.info ${PREFIX}/info
75
	@install-info ${PREFIX}/info/zsh.info ${PREFIX}/info/dir
122
	@install-info ${PREFIX}/info/zsh.info ${PREFIX}/info/dir
76
	@${ECHO} "Updating /etc/shells"
123
.endif
124
	@${ECHO_MSG} "Updating /etc/shells"
77
	@${CP} /etc/shells /etc/shells.bak
125
	@${CP} /etc/shells /etc/shells.bak
78
	@(${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; \
126
	@(${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; \
79
		${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells
127
	  ${ECHO_CMD} ${PREFIX}/bin/zsh) > /etc/shells
80
	@${RM} /etc/shells.bak
128
	@${RM} /etc/shells.bak
81
129
82
.include <bsd.port.mk>
130
.include <bsd.port.mk>
(-)distinfo (-1 / +2 lines)
Line 1 Link Here
1
MD5 (zsh-4.1.0-dev-7.tar.gz) = 30e25772920734963bafc639479af57a
1
MD5 (zsh-4.1.1.tar.bz2) = 48958b1a3fc86261a26eea40a4f7d4af
2
MD5 (zsh-4.1.1-doc.tar.bz2) = 3ec54fa702b9a5c5209b56c2c8ed6a88
(-)pkg-descr (-1 / +3 lines)
Lines 11-14 Link Here
11
	$ autoload -U compinstall
11
	$ autoload -U compinstall
12
	$ compinstall
12
	$ compinstall
13
13
14
See also zshcompsys(1) manpages. :)
14
See also zshcompsys(1) manpage. :)
15
16
WWW: http://www.zsh.org/
(-)pkg-plist (-484 / +584 lines)
Lines 1-31 Link Here
1
bin/zsh
1
bin/zsh
2
@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
2
@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
3
@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
3
@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
4
bin/zsh-%%ZSH_VER%%
4
bin/zsh-%%ZSH_VER%%
5
%%PORTDOCS%%@unexec install-info --delete %D/%%PORTDOCS%%info/zsh.info %D/info/dir
5
@exec   mkdir %%ZSH_ETCDIR%% 2> /dev/null || true
6
@unexec rmdir %%ZSH_ETCDIR%% 2> /dev/null || true
7
%%PORTDOCS%%@unexec install-info --delete %D/info/zsh.info %D/info/dir
6
%%PORTDOCS%%info/zsh.info
8
%%PORTDOCS%%info/zsh.info
7
%%PORTDOCS%%info/zsh.info-1
9
%%PORTDOCS%%@exec install-info %D/info/zsh.info %D/info/dir
8
%%PORTDOCS%%info/zsh.info-10
9
%%PORTDOCS%%info/zsh.info-11
10
%%PORTDOCS%%info/zsh.info-12
11
%%PORTDOCS%%info/zsh.info-13
12
%%PORTDOCS%%info/zsh.info-14
13
%%PORTDOCS%%info/zsh.info-15
14
%%PORTDOCS%%info/zsh.info-16
15
%%PORTDOCS%%info/zsh.info-17
16
%%PORTDOCS%%info/zsh.info-18
17
%%PORTDOCS%%info/zsh.info-19
18
%%PORTDOCS%%info/zsh.info-2
19
%%PORTDOCS%%info/zsh.info-20
20
%%PORTDOCS%%info/zsh.info-3
21
%%PORTDOCS%%info/zsh.info-4
22
%%PORTDOCS%%info/zsh.info-5
23
%%PORTDOCS%%info/zsh.info-6
24
%%PORTDOCS%%info/zsh.info-7
25
%%PORTDOCS%%info/zsh.info-8
26
%%PORTDOCS%%info/zsh.info-9
27
%%PORTDOCS%%@exec install-info %D/%%PORTDOCS%%info/zsh.info %D/info/dir
28
%%NO_STATIC%%lib/zsh/libzsh-%%ZSH_VER%%.so
29
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/cap.so
10
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/cap.so
30
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/clone.so
11
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/clone.so
31
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/compctl.so
12
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/compctl.so
Lines 41-46 Link Here
41
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/mathfunc.so
22
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/mathfunc.so
42
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/socket.so
23
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/socket.so
43
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/tcp.so
24
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/net/tcp.so
25
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh/net
44
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/parameter.so
26
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/parameter.so
45
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/pcre.so
27
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/pcre.so
46
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/rlimits.so
28
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/rlimits.so
Lines 55-518 Link Here
55
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zpty.so
37
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zpty.so
56
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zselect.so
38
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zselect.so
57
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zutil.so
39
%%NO_STATIC%%lib/zsh/%%ZSH_VER%%/zsh/zutil.so
58
share/examples/zsh/zlogin
59
share/examples/zsh/zshenv
60
share/examples/zsh/zshrc
61
%%ZSHFUNC_SUBDIR%%/_a2ps
62
%%ZSHFUNC_SUBDIR%%/_alias
63
%%ZSHFUNC_SUBDIR%%/_aliases
64
%%ZSHFUNC_SUBDIR%%/_all_labels
65
%%ZSHFUNC_SUBDIR%%/_all_matches
66
%%ZSHFUNC_SUBDIR%%/_alternative
67
%%ZSHFUNC_SUBDIR%%/_ant
68
%%ZSHFUNC_SUBDIR%%/_apachectl
69
%%ZSHFUNC_SUBDIR%%/_apm
70
%%ZSHFUNC_SUBDIR%%/_approximate
71
%%ZSHFUNC_SUBDIR%%/_apt
72
%%ZSHFUNC_SUBDIR%%/_apt-show-versions
73
%%ZSHFUNC_SUBDIR%%/_archie
74
%%ZSHFUNC_SUBDIR%%/_arg_compile
75
%%ZSHFUNC_SUBDIR%%/_arguments
76
%%ZSHFUNC_SUBDIR%%/_arp
77
%%ZSHFUNC_SUBDIR%%/_arping
78
%%ZSHFUNC_SUBDIR%%/_arrays
79
%%ZSHFUNC_SUBDIR%%/_assign
80
%%ZSHFUNC_SUBDIR%%/_autocd
81
%%ZSHFUNC_SUBDIR%%/_autoload
82
%%ZSHFUNC_SUBDIR%%/_auto-apt
83
%%ZSHFUNC_SUBDIR%%/_bash_completions
84
%%ZSHFUNC_SUBDIR%%/_bindkey
85
%%ZSHFUNC_SUBDIR%%/_bison
86
%%ZSHFUNC_SUBDIR%%/_brace_parameter
87
%%ZSHFUNC_SUBDIR%%/_bsd_pkg
88
%%ZSHFUNC_SUBDIR%%/_bts
89
%%ZSHFUNC_SUBDIR%%/_bug
90
%%ZSHFUNC_SUBDIR%%/_builtin
91
%%ZSHFUNC_SUBDIR%%/_bzip2
92
%%ZSHFUNC_SUBDIR%%/_cache_invalid
93
%%ZSHFUNC_SUBDIR%%/_call_function
94
%%ZSHFUNC_SUBDIR%%/_call_program
95
%%ZSHFUNC_SUBDIR%%/_cd
96
%%ZSHFUNC_SUBDIR%%/_cdcd
97
%%ZSHFUNC_SUBDIR%%/_chflags
98
%%ZSHFUNC_SUBDIR%%/_chkconfig
99
%%ZSHFUNC_SUBDIR%%/_chown
100
%%ZSHFUNC_SUBDIR%%/_combination
101
%%ZSHFUNC_SUBDIR%%/_command
102
%%ZSHFUNC_SUBDIR%%/_command_names
103
%%ZSHFUNC_SUBDIR%%/_compdef
104
%%ZSHFUNC_SUBDIR%%/_complete
105
%%ZSHFUNC_SUBDIR%%/_complete_debug
106
%%ZSHFUNC_SUBDIR%%/_complete_help
107
%%ZSHFUNC_SUBDIR%%/_complete_tag
108
%%ZSHFUNC_SUBDIR%%/_compress
109
%%ZSHFUNC_SUBDIR%%/_condition
110
%%ZSHFUNC_SUBDIR%%/_configure
111
%%ZSHFUNC_SUBDIR%%/_correct
112
%%ZSHFUNC_SUBDIR%%/_correct_filename
113
%%ZSHFUNC_SUBDIR%%/_correct_word
114
%%ZSHFUNC_SUBDIR%%/_cpio
115
%%ZSHFUNC_SUBDIR%%/_cvs
116
%%ZSHFUNC_SUBDIR%%/_cvsup
117
%%ZSHFUNC_SUBDIR%%/_dd
118
%%ZSHFUNC_SUBDIR%%/_deb_packages
119
%%ZSHFUNC_SUBDIR%%/_debchange
120
%%ZSHFUNC_SUBDIR%%/_debfoster
121
%%ZSHFUNC_SUBDIR%%/_default
122
%%ZSHFUNC_SUBDIR%%/_describe
123
%%ZSHFUNC_SUBDIR%%/_description
124
%%ZSHFUNC_SUBDIR%%/_dict
125
%%ZSHFUNC_SUBDIR%%/_dict_words
126
%%ZSHFUNC_SUBDIR%%/_diff
127
%%ZSHFUNC_SUBDIR%%/_diff_options
128
%%ZSHFUNC_SUBDIR%%/_dir_list
129
%%ZSHFUNC_SUBDIR%%/_directories
130
%%ZSHFUNC_SUBDIR%%/_directory_stack
131
%%ZSHFUNC_SUBDIR%%/_dirs
132
%%ZSHFUNC_SUBDIR%%/_disable
133
%%ZSHFUNC_SUBDIR%%/_dispatch
134
%%ZSHFUNC_SUBDIR%%/_domains
135
%%ZSHFUNC_SUBDIR%%/_dpkg
136
%%ZSHFUNC_SUBDIR%%/_dpkg_source
137
%%ZSHFUNC_SUBDIR%%/_dput
138
%%ZSHFUNC_SUBDIR%%/_dupload
139
%%ZSHFUNC_SUBDIR%%/_dvi
140
%%ZSHFUNC_SUBDIR%%/_echotc
141
%%ZSHFUNC_SUBDIR%%/_echoti
142
%%ZSHFUNC_SUBDIR%%/_elm
143
%%ZSHFUNC_SUBDIR%%/_elinks
144
%%ZSHFUNC_SUBDIR%%/_email_addresses
145
%%ZSHFUNC_SUBDIR%%/_emulate
146
%%ZSHFUNC_SUBDIR%%/_enable
147
%%ZSHFUNC_SUBDIR%%/_enscript
148
%%ZSHFUNC_SUBDIR%%/_equal
149
%%ZSHFUNC_SUBDIR%%/_expand
150
%%ZSHFUNC_SUBDIR%%/_expand_alias
151
%%ZSHFUNC_SUBDIR%%/_expand_word
152
%%ZSHFUNC_SUBDIR%%/_fakeroot
153
%%ZSHFUNC_SUBDIR%%/_fc
154
%%ZSHFUNC_SUBDIR%%/_fetchmail
155
%%ZSHFUNC_SUBDIR%%/_figlet 
156
%%ZSHFUNC_SUBDIR%%/_file_descriptors
157
%%ZSHFUNC_SUBDIR%%/_file_systems
158
%%ZSHFUNC_SUBDIR%%/_files
159
%%ZSHFUNC_SUBDIR%%/_find
160
%%ZSHFUNC_SUBDIR%%/_finger
161
%%ZSHFUNC_SUBDIR%%/_first
162
%%ZSHFUNC_SUBDIR%%/_flex
163
%%ZSHFUNC_SUBDIR%%/_floppy
164
%%ZSHFUNC_SUBDIR%%/_fsh
165
%%ZSHFUNC_SUBDIR%%/_functions
166
%%ZSHFUNC_SUBDIR%%/_gcc
167
%%ZSHFUNC_SUBDIR%%/_gdb
168
%%ZSHFUNC_SUBDIR%%/_generic
169
%%ZSHFUNC_SUBDIR%%/_getconf
170
%%ZSHFUNC_SUBDIR%%/_global
171
%%ZSHFUNC_SUBDIR%%/_global_tags
172
%%ZSHFUNC_SUBDIR%%/_gnu_generic
173
%%ZSHFUNC_SUBDIR%%/_gprof
174
%%ZSHFUNC_SUBDIR%%/_grep
175
%%ZSHFUNC_SUBDIR%%/_groups
176
%%ZSHFUNC_SUBDIR%%/_gs
177
%%ZSHFUNC_SUBDIR%%/_guard
178
%%ZSHFUNC_SUBDIR%%/_gv
179
%%ZSHFUNC_SUBDIR%%/_gzip
180
%%ZSHFUNC_SUBDIR%%/_hash
181
%%ZSHFUNC_SUBDIR%%/_history
182
%%ZSHFUNC_SUBDIR%%/_history_complete_word
183
%%ZSHFUNC_SUBDIR%%/_hosts
184
%%ZSHFUNC_SUBDIR%%/_iconv
185
%%ZSHFUNC_SUBDIR%%/_ifconfig
186
%%ZSHFUNC_SUBDIR%%/_ignored
187
%%ZSHFUNC_SUBDIR%%/_imagemagick
188
%%ZSHFUNC_SUBDIR%%/_in_vared
189
%%ZSHFUNC_SUBDIR%%/_init_d
190
%%ZSHFUNC_SUBDIR%%/_irssi
191
%%ZSHFUNC_SUBDIR%%/_ispell
192
%%ZSHFUNC_SUBDIR%%/_java
193
%%ZSHFUNC_SUBDIR%%/_java_class
194
%%ZSHFUNC_SUBDIR%%/_jobs
195
%%ZSHFUNC_SUBDIR%%/_jobs_bg
196
%%ZSHFUNC_SUBDIR%%/_jobs_builtin
197
%%ZSHFUNC_SUBDIR%%/_jobs_fg
198
%%ZSHFUNC_SUBDIR%%/_joe
199
%%ZSHFUNC_SUBDIR%%/_kill
200
%%ZSHFUNC_SUBDIR%%/_killall
201
%%ZSHFUNC_SUBDIR%%/_kld
202
%%ZSHFUNC_SUBDIR%%/_larch
203
%%ZSHFUNC_SUBDIR%%/_last
204
%%ZSHFUNC_SUBDIR%%/_limit
205
%%ZSHFUNC_SUBDIR%%/_limits
206
%%ZSHFUNC_SUBDIR%%/_links
207
%%ZSHFUNC_SUBDIR%%/_list
208
%%ZSHFUNC_SUBDIR%%/_loadkeys
209
%%ZSHFUNC_SUBDIR%%/_locales
210
%%ZSHFUNC_SUBDIR%%/_logical_volumes
211
%%ZSHFUNC_SUBDIR%%/_look
212
%%ZSHFUNC_SUBDIR%%/_losetup
213
%%ZSHFUNC_SUBDIR%%/_lp
214
%%ZSHFUNC_SUBDIR%%/_ls
215
%%ZSHFUNC_SUBDIR%%/_lscfg
216
%%ZSHFUNC_SUBDIR%%/_lsdev
217
%%ZSHFUNC_SUBDIR%%/_lslv
218
%%ZSHFUNC_SUBDIR%%/_lsof
219
%%ZSHFUNC_SUBDIR%%/_lspv
220
%%ZSHFUNC_SUBDIR%%/_lsvg
221
%%ZSHFUNC_SUBDIR%%/_lynx
222
%%ZSHFUNC_SUBDIR%%/_lzop
223
%%ZSHFUNC_SUBDIR%%/_mail
224
%%ZSHFUNC_SUBDIR%%/_mailboxes
225
%%ZSHFUNC_SUBDIR%%/_main_complete
226
%%ZSHFUNC_SUBDIR%%/_make
227
%%ZSHFUNC_SUBDIR%%/_make-kpkg
228
%%ZSHFUNC_SUBDIR%%/_man
229
%%ZSHFUNC_SUBDIR%%/_match
230
%%ZSHFUNC_SUBDIR%%/_math
231
%%ZSHFUNC_SUBDIR%%/_menu
232
%%ZSHFUNC_SUBDIR%%/_mere
233
%%ZSHFUNC_SUBDIR%%/_message
234
%%ZSHFUNC_SUBDIR%%/_mh
235
%%ZSHFUNC_SUBDIR%%/_modutils
236
%%ZSHFUNC_SUBDIR%%/_mondo
237
%%ZSHFUNC_SUBDIR%%/_most_recent_file
238
%%ZSHFUNC_SUBDIR%%/_mount
239
%%ZSHFUNC_SUBDIR%%/_mozilla
240
%%ZSHFUNC_SUBDIR%%/_mt
241
%%ZSHFUNC_SUBDIR%%/_mtools
242
%%ZSHFUNC_SUBDIR%%/_multi_parts
243
%%ZSHFUNC_SUBDIR%%/_mutt
244
%%ZSHFUNC_SUBDIR%%/_my_accounts
245
%%ZSHFUNC_SUBDIR%%/_mysql_utils
246
%%ZSHFUNC_SUBDIR%%/_mysqldiff
247
%%ZSHFUNC_SUBDIR%%/_ncftp
248
%%ZSHFUNC_SUBDIR%%/_nedit
249
%%ZSHFUNC_SUBDIR%%/_net_interfaces
250
%%ZSHFUNC_SUBDIR%%/_netcat
251
%%ZSHFUNC_SUBDIR%%/_netscape
252
%%ZSHFUNC_SUBDIR%%/_newsgroups
253
%%ZSHFUNC_SUBDIR%%/_next_label
254
%%ZSHFUNC_SUBDIR%%/_next_tags
255
%%ZSHFUNC_SUBDIR%%/_normal
256
%%ZSHFUNC_SUBDIR%%/_nothing
257
%%ZSHFUNC_SUBDIR%%/_nslookup
258
%%ZSHFUNC_SUBDIR%%/_object_classes
259
%%ZSHFUNC_SUBDIR%%/_oldlist
260
%%ZSHFUNC_SUBDIR%%/_options
261
%%ZSHFUNC_SUBDIR%%/_options_set
262
%%ZSHFUNC_SUBDIR%%/_options_unset
263
%%ZSHFUNC_SUBDIR%%/_other_accounts
264
%%ZSHFUNC_SUBDIR%%/_p4
265
%%ZSHFUNC_SUBDIR%%/_pack
266
%%ZSHFUNC_SUBDIR%%/_parameter
267
%%ZSHFUNC_SUBDIR%%/_parameters
268
%%ZSHFUNC_SUBDIR%%/_patch
269
%%ZSHFUNC_SUBDIR%%/_path_files
270
%%ZSHFUNC_SUBDIR%%/_pbm
271
%%ZSHFUNC_SUBDIR%%/_pdf
272
%%ZSHFUNC_SUBDIR%%/_perl
273
%%ZSHFUNC_SUBDIR%%/_perl_basepods
274
%%ZSHFUNC_SUBDIR%%/_perl_builtin_funcs
275
%%ZSHFUNC_SUBDIR%%/_perl_modules
276
%%ZSHFUNC_SUBDIR%%/_perldoc
277
%%ZSHFUNC_SUBDIR%%/_physical_volumes
278
%%ZSHFUNC_SUBDIR%%/_pick_variant
279
%%ZSHFUNC_SUBDIR%%/_pids
280
%%ZSHFUNC_SUBDIR%%/_pine
281
%%ZSHFUNC_SUBDIR%%/_ports
282
%%ZSHFUNC_SUBDIR%%/_prcs
283
%%ZSHFUNC_SUBDIR%%/_precommand
284
%%ZSHFUNC_SUBDIR%%/_prefix
285
%%ZSHFUNC_SUBDIR%%/_print
286
%%ZSHFUNC_SUBDIR%%/_printers
287
%%ZSHFUNC_SUBDIR%%/_prompt
288
%%ZSHFUNC_SUBDIR%%/_ps
289
%%ZSHFUNC_SUBDIR%%/_pspdf
290
%%ZSHFUNC_SUBDIR%%/_psutils
291
%%ZSHFUNC_SUBDIR%%/_rcs
292
%%ZSHFUNC_SUBDIR%%/_read
293
%%ZSHFUNC_SUBDIR%%/_read_comp
294
%%ZSHFUNC_SUBDIR%%/_redirect
295
%%ZSHFUNC_SUBDIR%%/_regex_arguments
296
%%ZSHFUNC_SUBDIR%%/_requested
297
%%ZSHFUNC_SUBDIR%%/_retrieve_cache
298
%%ZSHFUNC_SUBDIR%%/_rlogin
299
%%ZSHFUNC_SUBDIR%%/_rpm
300
%%ZSHFUNC_SUBDIR%%/_rsync
301
%%ZSHFUNC_SUBDIR%%/_ruby
302
%%ZSHFUNC_SUBDIR%%/_samba
303
%%ZSHFUNC_SUBDIR%%/_sccs
304
%%ZSHFUNC_SUBDIR%%/_sched
305
%%ZSHFUNC_SUBDIR%%/_sep_parts
306
%%ZSHFUNC_SUBDIR%%/_service
307
%%ZSHFUNC_SUBDIR%%/_services
308
%%ZSHFUNC_SUBDIR%%/_set
309
%%ZSHFUNC_SUBDIR%%/_set_command
310
%%ZSHFUNC_SUBDIR%%/_setopt
311
%%ZSHFUNC_SUBDIR%%/_setup
312
%%ZSHFUNC_SUBDIR%%/_sh
313
%%ZSHFUNC_SUBDIR%%/_signals
314
%%ZSHFUNC_SUBDIR%%/_slrn
315
%%ZSHFUNC_SUBDIR%%/_smit
316
%%ZSHFUNC_SUBDIR%%/_socket
317
%%ZSHFUNC_SUBDIR%%/_source
318
%%ZSHFUNC_SUBDIR%%/_spamassassin
319
%%ZSHFUNC_SUBDIR%%/_ssh
320
%%ZSHFUNC_SUBDIR%%/_stat
321
%%ZSHFUNC_SUBDIR%%/_store_cache
322
%%ZSHFUNC_SUBDIR%%/_strip
323
%%ZSHFUNC_SUBDIR%%/_stty
324
%%ZSHFUNC_SUBDIR%%/_su
325
%%ZSHFUNC_SUBDIR%%/_sub_commands
326
%%ZSHFUNC_SUBDIR%%/_subscript
327
%%ZSHFUNC_SUBDIR%%/_sudo
328
%%ZSHFUNC_SUBDIR%%/_sysctl
329
%%ZSHFUNC_SUBDIR%%/_tags
330
%%ZSHFUNC_SUBDIR%%/_tar
331
%%ZSHFUNC_SUBDIR%%/_tar_archive
332
%%ZSHFUNC_SUBDIR%%/_telnet
333
%%ZSHFUNC_SUBDIR%%/_terminals
334
%%ZSHFUNC_SUBDIR%%/_tex
335
%%ZSHFUNC_SUBDIR%%/_texi
336
%%ZSHFUNC_SUBDIR%%/_texinfo
337
%%ZSHFUNC_SUBDIR%%/_tidy
338
%%ZSHFUNC_SUBDIR%%/_tiff
339
%%ZSHFUNC_SUBDIR%%/_tilde
340
%%ZSHFUNC_SUBDIR%%/_tilde_files
341
%%ZSHFUNC_SUBDIR%%/_time_zone
342
%%ZSHFUNC_SUBDIR%%/_tin
343
%%ZSHFUNC_SUBDIR%%/_trap
344
%%ZSHFUNC_SUBDIR%%/_ttyctl
345
%%ZSHFUNC_SUBDIR%%/_typeset
346
%%ZSHFUNC_SUBDIR%%/_ulimit
347
%%ZSHFUNC_SUBDIR%%/_unhash
348
%%ZSHFUNC_SUBDIR%%/_unsetopt
349
%%ZSHFUNC_SUBDIR%%/_update-alternatives
350
%%ZSHFUNC_SUBDIR%%/_urls
351
%%ZSHFUNC_SUBDIR%%/_urpmi
352
%%ZSHFUNC_SUBDIR%%/_user_admin
353
%%ZSHFUNC_SUBDIR%%/_user_at_host
354
%%ZSHFUNC_SUBDIR%%/_users
355
%%ZSHFUNC_SUBDIR%%/_users_on
356
%%ZSHFUNC_SUBDIR%%/_valgrind
357
%%ZSHFUNC_SUBDIR%%/_value
358
%%ZSHFUNC_SUBDIR%%/_values
359
%%ZSHFUNC_SUBDIR%%/_vared
360
%%ZSHFUNC_SUBDIR%%/_vars
361
%%ZSHFUNC_SUBDIR%%/_vnc
362
%%ZSHFUNC_SUBDIR%%/_volume_groups
363
%%ZSHFUNC_SUBDIR%%/_w3m
364
%%ZSHFUNC_SUBDIR%%/_wait
365
%%ZSHFUNC_SUBDIR%%/_wanted
366
%%ZSHFUNC_SUBDIR%%/_webbrowser
367
%%ZSHFUNC_SUBDIR%%/_wget
368
%%ZSHFUNC_SUBDIR%%/_whereis
369
%%ZSHFUNC_SUBDIR%%/_which
370
%%ZSHFUNC_SUBDIR%%/_whois
371
%%ZSHFUNC_SUBDIR%%/_x_arguments
372
%%ZSHFUNC_SUBDIR%%/_x_borderwidth
373
%%ZSHFUNC_SUBDIR%%/_x_color
374
%%ZSHFUNC_SUBDIR%%/_x_colormapid
375
%%ZSHFUNC_SUBDIR%%/_x_cursor
376
%%ZSHFUNC_SUBDIR%%/_x_display
377
%%ZSHFUNC_SUBDIR%%/_x_extension
378
%%ZSHFUNC_SUBDIR%%/_x_font
379
%%ZSHFUNC_SUBDIR%%/_x_geometry
380
%%ZSHFUNC_SUBDIR%%/_x_keysym
381
%%ZSHFUNC_SUBDIR%%/_x_locale
382
%%ZSHFUNC_SUBDIR%%/_x_modifier
383
%%ZSHFUNC_SUBDIR%%/_x_name
384
%%ZSHFUNC_SUBDIR%%/_x_resource
385
%%ZSHFUNC_SUBDIR%%/_x_selection_timeout
386
%%ZSHFUNC_SUBDIR%%/_x_title
387
%%ZSHFUNC_SUBDIR%%/_x_utils
388
%%ZSHFUNC_SUBDIR%%/_x_visual
389
%%ZSHFUNC_SUBDIR%%/_x_window
390
%%ZSHFUNC_SUBDIR%%/_xargs
391
%%ZSHFUNC_SUBDIR%%/_xauth
392
%%ZSHFUNC_SUBDIR%%/_xdvi
393
%%ZSHFUNC_SUBDIR%%/_xfig
394
%%ZSHFUNC_SUBDIR%%/_xloadimage
395
%%ZSHFUNC_SUBDIR%%/_xmodmap
396
%%ZSHFUNC_SUBDIR%%/_xrdb
397
%%ZSHFUNC_SUBDIR%%/_xset
398
%%ZSHFUNC_SUBDIR%%/_xsltproc
399
%%ZSHFUNC_SUBDIR%%/_xt_arguments
400
%%ZSHFUNC_SUBDIR%%/_xt_session_id
401
%%ZSHFUNC_SUBDIR%%/_xterm
402
%%ZSHFUNC_SUBDIR%%/_xv
403
%%ZSHFUNC_SUBDIR%%/_xwit
404
%%ZSHFUNC_SUBDIR%%/_yodl
405
%%ZSHFUNC_SUBDIR%%/_yp
406
%%ZSHFUNC_SUBDIR%%/_zcat
407
%%ZSHFUNC_SUBDIR%%/_zcompile
408
%%ZSHFUNC_SUBDIR%%/_zdump
409
%%ZSHFUNC_SUBDIR%%/_zed
410
%%ZSHFUNC_SUBDIR%%/_zftp
411
%%ZSHFUNC_SUBDIR%%/_zip
412
%%ZSHFUNC_SUBDIR%%/_zle
413
%%ZSHFUNC_SUBDIR%%/_zmodload
414
%%ZSHFUNC_SUBDIR%%/_zmv
415
%%ZSHFUNC_SUBDIR%%/_zpty
416
%%ZSHFUNC_SUBDIR%%/_zstyle
417
%%ZSHFUNC_SUBDIR%%/allopt
418
%%ZSHFUNC_SUBDIR%%/bash-backward-kill-word
419
%%ZSHFUNC_SUBDIR%%/bash-backward-word
420
%%ZSHFUNC_SUBDIR%%/bash-down-case-word
421
%%ZSHFUNC_SUBDIR%%/bash-forward-word
422
%%ZSHFUNC_SUBDIR%%/bash-kill-word
423
%%ZSHFUNC_SUBDIR%%/bash-transpose-words
424
%%ZSHFUNC_SUBDIR%%/bash-up-case-word
425
%%ZSHFUNC_SUBDIR%%/checkmail
426
%%ZSHFUNC_SUBDIR%%/colors
427
%%ZSHFUNC_SUBDIR%%/compaudit
428
%%ZSHFUNC_SUBDIR%%/compdump
429
%%ZSHFUNC_SUBDIR%%/compinit
430
%%ZSHFUNC_SUBDIR%%/compinstall
431
%%ZSHFUNC_SUBDIR%%/copy-earlier-word
432
%%ZSHFUNC_SUBDIR%%/cycle-completion-positions
433
%%ZSHFUNC_SUBDIR%%/down-line-or-beginning-search
434
%%ZSHFUNC_SUBDIR%%/edit-command-line
435
%%ZSHFUNC_SUBDIR%%/getjobs
436
%%ZSHFUNC_SUBDIR%%/harden
437
%%ZSHFUNC_SUBDIR%%/history-search-end
438
%%ZSHFUNC_SUBDIR%%/incarg
439
%%ZSHFUNC_SUBDIR%%/incremental-complete-word
440
%%ZSHFUNC_SUBDIR%%/insert-files
441
%%ZSHFUNC_SUBDIR%%/is-at-least
442
%%ZSHFUNC_SUBDIR%%/mere
443
%%ZSHFUNC_SUBDIR%%/narrow-to-region
444
%%ZSHFUNC_SUBDIR%%/narrow-to-region-invisible
445
%%ZSHFUNC_SUBDIR%%/nslookup
446
%%ZSHFUNC_SUBDIR%%/predict-on
447
%%ZSHFUNC_SUBDIR%%/prompt_adam1_setup
448
%%ZSHFUNC_SUBDIR%%/prompt_adam2_setup
449
%%ZSHFUNC_SUBDIR%%/prompt_bart_setup
450
%%ZSHFUNC_SUBDIR%%/prompt_bigfade_setup
451
%%ZSHFUNC_SUBDIR%%/prompt_clint_setup
452
%%ZSHFUNC_SUBDIR%%/prompt_elite2_setup
453
%%ZSHFUNC_SUBDIR%%/prompt_elite_setup
454
%%ZSHFUNC_SUBDIR%%/prompt_fade_setup
455
%%ZSHFUNC_SUBDIR%%/prompt_fire_setup
456
%%ZSHFUNC_SUBDIR%%/prompt_off_setup
457
%%ZSHFUNC_SUBDIR%%/prompt_oliver_setup
458
%%ZSHFUNC_SUBDIR%%/prompt_redhat_setup
459
%%ZSHFUNC_SUBDIR%%/prompt_suse_setup
460
%%ZSHFUNC_SUBDIR%%/prompt_walters_setup
461
%%ZSHFUNC_SUBDIR%%/prompt_zefram_setup
462
%%ZSHFUNC_SUBDIR%%/promptinit
463
%%ZSHFUNC_SUBDIR%%/promptnl
464
%%ZSHFUNC_SUBDIR%%/read-from-minibuffer
465
%%ZSHFUNC_SUBDIR%%/relative
466
%%ZSHFUNC_SUBDIR%%/replace-string
467
%%ZSHFUNC_SUBDIR%%/run-help
468
%%ZSHFUNC_SUBDIR%%/smart-insert-last-word
469
%%ZSHFUNC_SUBDIR%%/tetris
470
%%ZSHFUNC_SUBDIR%%/up-line-or-beginning-search
471
%%ZSHFUNC_SUBDIR%%/zargs
472
%%ZSHFUNC_SUBDIR%%/zcalc
473
%%ZSHFUNC_SUBDIR%%/zed
474
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfanon
475
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfautocheck
476
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcd
477
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcd_match
478
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcget
479
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfclose
480
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfcput
481
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfdir
482
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zffcache
483
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfgcp
484
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfget
485
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfget_match
486
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfgoto
487
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfhere
488
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfinit
489
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfls
490
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfmark
491
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfopen
492
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfparams
493
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfpcp
494
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfput
495
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfrglob
496
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfrtime
497
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfsession
498
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfstat
499
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftp_chpwd
500
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftp_progress
501
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftransfer
502
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zftype
503
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfuget
504
%%NO_STATIC%%%%ZSHFUNC_SUBDIR%%/zfuput
505
%%ZSHFUNC_SUBDIR%%/zkbd
506
%%ZSHFUNC_SUBDIR%%/zmv
507
%%ZSHFUNC_SUBDIR%%/zrecompile
508
%%ZSHFUNC_SUBDIR%%/zstyle+
509
@exec mkdir %D/share/zsh/site-functions
510
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh/net
511
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh
40
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%/zsh
512
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%
41
%%NO_STATIC%%@dirrm lib/zsh/%%ZSH_VER%%
513
%%NO_STATIC%%@dirrm lib/zsh
42
%%NO_STATIC%%lib/zsh/libzsh-%%ZSH_VER%%.so
514
@dirrm %%ZSHFUNC_SUBDIR%%
43
%%NO_STATIC%%@unexec rmdir %D/lib/zsh 2> /dev/null || true
515
@dirrm share/zsh/%%ZSH_VER%%
44
%%PORTDOCS%%%%DOCSDIR%%/BUGS
516
@dirrm share/zsh/site-functions
45
%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTORS
517
@dirrm share/zsh
46
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
518
@dirrm share/examples/zsh
47
%%PORTDOCS%%%%DOCSDIR%%/FAQ
48
%%PORTDOCS%%%%DOCSDIR%%/FEATURES
49
%%PORTDOCS%%%%DOCSDIR%%/LICENCE
50
%%PORTDOCS%%%%DOCSDIR%%/META-FAQ
51
%%PORTDOCS%%%%DOCSDIR%%/NEWS
52
%%PORTDOCS%%%%DOCSDIR%%/README
53
%%PORTDOCS%%%%DOCSDIR%%/completion-style-guide
54
%%PORTDOCS%%%%DOCSDIR%%/pubring.pgp
55
%%PORTDOCS%%%%DOCSDIR%%/zsh-development-guide
56
%%PORTDOCS%%%%DOCSDIR%%/zsh.dvi
57
%%PORTDOCS%%%%DOCSDIR%%/zsh_1.html
58
%%PORTDOCS%%%%DOCSDIR%%/zsh_10.html
59
%%PORTDOCS%%%%DOCSDIR%%/zsh_11.html
60
%%PORTDOCS%%%%DOCSDIR%%/zsh_12.html
61
%%PORTDOCS%%%%DOCSDIR%%/zsh_13.html
62
%%PORTDOCS%%%%DOCSDIR%%/zsh_14.html
63
%%PORTDOCS%%%%DOCSDIR%%/zsh_15.html
64
%%PORTDOCS%%%%DOCSDIR%%/zsh_16.html
65
%%PORTDOCS%%%%DOCSDIR%%/zsh_17.html
66
%%PORTDOCS%%%%DOCSDIR%%/zsh_18.html
67
%%PORTDOCS%%%%DOCSDIR%%/zsh_19.html
68
%%PORTDOCS%%%%DOCSDIR%%/zsh_2.html
69
%%PORTDOCS%%%%DOCSDIR%%/zsh_20.html
70
%%PORTDOCS%%%%DOCSDIR%%/zsh_21.html
71
%%PORTDOCS%%%%DOCSDIR%%/zsh_22.html
72
%%PORTDOCS%%%%DOCSDIR%%/zsh_23.html
73
%%PORTDOCS%%%%DOCSDIR%%/zsh_24.html
74
%%PORTDOCS%%%%DOCSDIR%%/zsh_25.html
75
%%PORTDOCS%%%%DOCSDIR%%/zsh_26.html
76
%%PORTDOCS%%%%DOCSDIR%%/zsh_27.html
77
%%PORTDOCS%%%%DOCSDIR%%/zsh_28.html
78
%%PORTDOCS%%%%DOCSDIR%%/zsh_29.html
79
%%PORTDOCS%%%%DOCSDIR%%/zsh_3.html
80
%%PORTDOCS%%%%DOCSDIR%%/zsh_30.html
81
%%PORTDOCS%%%%DOCSDIR%%/zsh_31.html
82
%%PORTDOCS%%%%DOCSDIR%%/zsh_32.html
83
%%PORTDOCS%%%%DOCSDIR%%/zsh_33.html
84
%%PORTDOCS%%%%DOCSDIR%%/zsh_34.html
85
%%PORTDOCS%%%%DOCSDIR%%/zsh_35.html
86
%%PORTDOCS%%%%DOCSDIR%%/zsh_36.html
87
%%PORTDOCS%%%%DOCSDIR%%/zsh_37.html
88
%%PORTDOCS%%%%DOCSDIR%%/zsh_38.html
89
%%PORTDOCS%%%%DOCSDIR%%/zsh_39.html
90
%%PORTDOCS%%%%DOCSDIR%%/zsh_4.html
91
%%PORTDOCS%%%%DOCSDIR%%/zsh_40.html
92
%%PORTDOCS%%%%DOCSDIR%%/zsh_41.html
93
%%PORTDOCS%%%%DOCSDIR%%/zsh_42.html
94
%%PORTDOCS%%%%DOCSDIR%%/zsh_5.html
95
%%PORTDOCS%%%%DOCSDIR%%/zsh_6.html
96
%%PORTDOCS%%%%DOCSDIR%%/zsh_7.html
97
%%PORTDOCS%%%%DOCSDIR%%/zsh_8.html
98
%%PORTDOCS%%%%DOCSDIR%%/zsh_9.html
99
%%PORTDOCS%%%%DOCSDIR%%/zsh_a4.ps
100
%%PORTDOCS%%%%DOCSDIR%%/zsh_toc.html
101
%%PORTDOCS%%%%DOCSDIR%%/zsh_us.ps
102
%%PORTDOCS%%@dirrm %%DOCSDIR%%
103
%%EXAMPLESDIR%%/zlogin
104
%%EXAMPLESDIR%%/zshenv
105
%%EXAMPLESDIR%%/zshrc
106
@dirrm %%EXAMPLESDIR%%
107
@exec   mkdir %%ZSH_SITEFNDIR%% 2> /dev/null || true
108
@unexec rmdir %%ZSH_SITEFNDIR%% 2> /dev/null || true
109
%%ZSH_FNDIR%%/Completion/AIX/_floppy
110
%%ZSH_FNDIR%%/Completion/AIX/_logical_volumes
111
%%ZSH_FNDIR%%/Completion/AIX/_lscfg
112
%%ZSH_FNDIR%%/Completion/AIX/_lsdev
113
%%ZSH_FNDIR%%/Completion/AIX/_lslv
114
%%ZSH_FNDIR%%/Completion/AIX/_lspv
115
%%ZSH_FNDIR%%/Completion/AIX/_lsvg
116
%%ZSH_FNDIR%%/Completion/AIX/_object_classes
117
%%ZSH_FNDIR%%/Completion/AIX/_physical_volumes
118
%%ZSH_FNDIR%%/Completion/AIX/_smit
119
%%ZSH_FNDIR%%/Completion/AIX/_volume_groups
120
@dirrm %%ZSH_FNDIR%%/Completion/AIX
121
%%ZSH_FNDIR%%/Completion/BSD/_bsd_pkg
122
%%ZSH_FNDIR%%/Completion/BSD/_chflags
123
%%ZSH_FNDIR%%/Completion/BSD/_cvsup
124
%%ZSH_FNDIR%%/Completion/BSD/_kld
125
@dirrm %%ZSH_FNDIR%%/Completion/BSD
126
%%ZSH_FNDIR%%/Completion/Base/_all_labels
127
%%ZSH_FNDIR%%/Completion/Base/_all_matches
128
%%ZSH_FNDIR%%/Completion/Base/_alternative
129
%%ZSH_FNDIR%%/Completion/Base/_approximate
130
%%ZSH_FNDIR%%/Completion/Base/_arg_compile
131
%%ZSH_FNDIR%%/Completion/Base/_arguments
132
%%ZSH_FNDIR%%/Completion/Base/_bash_completions
133
%%ZSH_FNDIR%%/Completion/Base/_cache_invalid
134
%%ZSH_FNDIR%%/Completion/Base/_call_function
135
%%ZSH_FNDIR%%/Completion/Base/_call_program
136
%%ZSH_FNDIR%%/Completion/Base/_combination
137
%%ZSH_FNDIR%%/Completion/Base/_complete
138
%%ZSH_FNDIR%%/Completion/Base/_complete_debug
139
%%ZSH_FNDIR%%/Completion/Base/_complete_help
140
%%ZSH_FNDIR%%/Completion/Base/_complete_tag
141
%%ZSH_FNDIR%%/Completion/Base/_correct
142
%%ZSH_FNDIR%%/Completion/Base/_correct_filename
143
%%ZSH_FNDIR%%/Completion/Base/_correct_word
144
%%ZSH_FNDIR%%/Completion/Base/_describe
145
%%ZSH_FNDIR%%/Completion/Base/_description
146
%%ZSH_FNDIR%%/Completion/Base/_dispatch
147
%%ZSH_FNDIR%%/Completion/Base/_expand
148
%%ZSH_FNDIR%%/Completion/Base/_expand_alias
149
%%ZSH_FNDIR%%/Completion/Base/_expand_word
150
%%ZSH_FNDIR%%/Completion/Base/_generic
151
%%ZSH_FNDIR%%/Completion/Base/_guard
152
%%ZSH_FNDIR%%/Completion/Base/_history
153
%%ZSH_FNDIR%%/Completion/Base/_history_complete_word
154
%%ZSH_FNDIR%%/Completion/Base/_ignored
155
%%ZSH_FNDIR%%/Completion/Base/_list
156
%%ZSH_FNDIR%%/Completion/Base/_main_complete
157
%%ZSH_FNDIR%%/Completion/Base/_match
158
%%ZSH_FNDIR%%/Completion/Base/_menu
159
%%ZSH_FNDIR%%/Completion/Base/_message
160
%%ZSH_FNDIR%%/Completion/Base/_most_recent_file
161
%%ZSH_FNDIR%%/Completion/Base/_multi_parts
162
%%ZSH_FNDIR%%/Completion/Base/_next_label
163
%%ZSH_FNDIR%%/Completion/Base/_next_tags
164
%%ZSH_FNDIR%%/Completion/Base/_normal
165
%%ZSH_FNDIR%%/Completion/Base/_nothing
166
%%ZSH_FNDIR%%/Completion/Base/_oldlist
167
%%ZSH_FNDIR%%/Completion/Base/_pick_variant
168
%%ZSH_FNDIR%%/Completion/Base/_prefix
169
%%ZSH_FNDIR%%/Completion/Base/_read_comp
170
%%ZSH_FNDIR%%/Completion/Base/_regex_arguments
171
%%ZSH_FNDIR%%/Completion/Base/_requested
172
%%ZSH_FNDIR%%/Completion/Base/_retrieve_cache
173
%%ZSH_FNDIR%%/Completion/Base/_sep_parts
174
%%ZSH_FNDIR%%/Completion/Base/_set_command
175
%%ZSH_FNDIR%%/Completion/Base/_setup
176
%%ZSH_FNDIR%%/Completion/Base/_store_cache
177
%%ZSH_FNDIR%%/Completion/Base/_sub_commands
178
%%ZSH_FNDIR%%/Completion/Base/_tags
179
%%ZSH_FNDIR%%/Completion/Base/_values
180
%%ZSH_FNDIR%%/Completion/Base/_wanted
181
@dirrm %%ZSH_FNDIR%%/Completion/Base
182
%%ZSH_FNDIR%%/Completion/Cygwin/_cygcheck
183
%%ZSH_FNDIR%%/Completion/Cygwin/_cygpath
184
%%ZSH_FNDIR%%/Completion/Cygwin/_cygrunsrv
185
%%ZSH_FNDIR%%/Completion/Cygwin/_cygserver
186
%%ZSH_FNDIR%%/Completion/Cygwin/_cygstart
187
%%ZSH_FNDIR%%/Completion/Cygwin/_dumper
188
%%ZSH_FNDIR%%/Completion/Cygwin/_getclip
189
%%ZSH_FNDIR%%/Completion/Cygwin/_getfacl
190
%%ZSH_FNDIR%%/Completion/Cygwin/_mkshortcut
191
%%ZSH_FNDIR%%/Completion/Cygwin/_mkzsh
192
%%ZSH_FNDIR%%/Completion/Cygwin/_pscp
193
%%ZSH_FNDIR%%/Completion/Cygwin/_putclip
194
@dirrm %%ZSH_FNDIR%%/Completion/Cygwin
195
%%ZSH_FNDIR%%/Completion/Debian/_apt
196
%%ZSH_FNDIR%%/Completion/Debian/_apt-show-versions
197
%%ZSH_FNDIR%%/Completion/Debian/_auto-apt
198
%%ZSH_FNDIR%%/Completion/Debian/_bts
199
%%ZSH_FNDIR%%/Completion/Debian/_bug
200
%%ZSH_FNDIR%%/Completion/Debian/_deb_packages
201
%%ZSH_FNDIR%%/Completion/Debian/_debchange
202
%%ZSH_FNDIR%%/Completion/Debian/_debfoster
203
%%ZSH_FNDIR%%/Completion/Debian/_dpkg
204
%%ZSH_FNDIR%%/Completion/Debian/_dpkg_source
205
%%ZSH_FNDIR%%/Completion/Debian/_dput
206
%%ZSH_FNDIR%%/Completion/Debian/_dupload
207
%%ZSH_FNDIR%%/Completion/Debian/_make-kpkg
208
%%ZSH_FNDIR%%/Completion/Debian/_update-alternatives
209
@dirrm %%ZSH_FNDIR%%/Completion/Debian
210
%%ZSH_FNDIR%%/Completion/Linux/_losetup
211
%%ZSH_FNDIR%%/Completion/Linux/_modutils
212
%%ZSH_FNDIR%%/Completion/Linux/_mondo
213
%%ZSH_FNDIR%%/Completion/Linux/_uml
214
%%ZSH_FNDIR%%/Completion/Linux/_valgrind
215
@dirrm %%ZSH_FNDIR%%/Completion/Linux
216
%%ZSH_FNDIR%%/Completion/Mandrake/_urpmi
217
@dirrm %%ZSH_FNDIR%%/Completion/Mandrake
218
%%ZSH_FNDIR%%/Completion/Redhat/_rpm
219
%%ZSH_FNDIR%%/Completion/Redhat/_service
220
@dirrm %%ZSH_FNDIR%%/Completion/Redhat
221
%%ZSH_FNDIR%%/Completion/Unix/_a2ps
222
%%ZSH_FNDIR%%/Completion/Unix/_ant
223
%%ZSH_FNDIR%%/Completion/Unix/_antiword
224
%%ZSH_FNDIR%%/Completion/Unix/_apachectl
225
%%ZSH_FNDIR%%/Completion/Unix/_apm
226
%%ZSH_FNDIR%%/Completion/Unix/_archie
227
%%ZSH_FNDIR%%/Completion/Unix/_arp
228
%%ZSH_FNDIR%%/Completion/Unix/_arping
229
%%ZSH_FNDIR%%/Completion/Unix/_bison
230
%%ZSH_FNDIR%%/Completion/Unix/_bzip2
231
%%ZSH_FNDIR%%/Completion/Unix/_cdcd
232
%%ZSH_FNDIR%%/Completion/Unix/_chkconfig
233
%%ZSH_FNDIR%%/Completion/Unix/_chown
234
%%ZSH_FNDIR%%/Completion/Unix/_compress
235
%%ZSH_FNDIR%%/Completion/Unix/_configure
236
%%ZSH_FNDIR%%/Completion/Unix/_cpio
237
%%ZSH_FNDIR%%/Completion/Unix/_cvs
238
%%ZSH_FNDIR%%/Completion/Unix/_dd
239
%%ZSH_FNDIR%%/Completion/Unix/_dict
240
%%ZSH_FNDIR%%/Completion/Unix/_dict_words
241
%%ZSH_FNDIR%%/Completion/Unix/_diff
242
%%ZSH_FNDIR%%/Completion/Unix/_diff_options
243
%%ZSH_FNDIR%%/Completion/Unix/_dir_list
244
%%ZSH_FNDIR%%/Completion/Unix/_directories
245
%%ZSH_FNDIR%%/Completion/Unix/_domains
246
%%ZSH_FNDIR%%/Completion/Unix/_dvi
247
%%ZSH_FNDIR%%/Completion/Unix/_ecasound
248
%%ZSH_FNDIR%%/Completion/Unix/_elinks
249
%%ZSH_FNDIR%%/Completion/Unix/_elm
250
%%ZSH_FNDIR%%/Completion/Unix/_email_addresses
251
%%ZSH_FNDIR%%/Completion/Unix/_enscript
252
%%ZSH_FNDIR%%/Completion/Unix/_fakeroot
253
%%ZSH_FNDIR%%/Completion/Unix/_fetchmail
254
%%ZSH_FNDIR%%/Completion/Unix/_figlet
255
%%ZSH_FNDIR%%/Completion/Unix/_file_systems
256
%%ZSH_FNDIR%%/Completion/Unix/_files
257
%%ZSH_FNDIR%%/Completion/Unix/_find
258
%%ZSH_FNDIR%%/Completion/Unix/_finger
259
%%ZSH_FNDIR%%/Completion/Unix/_flex
260
%%ZSH_FNDIR%%/Completion/Unix/_fsh
261
%%ZSH_FNDIR%%/Completion/Unix/_gcc
262
%%ZSH_FNDIR%%/Completion/Unix/_gdb
263
%%ZSH_FNDIR%%/Completion/Unix/_getconf
264
%%ZSH_FNDIR%%/Completion/Unix/_global
265
%%ZSH_FNDIR%%/Completion/Unix/_global_tags
266
%%ZSH_FNDIR%%/Completion/Unix/_gnu_generic
267
%%ZSH_FNDIR%%/Completion/Unix/_gpg
268
%%ZSH_FNDIR%%/Completion/Unix/_gprof
269
%%ZSH_FNDIR%%/Completion/Unix/_grep
270
%%ZSH_FNDIR%%/Completion/Unix/_groups
271
%%ZSH_FNDIR%%/Completion/Unix/_gs
272
%%ZSH_FNDIR%%/Completion/Unix/_gzip
273
%%ZSH_FNDIR%%/Completion/Unix/_hosts
274
%%ZSH_FNDIR%%/Completion/Unix/_iconv
275
%%ZSH_FNDIR%%/Completion/Unix/_ifconfig
276
%%ZSH_FNDIR%%/Completion/Unix/_imagemagick
277
%%ZSH_FNDIR%%/Completion/Unix/_init_d
278
%%ZSH_FNDIR%%/Completion/Unix/_irssi
279
%%ZSH_FNDIR%%/Completion/Unix/_ispell
280
%%ZSH_FNDIR%%/Completion/Unix/_java
281
%%ZSH_FNDIR%%/Completion/Unix/_java_class
282
%%ZSH_FNDIR%%/Completion/Unix/_joe
283
%%ZSH_FNDIR%%/Completion/Unix/_killall
284
%%ZSH_FNDIR%%/Completion/Unix/_larch
285
%%ZSH_FNDIR%%/Completion/Unix/_last
286
%%ZSH_FNDIR%%/Completion/Unix/_links
287
%%ZSH_FNDIR%%/Completion/Unix/_loadkeys
288
%%ZSH_FNDIR%%/Completion/Unix/_locales
289
%%ZSH_FNDIR%%/Completion/Unix/_look
290
%%ZSH_FNDIR%%/Completion/Unix/_lp
291
%%ZSH_FNDIR%%/Completion/Unix/_ls
292
%%ZSH_FNDIR%%/Completion/Unix/_lsof
293
%%ZSH_FNDIR%%/Completion/Unix/_lynx
294
%%ZSH_FNDIR%%/Completion/Unix/_lzop
295
%%ZSH_FNDIR%%/Completion/Unix/_mail
296
%%ZSH_FNDIR%%/Completion/Unix/_mailboxes
297
%%ZSH_FNDIR%%/Completion/Unix/_make
298
%%ZSH_FNDIR%%/Completion/Unix/_man
299
%%ZSH_FNDIR%%/Completion/Unix/_mh
300
%%ZSH_FNDIR%%/Completion/Unix/_mount
301
%%ZSH_FNDIR%%/Completion/Unix/_mt
302
%%ZSH_FNDIR%%/Completion/Unix/_mtools
303
%%ZSH_FNDIR%%/Completion/Unix/_mutt
304
%%ZSH_FNDIR%%/Completion/Unix/_my_accounts
305
%%ZSH_FNDIR%%/Completion/Unix/_mysql_utils
306
%%ZSH_FNDIR%%/Completion/Unix/_mysqldiff
307
%%ZSH_FNDIR%%/Completion/Unix/_ncftp
308
%%ZSH_FNDIR%%/Completion/Unix/_net_interfaces
309
%%ZSH_FNDIR%%/Completion/Unix/_netcat
310
%%ZSH_FNDIR%%/Completion/Unix/_newsgroups
311
%%ZSH_FNDIR%%/Completion/Unix/_nslookup
312
%%ZSH_FNDIR%%/Completion/Unix/_other_accounts
313
%%ZSH_FNDIR%%/Completion/Unix/_pack
314
%%ZSH_FNDIR%%/Completion/Unix/_patch
315
%%ZSH_FNDIR%%/Completion/Unix/_path_files
316
%%ZSH_FNDIR%%/Completion/Unix/_pbm
317
%%ZSH_FNDIR%%/Completion/Unix/_pdf
318
%%ZSH_FNDIR%%/Completion/Unix/_perforce
319
%%ZSH_FNDIR%%/Completion/Unix/_perl
320
%%ZSH_FNDIR%%/Completion/Unix/_perl_basepods
321
%%ZSH_FNDIR%%/Completion/Unix/_perl_builtin_funcs
322
%%ZSH_FNDIR%%/Completion/Unix/_perl_modules
323
%%ZSH_FNDIR%%/Completion/Unix/_perldoc
324
%%ZSH_FNDIR%%/Completion/Unix/_pids
325
%%ZSH_FNDIR%%/Completion/Unix/_pine
326
%%ZSH_FNDIR%%/Completion/Unix/_ports
327
%%ZSH_FNDIR%%/Completion/Unix/_prcs
328
%%ZSH_FNDIR%%/Completion/Unix/_printers
329
%%ZSH_FNDIR%%/Completion/Unix/_ps
330
%%ZSH_FNDIR%%/Completion/Unix/_pspdf
331
%%ZSH_FNDIR%%/Completion/Unix/_psutils
332
%%ZSH_FNDIR%%/Completion/Unix/_python
333
%%ZSH_FNDIR%%/Completion/Unix/_rcs
334
%%ZSH_FNDIR%%/Completion/Unix/_renice
335
%%ZSH_FNDIR%%/Completion/Unix/_rlogin
336
%%ZSH_FNDIR%%/Completion/Unix/_rsync
337
%%ZSH_FNDIR%%/Completion/Unix/_ruby
338
%%ZSH_FNDIR%%/Completion/Unix/_samba
339
%%ZSH_FNDIR%%/Completion/Unix/_sccs
340
%%ZSH_FNDIR%%/Completion/Unix/_screen
341
%%ZSH_FNDIR%%/Completion/Unix/_services
342
%%ZSH_FNDIR%%/Completion/Unix/_sh
343
%%ZSH_FNDIR%%/Completion/Unix/_signals
344
%%ZSH_FNDIR%%/Completion/Unix/_slrn
345
%%ZSH_FNDIR%%/Completion/Unix/_socket
346
%%ZSH_FNDIR%%/Completion/Unix/_spamassassin
347
%%ZSH_FNDIR%%/Completion/Unix/_ssh
348
%%ZSH_FNDIR%%/Completion/Unix/_strip
349
%%ZSH_FNDIR%%/Completion/Unix/_stty
350
%%ZSH_FNDIR%%/Completion/Unix/_su
351
%%ZSH_FNDIR%%/Completion/Unix/_sudo
352
%%ZSH_FNDIR%%/Completion/Unix/_sysctl
353
%%ZSH_FNDIR%%/Completion/Unix/_tar
354
%%ZSH_FNDIR%%/Completion/Unix/_tar_archive
355
%%ZSH_FNDIR%%/Completion/Unix/_telnet
356
%%ZSH_FNDIR%%/Completion/Unix/_terminals
357
%%ZSH_FNDIR%%/Completion/Unix/_tex
358
%%ZSH_FNDIR%%/Completion/Unix/_texi
359
%%ZSH_FNDIR%%/Completion/Unix/_texinfo
360
%%ZSH_FNDIR%%/Completion/Unix/_tidy
361
%%ZSH_FNDIR%%/Completion/Unix/_tiff
362
%%ZSH_FNDIR%%/Completion/Unix/_tilde_files
363
%%ZSH_FNDIR%%/Completion/Unix/_time_zone
364
%%ZSH_FNDIR%%/Completion/Unix/_tin
365
%%ZSH_FNDIR%%/Completion/Unix/_urls
366
%%ZSH_FNDIR%%/Completion/Unix/_user_admin
367
%%ZSH_FNDIR%%/Completion/Unix/_user_at_host
368
%%ZSH_FNDIR%%/Completion/Unix/_users
369
%%ZSH_FNDIR%%/Completion/Unix/_users_on
370
%%ZSH_FNDIR%%/Completion/Unix/_w3m
371
%%ZSH_FNDIR%%/Completion/Unix/_webbrowser
372
%%ZSH_FNDIR%%/Completion/Unix/_wget
373
%%ZSH_FNDIR%%/Completion/Unix/_whereis
374
%%ZSH_FNDIR%%/Completion/Unix/_whois
375
%%ZSH_FNDIR%%/Completion/Unix/_xargs
376
%%ZSH_FNDIR%%/Completion/Unix/_xmlsoft
377
%%ZSH_FNDIR%%/Completion/Unix/_yodl
378
%%ZSH_FNDIR%%/Completion/Unix/_yp
379
%%ZSH_FNDIR%%/Completion/Unix/_zcat
380
%%ZSH_FNDIR%%/Completion/Unix/_zdump
381
%%ZSH_FNDIR%%/Completion/Unix/_zip
382
@dirrm %%ZSH_FNDIR%%/Completion/Unix
383
%%ZSH_FNDIR%%/Completion/X/_acroread
384
%%ZSH_FNDIR%%/Completion/X/_dcop
385
%%ZSH_FNDIR%%/Completion/X/_gqview
386
%%ZSH_FNDIR%%/Completion/X/_gv
387
%%ZSH_FNDIR%%/Completion/X/_mozilla
388
%%ZSH_FNDIR%%/Completion/X/_mplayer
389
%%ZSH_FNDIR%%/Completion/X/_nedit
390
%%ZSH_FNDIR%%/Completion/X/_netscape
391
%%ZSH_FNDIR%%/Completion/X/_vnc
392
%%ZSH_FNDIR%%/Completion/X/_x_arguments
393
%%ZSH_FNDIR%%/Completion/X/_x_borderwidth
394
%%ZSH_FNDIR%%/Completion/X/_x_color
395
%%ZSH_FNDIR%%/Completion/X/_x_colormapid
396
%%ZSH_FNDIR%%/Completion/X/_x_cursor
397
%%ZSH_FNDIR%%/Completion/X/_x_display
398
%%ZSH_FNDIR%%/Completion/X/_x_extension
399
%%ZSH_FNDIR%%/Completion/X/_x_font
400
%%ZSH_FNDIR%%/Completion/X/_x_geometry
401
%%ZSH_FNDIR%%/Completion/X/_x_keysym
402
%%ZSH_FNDIR%%/Completion/X/_x_locale
403
%%ZSH_FNDIR%%/Completion/X/_x_modifier
404
%%ZSH_FNDIR%%/Completion/X/_x_name
405
%%ZSH_FNDIR%%/Completion/X/_x_resource
406
%%ZSH_FNDIR%%/Completion/X/_x_selection_timeout
407
%%ZSH_FNDIR%%/Completion/X/_x_title
408
%%ZSH_FNDIR%%/Completion/X/_x_utils
409
%%ZSH_FNDIR%%/Completion/X/_x_visual
410
%%ZSH_FNDIR%%/Completion/X/_x_window
411
%%ZSH_FNDIR%%/Completion/X/_xauth
412
%%ZSH_FNDIR%%/Completion/X/_xdvi
413
%%ZSH_FNDIR%%/Completion/X/_xfig
414
%%ZSH_FNDIR%%/Completion/X/_xloadimage
415
%%ZSH_FNDIR%%/Completion/X/_xmodmap
416
%%ZSH_FNDIR%%/Completion/X/_xset
417
%%ZSH_FNDIR%%/Completion/X/_xt_arguments
418
%%ZSH_FNDIR%%/Completion/X/_xt_session_id
419
%%ZSH_FNDIR%%/Completion/X/_xterm
420
%%ZSH_FNDIR%%/Completion/X/_xv
421
%%ZSH_FNDIR%%/Completion/X/_xwit
422
@dirrm %%ZSH_FNDIR%%/Completion/X
423
%%ZSH_FNDIR%%/Completion/Zsh/_alias
424
%%ZSH_FNDIR%%/Completion/Zsh/_aliases
425
%%ZSH_FNDIR%%/Completion/Zsh/_arrays
426
%%ZSH_FNDIR%%/Completion/Zsh/_assign
427
%%ZSH_FNDIR%%/Completion/Zsh/_autocd
428
%%ZSH_FNDIR%%/Completion/Zsh/_autoload
429
%%ZSH_FNDIR%%/Completion/Zsh/_bindkey
430
%%ZSH_FNDIR%%/Completion/Zsh/_brace_parameter
431
%%ZSH_FNDIR%%/Completion/Zsh/_builtin
432
%%ZSH_FNDIR%%/Completion/Zsh/_cd
433
%%ZSH_FNDIR%%/Completion/Zsh/_command
434
%%ZSH_FNDIR%%/Completion/Zsh/_command_names
435
%%ZSH_FNDIR%%/Completion/Zsh/_compdef
436
%%ZSH_FNDIR%%/Completion/Zsh/_condition
437
%%ZSH_FNDIR%%/Completion/Zsh/_default
438
%%ZSH_FNDIR%%/Completion/Zsh/_directory_stack
439
%%ZSH_FNDIR%%/Completion/Zsh/_dirs
440
%%ZSH_FNDIR%%/Completion/Zsh/_disable
441
%%ZSH_FNDIR%%/Completion/Zsh/_echotc
442
%%ZSH_FNDIR%%/Completion/Zsh/_echoti
443
%%ZSH_FNDIR%%/Completion/Zsh/_emulate
444
%%ZSH_FNDIR%%/Completion/Zsh/_enable
445
%%ZSH_FNDIR%%/Completion/Zsh/_equal
446
%%ZSH_FNDIR%%/Completion/Zsh/_fc
447
%%ZSH_FNDIR%%/Completion/Zsh/_file_descriptors
448
%%ZSH_FNDIR%%/Completion/Zsh/_first
449
%%ZSH_FNDIR%%/Completion/Zsh/_functions
450
%%ZSH_FNDIR%%/Completion/Zsh/_hash
451
%%ZSH_FNDIR%%/Completion/Zsh/_in_vared
452
%%ZSH_FNDIR%%/Completion/Zsh/_jobs
453
%%ZSH_FNDIR%%/Completion/Zsh/_jobs_bg
454
%%ZSH_FNDIR%%/Completion/Zsh/_jobs_builtin
455
%%ZSH_FNDIR%%/Completion/Zsh/_jobs_fg
456
%%ZSH_FNDIR%%/Completion/Zsh/_kill
457
%%ZSH_FNDIR%%/Completion/Zsh/_limit
458
%%ZSH_FNDIR%%/Completion/Zsh/_limits
459
%%ZSH_FNDIR%%/Completion/Zsh/_math
460
%%ZSH_FNDIR%%/Completion/Zsh/_mere
461
%%ZSH_FNDIR%%/Completion/Zsh/_options
462
%%ZSH_FNDIR%%/Completion/Zsh/_options_set
463
%%ZSH_FNDIR%%/Completion/Zsh/_options_unset
464
%%ZSH_FNDIR%%/Completion/Zsh/_parameter
465
%%ZSH_FNDIR%%/Completion/Zsh/_parameters
466
%%ZSH_FNDIR%%/Completion/Zsh/_precommand
467
%%ZSH_FNDIR%%/Completion/Zsh/_print
468
%%ZSH_FNDIR%%/Completion/Zsh/_prompt
469
%%ZSH_FNDIR%%/Completion/Zsh/_read
470
%%ZSH_FNDIR%%/Completion/Zsh/_redirect
471
%%ZSH_FNDIR%%/Completion/Zsh/_sched
472
%%ZSH_FNDIR%%/Completion/Zsh/_set
473
%%ZSH_FNDIR%%/Completion/Zsh/_setopt
474
%%ZSH_FNDIR%%/Completion/Zsh/_source
475
%%ZSH_FNDIR%%/Completion/Zsh/_stat
476
%%ZSH_FNDIR%%/Completion/Zsh/_subscript
477
%%ZSH_FNDIR%%/Completion/Zsh/_tilde
478
%%ZSH_FNDIR%%/Completion/Zsh/_trap
479
%%ZSH_FNDIR%%/Completion/Zsh/_ttyctl
480
%%ZSH_FNDIR%%/Completion/Zsh/_typeset
481
%%ZSH_FNDIR%%/Completion/Zsh/_ulimit
482
%%ZSH_FNDIR%%/Completion/Zsh/_unhash
483
%%ZSH_FNDIR%%/Completion/Zsh/_unsetopt
484
%%ZSH_FNDIR%%/Completion/Zsh/_value
485
%%ZSH_FNDIR%%/Completion/Zsh/_vared
486
%%ZSH_FNDIR%%/Completion/Zsh/_vars
487
%%ZSH_FNDIR%%/Completion/Zsh/_wait
488
%%ZSH_FNDIR%%/Completion/Zsh/_which
489
%%ZSH_FNDIR%%/Completion/Zsh/_zcompile
490
%%ZSH_FNDIR%%/Completion/Zsh/_zed
491
%%ZSH_FNDIR%%/Completion/Zsh/_zftp
492
%%ZSH_FNDIR%%/Completion/Zsh/_zle
493
%%ZSH_FNDIR%%/Completion/Zsh/_zmodload
494
%%ZSH_FNDIR%%/Completion/Zsh/_zmv
495
%%ZSH_FNDIR%%/Completion/Zsh/_zpty
496
%%ZSH_FNDIR%%/Completion/Zsh/_zstyle
497
@dirrm %%ZSH_FNDIR%%/Completion/Zsh
498
%%ZSH_FNDIR%%/Completion/bashcompinit
499
%%ZSH_FNDIR%%/Completion/compaudit
500
%%ZSH_FNDIR%%/Completion/compdump
501
%%ZSH_FNDIR%%/Completion/compinit
502
%%ZSH_FNDIR%%/Completion/compinstall
503
@dirrm %%ZSH_FNDIR%%/Completion
504
%%ZSH_FNDIR%%/Misc/allopt
505
%%ZSH_FNDIR%%/Misc/checkmail
506
%%ZSH_FNDIR%%/Misc/colors
507
%%ZSH_FNDIR%%/Misc/getjobs
508
%%ZSH_FNDIR%%/Misc/harden
509
%%ZSH_FNDIR%%/Misc/is-at-least
510
%%ZSH_FNDIR%%/Misc/mere
511
%%ZSH_FNDIR%%/Misc/nslookup
512
%%ZSH_FNDIR%%/Misc/promptnl
513
%%ZSH_FNDIR%%/Misc/relative
514
%%ZSH_FNDIR%%/Misc/run-help
515
%%ZSH_FNDIR%%/Misc/tetris
516
%%ZSH_FNDIR%%/Misc/zargs
517
%%ZSH_FNDIR%%/Misc/zcalc
518
%%ZSH_FNDIR%%/Misc/zed
519
%%ZSH_FNDIR%%/Misc/zkbd
520
%%ZSH_FNDIR%%/Misc/zmv
521
%%ZSH_FNDIR%%/Misc/zrecompile
522
%%ZSH_FNDIR%%/Misc/zstyle+
523
@dirrm %%ZSH_FNDIR%%/Misc
524
%%ZSH_FNDIR%%/Prompts/prompt_adam1_setup
525
%%ZSH_FNDIR%%/Prompts/prompt_adam2_setup
526
%%ZSH_FNDIR%%/Prompts/prompt_bart_setup
527
%%ZSH_FNDIR%%/Prompts/prompt_bigfade_setup
528
%%ZSH_FNDIR%%/Prompts/prompt_clint_setup
529
%%ZSH_FNDIR%%/Prompts/prompt_elite2_setup
530
%%ZSH_FNDIR%%/Prompts/prompt_elite_setup
531
%%ZSH_FNDIR%%/Prompts/prompt_fade_setup
532
%%ZSH_FNDIR%%/Prompts/prompt_fire_setup
533
%%ZSH_FNDIR%%/Prompts/prompt_off_setup
534
%%ZSH_FNDIR%%/Prompts/prompt_oliver_setup
535
%%ZSH_FNDIR%%/Prompts/prompt_redhat_setup
536
%%ZSH_FNDIR%%/Prompts/prompt_suse_setup
537
%%ZSH_FNDIR%%/Prompts/prompt_walters_setup
538
%%ZSH_FNDIR%%/Prompts/prompt_zefram_setup
539
%%ZSH_FNDIR%%/Prompts/promptinit
540
@dirrm %%ZSH_FNDIR%%/Prompts
541
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_alias
542
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_close
543
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_command
544
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_expect
545
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_fd_handler
546
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_log
547
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_open
548
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_output
549
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_proxy
550
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_read
551
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_rename
552
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_send
553
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_sess
554
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_spam
555
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_talk
556
%%NO_STATIC%%%%ZSH_FNDIR%%/TCP/tcp_wait
557
%%NO_STATIC%%@dirrm %%ZSH_FNDIR%%/TCP
558
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfanon
559
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfautocheck
560
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcd
561
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcd_match
562
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcget
563
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfclose
564
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfcput
565
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfdir
566
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zffcache
567
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfgcp
568
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfget
569
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfget_match
570
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfgoto
571
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfhere
572
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfinit
573
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfls
574
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfmark
575
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfopen
576
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfparams
577
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfpcp
578
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfput
579
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfrglob
580
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfrtime
581
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfsession
582
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfstat
583
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftp_chpwd
584
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftp_progress
585
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftransfer
586
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zftype
587
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfuget
588
%%NO_STATIC%%%%ZSH_FNDIR%%/Zftp/zfuput
589
%%NO_STATIC%%@dirrm %%ZSH_FNDIR%%/Zftp
590
%%ZSH_FNDIR%%/Zle/backward-kill-word-match
591
%%ZSH_FNDIR%%/Zle/backward-word-match
592
%%ZSH_FNDIR%%/Zle/capitalize-word-match
593
%%ZSH_FNDIR%%/Zle/copy-earlier-word
594
%%ZSH_FNDIR%%/Zle/cycle-completion-positions
595
%%ZSH_FNDIR%%/Zle/down-case-word-match
596
%%ZSH_FNDIR%%/Zle/down-line-or-beginning-search
597
%%ZSH_FNDIR%%/Zle/edit-command-line
598
%%ZSH_FNDIR%%/Zle/forward-word-match
599
%%ZSH_FNDIR%%/Zle/history-search-end
600
%%ZSH_FNDIR%%/Zle/incarg
601
%%ZSH_FNDIR%%/Zle/incremental-complete-word
602
%%ZSH_FNDIR%%/Zle/insert-files
603
%%ZSH_FNDIR%%/Zle/kill-word-match
604
%%ZSH_FNDIR%%/Zle/match-words-by-style
605
%%ZSH_FNDIR%%/Zle/narrow-to-region
606
%%ZSH_FNDIR%%/Zle/narrow-to-region-invisible
607
%%ZSH_FNDIR%%/Zle/predict-on
608
%%ZSH_FNDIR%%/Zle/read-from-minibuffer
609
%%ZSH_FNDIR%%/Zle/replace-string
610
%%ZSH_FNDIR%%/Zle/select-word-style
611
%%ZSH_FNDIR%%/Zle/smart-insert-last-word
612
%%ZSH_FNDIR%%/Zle/transpose-words-match
613
%%ZSH_FNDIR%%/Zle/up-case-word-match
614
%%ZSH_FNDIR%%/Zle/up-line-or-beginning-search
615
@dirrm %%ZSH_FNDIR%%/Zle
616
@dirrm %%ZSH_FNDIR%%
617
@dirrm %%DATADIR%%/%%ZSH_VER%%
618
@dirrm %%DATADIR%%

Return to bug 53513