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

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

Return to bug 53512