diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-03-17 08:41:58 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-03-17 08:41:58 +0000 |
commit | 203ad8c8b947ce2a1a25c10c69078f0590e30a26 (patch) | |
tree | cb78afc556cbd8e518b2aae1fe120a35af29d8e4 /www/apache22 | |
parent | 35e7921e09c50341a833d3ce1b5c2270b446272b (diff) | |
download | ports-203ad8c8b947ce2a1a25c10c69078f0590e30a26.tar.gz ports-203ad8c8b947ce2a1a25c10c69078f0590e30a26.zip |
Notes
Diffstat (limited to 'www/apache22')
-rw-r--r-- | www/apache22/Makefile | 219 | ||||
-rw-r--r-- | www/apache22/Makefile.modules | 241 | ||||
-rw-r--r-- | www/apache22/distinfo | 2 | ||||
-rw-r--r-- | www/apache22/files/apache.sh | 17 | ||||
-rw-r--r-- | www/apache22/files/config.layout | 22 | ||||
-rw-r--r-- | www/apache22/files/patch-Makefile.in | 116 | ||||
-rw-r--r-- | www/apache22/files/patch-configure | 39 | ||||
-rw-r--r-- | www/apache22/files/patch-docs:conf:httpd-std.conf.in | 56 | ||||
-rw-r--r-- | www/apache22/files/patch-docs:conf:ssl-std.conf.in | 24 | ||||
-rw-r--r-- | www/apache22/files/patch-server:main.c | 36 | ||||
-rw-r--r-- | www/apache22/files/patch-srclib:apr-util:config.layout | 10 | ||||
-rw-r--r-- | www/apache22/files/patch-srclib:apr:config.layout | 10 | ||||
-rw-r--r-- | www/apache22/files/patch-srclib:apr:threadproc:unix:procsup.c | 18 | ||||
-rw-r--r-- | www/apache22/files/patch-support:apachectl.in | 21 | ||||
-rw-r--r-- | www/apache22/files/patch-support:log_server_status.in | 20 | ||||
-rw-r--r-- | www/apache22/pkg-descr | 6 | ||||
-rw-r--r-- | www/apache22/pkg-install | 35 | ||||
-rw-r--r-- | www/apache22/pkg-plist | 1557 |
18 files changed, 0 insertions, 2449 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile deleted file mode 100644 index 5fbaf2f50a7b..000000000000 --- a/www/apache22/Makefile +++ /dev/null @@ -1,219 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@fallin.lv> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.48 -CATEGORIES= www ipv6 -MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ - http://sheepkiller.nerim.net/ports/${PORTNAME}/:powerlogo -DISTNAME= httpd-${PORTVERSION} -DISTFILES= ${DISTNAME}.tar.gz powerlogo.gif:powerlogo -DIST_SUBDIR= apache2 -EXTRACT_ONLY= ${DISTNAME}.tar.gz - -MAINTAINER?= sheepkiller@cultdeadsheep.org -COMMENT?= Version 2 of the extremely popular Apache http server - -FORBIDDEN= Please use www/apache2 - -LIB_DEPENDS= expat.5:${PORTSDIR}/textproc/expat2 - -LATEST_LINK= apache2 - -CONFLICTS= apache+ipv6-1.* apache+modssl-1.* apache+ssl-1.* apache-1.* apache_fp-1.* \ - caudium-devel-1.* caudium10-1.* caudium12-* \ - ru-apache+mod_ssl-1.* ru-apache-1.* thttpd-2.* - -## Available knobs: -## By default, modules are compiled as dynamically loadable (DSO) modules. -## -## Apache-related -## WITH_MPM: prefork (default) -## worker -## perchild -## HTTP_PORT: default: 80 -## WITH_LDAP: Enable LDAP support (mod_auth_ldap) -## WITHOUT_PROXY: Disable proxy support -## WITH_CUSTOM_PROXY: Let you choose which proxy modules you wish -## WITHOUT_AUTH: Disable auth modules -## WITH_CUSTOM_AUTH: Let you choose which auth modules you wish -## WITHOUT_DAV: Disable DAV support -## IPV6_V6ONLY: Disable IPv4 support -## WITHOUT_SSL: Disable SSL support -## WITH_THREADS: Enable threads support !! USE IT WITH CARE !! -## WITH_CUSTOM_THREADS: Let you choose which threaded modules you want -## WITH_EXPERIMENTAL: Enable Experimental modules -## WITH_DBM: Choose your DBM: bdb (Berkeley DB), gdbm or ndbm (default) -## WITH_BERKELEYDB: Choose your BerkeleyDB version: db2, db3 or db4 (default) -## WITH_STATIC_SUPPORT: Build statically linked support binaries -## WITH_STATIC_APACHE: Build a static version of httpd (implies WITH_STATIC_MODULES) -## WITH_ALL_STATIC_APACHE: All modules statically linked. -## WITH_STATIC_MODULES: List of modules to build modules statics (usefull for slave ports) -## (They must be already enabled (i.e. WITH_MODULES or with default configuration -## use 'make show-modules', to check if they are enabled) -## WITH_EXPERIMENTAL: Build and install experimental modules -## WITH_EXTRA_MODULES: To add addtionnal modules -## WITH_MODULES: List of your own modules -## WITHOUT_MODULES: Disable listed modules -## -## -## Port-related: -## NOPORTDOCS: Do not install documentation -## NO_CGI: Do not instal www/cgi-bin* -## NO_ERROR: Do not instal www/error -## NO_WWWDATA: Do not instal www/data* -## NO_ICONS: Do not instal www/icons* -## NO_WWW: Implies NO_CGI, NO_WWWDATA, NO_ICONS and NO_ERROR -## -## Available make targets: -## show-options: prints this message -## show-modules: prints list of available modules -## -## Examples: -## make WITHOUT_SSL=yes WITH_EXTRA_MODULES="bucketeer case_filter case_filter_in" WITHOUT_PROXY=yes -## make WITH_STATIC_MODULES="ssl rewrite include" WITH_EXPERIMENTAL=yes WITH_CUSTOM_AUTH="auth auth_dbm" -## make WITH_EXPERIMENTAL=yes WITHOUT_MODULES="access speling status" -## make WITH_MODULES="include rewrite auth" -## - -WITH_MPM?= prefork # or worker, perchild -HTTP_PORT?= 80 - -GNU_CONFIGURE= yes -USE_LIBTOOL_VER=13 -USE_PERL5= yes -USE_REINPLACE= yes -CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL5} \ - --with-port=${HTTP_PORT} \ - --with-expat=${LOCALBASE} \ - --libdir=${PREFIX_RELDEST}/lib/apache2 \ - --includedir=${PREFIX_RELDEST}/include/apache2 - -CONFIGURE_ENV= CC="${CC}" CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" CONFIG_SHELL="${SH}" - -DOCSDIR= share/doc/apache2 -PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} -RC_SUB= -e 's,@@PREFIX@@,${PREFIX_RELDEST},g' -MAKE_ENV+= DESTDIR=${DESTDIR} EXPR_COMPAT=yes - -.if defined(NOPORTDOCS) -MAKE_ENV+= NOPORTDOCS=yes -.endif - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -.if !defined(IPV6_V6ONLY) -CONFIGURE_ARGS+= --enable-v4-mapped -.endif - -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -.endif - -.if defined(WITH_LDAP) -USE_LDAP= YES -CONFIGURE_ARGS+= --with-ldap \ - --with-ldap-lib="${LOCALBASE}/lib" \ - --with-ldap-include="${LOCALBASE}/include" -.endif - -.if defined(NO_WWW) -NO_CGI= YES -NO_WWWDATA= YES -NO_ICONS= YES -NO_ERROR= YES -.endif - -.if defined(NO_CGI) -MAKE_ENV+= NO_CGI=yes -PLIST_SUB+= CGI="@comment " -.else -PLIST_SUB+= CGI="" -.endif - -.if defined(NO_ICONS) -MAKE_ENV+= NO_ICONS=yes -PLIST_SUB+= ICONS="@comment " -.else -PLIST_SUB+= ICONS="" -.endif - -.if defined(NO_WWWDATA) -MAKE_ENV+= NO_WWWDATA=yes -PLIST_SUB+= WWWDATA="@comment " -.else -PLIST_SUB+= WWWDATA="" -.endif - -.if defined(NO_ERROR) -MAKE_ENV+= NO_ERROR=yes -PLIST_SUB+= ERROR="@comment " -.else -PLIST_SUB+= ERROR="" -.endif - -.if defined(WITH_STATIC_SUPPORT) -CONFIGURE_ARGS+= --enable-static-support -.endif - -.include <bsd.port.pre.mk> - -.include "${.CURDIR}/Makefile.modules" - -CONFIGURE_ARGS+= --with-mpm=${WITH_MPM:L} ${CONFIGURE_TARGET} - -show-options: - @${EGREP} '^##' ${.CURDIR}/Makefile | ${SED} 's/##//' - -show-modules: - @for module in $(AVAILABLE_MODULES) ; do \ - ${ECHO_MSG} -n "$${module}: ";\ - if ${ECHO_CMD} ${APACHE_MODULES} | ${GREP} -wq $${module} 2> /dev/null ; then \ - ${ECHO_CMD} -n "enabled "; \ - if ${ECHO_CMD} ${WITH_STATIC_MODULES} | ${GREP} -wq $${module} 2> /dev/null ; then \ - ${ECHO_CMD} "(static)" ; \ - else \ - ${ECHO_CMD} "(shared)" ;\ - fi;\ - else\ - ${ECHO_CMD} disabled ;\ - fi;\ - done - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} " To see all available knobs, type make show-options" - @${ECHO_MSG} "" - -post-extract: - @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/powerlogo.gif ${WRKSRC}/docs/icons/freebsd.gif - -post-patch: - @cd ${WRKSRC}/docs/docroot && \ - for f in index.html.*; do (\ - ${REINPLACE_CMD} -e 's,apache_pb,icons/freebsd.gif"\ - ALT="[Powered by FreeBSD]"><IMG SRC="apache_pb2_ani,g' $$f \ - ); done - @${RM} -f ${WRKSRC}/docs/docroot/*.bak - @${SED} ${RC_SUB} ${FILESDIR}/apache.sh >${WRKDIR}/apache2.sh - @${SED} ${RC_SUB} ${FILESDIR}/config.layout >>${WRKSRC}/config.layout - @${RM} -f ${WRKSRC}/docs/manual/index.html.ko.euc-kr - -pre-install: - PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/apache2.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache2.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${WRKDIR}/apache2.sh ${PREFIX}/etc/rc.d/apache2.sh; \ - fi - -.include <bsd.port.post.mk> diff --git a/www/apache22/Makefile.modules b/www/apache22/Makefile.modules deleted file mode 100644 index 6ddb369de951..000000000000 --- a/www/apache22/Makefile.modules +++ /dev/null @@ -1,241 +0,0 @@ -# Makefile.modules -# Author: Clement Laforet <sheepkiller@cultdeadsheep.org> -# -# This file is used to build modules list, DBM dependencies and MPM selection. -# I hope it can easily handle external modules (such as mod_perl) or MPMs, like -# muxmpm. -# -# Note to myself: (to generate PLIST_SUB entries for modules) -# gsed 's/^\(.*\)mod\(.*\)\.so/%%\MOD\U\2%%\L\1mod\2\.so/' pkg-plist > tmp -# mv tmp pkg-plist -# -# $FreeBSD$ -# - -# MPM section: -# << TO BE WRITTEN >> -.if defined (SLAVE_PORT_MPM) -PLIST_SUB+= PREFORK="@comment " WORKER="@comment " -PKGNAMESUFFIX= -${SLAVE_PORT_MPM} -.else -. if ${WITH_MPM} != "prefork" -PKGNAMESUFFIX= -${WITH_MPM:L} -WITH_THREADS= yes -. if ${WITH_MPM:L} == "worker" -PLIST_SUB+= PREFORK="@comment " WORKER="" -. elif ${WITH_MPM:L} == "perchild" -PLIST_SUB+= PREFORK="@comment " WORKER="@comment " -. else -BROKEN= "Unknown MPM: ${WITH_MPM}" -. endif -. else -PLIST_SUB+= PREFORK="@comment " WORKER="@comment " -. endif -.else -PLIST_SUB+= PREFORK="@comment " WORKER="@comment " -.endif - -# xDBM section -# -.if !defined(WITH_DBM) && defined(WITH_BERKELEYDB) -WITH_DBM=db -.endif - -.if defined(WITH_DBM) -. if ${WITH_DBM:L} == "sdbm" -CONFIGURE_ARGS+= --with-dbm=sdbm -. elif ${WITH_DBM:L} == "gdbm" -LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm -CONFIGURE_ARGS+= --with-gdbm=${LOCALBASE} -. elif ${WITH_DBM:L} == "db" || defined(WITH_BERKELEYDB) -. if !defined(WITH_BERKELEYDB) -LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 -CONFIGURE_ARGS+= --with-dbm=db4 \ - --with-berkeley-db=${LOCALBASE} -. elif ${WITH_BERKELEYDB} == "db2" -LIB_DEPENDS= db2:${PORTSDIR}/databases/db2 -CONFIGURE_ARGS+= --with-dbm=db2 \ - --with-berkeley-db=${LOCALBASE} -. elif ${WITH_BERKELEYDB} == "db3" -LIB_DEPENDS= db2:${PORTSDIR}/databases/db3 -CONFIGURE_ARGS+= --with-dbm=db3 \ - --with-berkeley-db=${LOCALBASE} -. elif ${WITH_BERKELEYDB} == "db4" -LIB_DEPENDS= db4:${PORTSDIR}/databases/db4 -CONFIGURE_ARGS+= --with-dbm=db4 \ - --with-berkeley-db=${LOCALBASE} -. else -BROKEN= "Unknown Berkeley DB version" -. endif -. else -BROKEN= "Unknown DBM" -. endif -.else -CONFIGURE_ARGS+= --with-dbm=sdbm -.endif - -# Modules section: -# How does it works ? -# << TO BE WRITTEN >> -# All supported modules -AUTH_MODULES= auth auth_anon auth_dbm auth_digest -DAV_MODULES= dav dav_fs -EXPERIMENTAL_MODULES= bucketeer case_filter case_filter_in ext_filter charset_lite \ - optional_hook_export optional_hook_import \ - optional_fn_import optional_fn_export -LDAP_MODULES= ldap auth_ldap -MISC_MODULES= access actions alias asis autoindex cache cern_meta \ - cgi cgid charset_lite deflate dir disk_cache env expires \ - file_cache headers imap include info log_config logio mime \ - mime_magic negotiation rewrite setenvif speling status \ - unique_id userdir usertrack vhost_alias -PROXY_MODULES= proxy proxy_connect proxy_ftp proxy_http -SSL_MODULE= ssl -SUEXEC_MODULES= suexec -THREADS_MODULES= cache file_cache disk_cache mem_cache - -# Work in progress -SLAVE_PORT_MODULES?= # If you are porting a slave port for apache2 please define SLAVE_PORT_MODULES - -DEFAULT_MODULES= ${AUTH_MODULES} ${DAV_MODULES} ${MISC_MODULES} \ - ${PROXY_MODULES} ${SLAVE_PORT_MODULES} - -AVAILABLE_MODULES= ${DEFAULT_MODULES} ${EXPERIMENTAL_MODULES} ${LDAP_MODULES} ${THREADS_MODULES} \ - ${SSL_MODULE} ${SUEXEC_MODULES} - -# Setting "@comment " as default. -.for module in ${AVAILABLE_MODULES} -${module}_PLIST_SUB= "@comment " -.endfor - -# Configure - -.if defined(WITH_MODULES) && ( defined(WITHOUT_MODULES) || defined(WITH_EXTRA_MODULES)) -BROKEN= "WITH_MODULES and WITHOUT_MODULES are mutually exclusive" -.endif - -.if defined(WITHOUT_AUTH) || defined(WITH_CUSTOM_AUTH) || \ - defined(WITHOUT_PROXY) || defined(WITH_CUSTOM_PROXY) || \ - defined(WITHOUT_DAV) -CUSTOM= YES -.endif - -.if !defined(WITH_STATIC_APACHE) -# FYI -#DYNAMIC_MODULES= so -CONFIGURE_ARGS+= --enable-so -.else -CONFIGURE_ARGS+= --disable-so -WITH_ALL_STATIC_MODULES= YES -.endif - -### This part is not processed if WITH_MODULES is defined -.if defined(WITH_MODULES) -_APACHE_MODULES+= ${WITH_MODULES} -.elif !defined(CUSTOM) -_APACHE_MODULES+= ${DEFAULT_MODULES} -.else -. if defined(WITH_CUSTOM_AUTH) -_APACHE_MODULES+= ${WITH_CUSTOM_AUTH} -. elif !defined(WITHOUT_AUTH) -_APACHE_MODULES+= ${AUTH_MODULE} -. endif -. if defined(WITH_CUSTOM_PROXY) -_APACHE_MODULES+= ${WITH_CUSTOM_PROXY} -. elif !defined(WITHOUT_PROXY) -_APACHE_MODULES+= ${PROXY_MODULES} -. endif -. if !defined(WITHOUT_DAV) -_APACHE_MODULES+= dav dav_fs -. endif -_APACHE_MODULES+= ${MISC_MODULES} ${SLAVE_PORT_MODULES} -.endif # end of module selection - -.if defined (WITH_LDAP) -_APACHE_MODULES+= ${LDAP_MODULES} -.endif - -.if defined(WITH_THREADS) -CONFIGURE_ARGS+= --enable-threads -CFLAGS+= -DFREEBSD_THREAD_HACK -. if !defined(WITH_CUSTOM_THREADS) -_APACHE_MODULES+= ${THREAD_MODULES} -. else -_APACHE_MODULES+= ${WITH_CUSTOM_THREADS} -. endif -.endif # endif of module selection - -.if !defined(WITHOUT_SSL) -_APACHE_MODULES+= ${SSL_MODULE} -CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} -RC_SUB+= -e 's,@@SSL@@,ssl,g' -.else -RC_SUB+= -e 's,@@SSL@@,,g' -.endif - -.if defined(WITH_SUEXEC) -SUEXEC_DOCROOT?= ${PREFIX_RELDEST}/www/data -SUEXEC_USERDIR?= public_html -SUEXEC_SAFEPATH?= ${PREFIX_RELDEST}/bin:${LOCALBASE}/bin:/usr/bin:/bin -_APACHE_MODULES+= ${SUEXEC_MODULES} -CONFIGURE_ARGS+= --with-suexec-caller=www \ - --with-suexec-uidmin=1000 --with-suexec-gidmin=1000 \ - --with-suexec-userdir="${SUEXEC_USERDIR}" \ - --with-suexec-docroot="${SUEXEC_DOCROOT}" \ - --with-suexec-safepath="${SUEXEC_SAFEPATH}" \ - --with-suexec-logfile="/var/log/httpd-suexec.log" \ - --with-suexec-bin="${PREFIX_RELDEST}/sbin/suexec" -.endif -.if defined(WITH_EXTRA_MODULES) -_APACHE_MODULES+= ${WITH_EXTRA_MODULES} -.endif - -.if defined(WITH_EXPERIMENTAL) -_APACHE_MODULES+= ${EXPERIMENTAL_MODULES} -.endif - -.if !defined(WITHOUT_MODULES) -APACHE_MODULES= ${_APACHE_MODULES} -.else -APACHE_MODULES!= \ - for module in ${_APACHE_MODULES}; do \ - ${ECHO_CMD} ${WITHOUT_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \ - ${ECHO_CMD} $${module}; \ - done -.endif - -.if defined(WITH_STATIC_MODULES) -_CONFIGURE_ARGS!= \ - for module in ${APACHE_MODULES} ; do \ - ${ECHO_CMD} ${WITH_STATIC_MODULES} | \ - ${GREP} -wq $${module} 2> /dev/null ; \ - if [ "$${?}" = "0" ] ; then \ - ${ECHO_CMD} "--enable-$${module}"; \ - else \ - ${ECHO_CMD} "--enable-$${module}=shared"; \ - fi; done -CONFIGURE_ARGS+= ${_CONFIGURE_ARGS} -.elif defined(WITH_STATIC_APACHE) || defined(WITH_ALL_STATIC_MODULES) -CONFIGURE_ARGS+= --enable-modules="${APACHE_MODULES}" -.else -CONFIGURE_ARGS+= --enable-mods-shared="${APACHE_MODULES}" -.endif - -.if defined(WITH_STATIC_MODULES) -_SHARED_MODULES!= \ - for module in ${APACHE_MODULES} ; do \ - ${ECHO_CMD} ${WITH_STATIC_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \ - ${ECHO_CMD} $${module}; \ - done -SHARED_MODULES= ${_SHARED_MODULES} -.elif !defined(WITH_ALL_STATIC_MODULES) -SHARED_MODULES= ${APACHE_MODULES} -.endif - -. for module in ${SHARED_MODULES} -${module}_PLIST_SUB= "" -. endfor - -.for module in ${AVAILABLE_MODULES} -PLIST_SUB+= MOD_${module:U}=${${module}_PLIST_SUB} -.endfor diff --git a/www/apache22/distinfo b/www/apache22/distinfo deleted file mode 100644 index 7a049061990b..000000000000 --- a/www/apache22/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (apache2/httpd-2.0.48.tar.gz) = 466c63bb71b710d20a5c353df8c1a19c -MD5 (apache2/powerlogo.gif) = 0f106073b3c7844cf22d4df126b27c62 diff --git a/www/apache22/files/apache.sh b/www/apache22/files/apache.sh deleted file mode 100644 index ab1a71895d0c..000000000000 --- a/www/apache22/files/apache.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -PREFIX=@@PREFIX@@ - -case "$1" in -start) - [ "@@SSL@@" = "ssl" -a -f "$PREFIX/etc/apache2/ssl.crt/server.crt" ] && SSL=ssl - [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start${SSL} > /dev/null && echo -n ' apache2' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache2' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/apache22/files/config.layout b/www/apache22/files/config.layout deleted file mode 100644 index e1f6e37ef756..000000000000 --- a/www/apache22/files/config.layout +++ /dev/null @@ -1,22 +0,0 @@ -<Layout FreeBSD> - prefix: /usr/local - exec_prefix: ${prefix} - bindir: ${exec_prefix}/bin - sbindir: ${exec_prefix}/sbin - libexecdir: ${exec_prefix}/libexec/apache2 - mandir: ${prefix}/man - sysconfdir: ${prefix}/etc/apache2 - datadir: ${prefix}/www - installbuilddir: ${prefix}/share/apache2/build - errordir: ${datadir}/error - iconsdir: ${datadir}/icons - htdocsdir: ${datadir}/data - manualdir: ${prefix}/share/doc/apache2 - cgidir: ${datadir}/cgi-bin - includedir: ${prefix}/include/apache2 - localstatedir: /var - runtimedir: ${localstatedir}/run - logfiledir: ${localstatedir}/log - proxycachedir: ${datadir}/proxy - infodir: ${exec_prefix}/share/info -</Layout> diff --git a/www/apache22/files/patch-Makefile.in b/www/apache22/files/patch-Makefile.in deleted file mode 100644 index 59c5532562bd..000000000000 --- a/www/apache22/files/patch-Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ ---- Makefile.in.orig Tue Jul 29 15:40:09 2003 -+++ Makefile.in Tue Sep 30 00:31:14 2003 -@@ -37,10 +37,13 @@ - if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \ - $(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \ - fi; \ -+ cp -f $$i $$i-dist; \ -+ $(INSTALL_DATA) $$i-dist $(DESTDIR)$(sysconfdir); \ - done; \ - for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \ - cd $$j ; \ - for i in *-std*.conf; do \ -+ [ -f `echo "$$i"|sed 's,\.in$$,_nonex,g'` ] || continue; \ - ( \ - n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ - if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \ -@@ -58,6 +61,9 @@ - if test "x$$j" = "xssl"; then \ - echo "<IfDefine SSL>"; \ - fi; \ -+ if [ `echo "$$j" | egrep 'cgid|cache|dav|digest|proxy'` ]; then \ -+ echo -n "#"; \ -+ fi; \ - if test $$j != "^EOL^"; then \ - echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ - fi; \ -@@ -109,45 +115,41 @@ - doxygen $(top_srcdir)/docs/doxygen.conf - - install-htdocs: -- -@if [ -d $(DESTDIR)$(htdocsdir) ]; then \ -- echo "[PRESERVING EXISTING HTDOCS SUBDIR: $(DESTDIR)$(htdocsdir)]"; \ -- else \ -- echo Installing HTML documents ; \ -- $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir) ; \ -- test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir)) ; \ -- cd $(DESTDIR)$(htdocsdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ -- fi -+.if !defined(NO_WWWDATA) -+ @echo Installing HTML documents -+ @test -d $(DESTDIR)$(htdocsdir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir)-dist -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir)-dist) -+ @test -e $(DESTDIR)$(htdocsdir) || ln -sf $(DESTDIR)$(htdocsdir)-dist $(DESTDIR)$(htdocsdir) -+ -@test "x$(htdocsdir)" != "x" && cd $(DESTDIR)$(htdocsdir)-dist && find . -name "CVS" -print | xargs rm -rf -+.endif - - install-error: -- -@if [ -d $(DESTDIR)$(errordir) ]; then \ -- echo "[PRESERVING EXISTING ERROR SUBDIR: $(DESTDIR)$(errordir)]"; \ -- else \ -- echo Installing error documents ; \ -- $(MKINSTALLDIRS) $(DESTDIR)$(errordir) ; \ -- cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir) ; \ -- test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ -- fi -+.if !defined(NO_ERROR) -+ @echo Installing error documents -+ @test -d $(DESTDIR)$(errordir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(errordir)-dist -+ cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir)-dist -+ -@test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir)-dist && find . -name "CVS" -print | xargs rm -rf -+ @test -e $(DESTDIR)$(errordir) || ln -sf $(DESTDIR)$(errordir)-dist $(DESTDIR)$(errordir) -+.endif - - install-icons: -- -@if [ -d $(DESTDIR)$(iconsdir) ]; then \ -- echo "[PRESERVING EXISTING ICONS SUBDIR: $(DESTDIR)$(iconsdir)]"; \ -- else \ -- echo Installing icons ; \ -- $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir) ; \ -- cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir) ; \ -- test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ -- fi -+.if !defined(NO_ICONS) -+ @echo Installing icons -+ @test -d $(DESTDIR)$(iconsdir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir)-dist -+ cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir)-dist -+ -@test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir)-dist && find . -name "CVS" -print | xargs rm -rf -+ @test -e $(DESTDIR)$(iconsdir) || ln -sf $(DESTDIR)$(iconsdir)-dist $(DESTDIR)$(iconsdir) -+.endif - - install-cgi: -- -@if [ -d $(DESTDIR)$(cgidir) ];then \ -- echo "[PRESERVING EXISTING CGI SUBDIR: $(DESTDIR)$(cgidir)]"; \ -- else \ -- echo Installing CGIs ; \ -- $(MKINSTALLDIRS) $(DESTDIR)$(cgidir) ; \ -- cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir) ; \ -- test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ -- fi -- -+.if !defined(NO_CGI) -+ @echo Installing CGIs -+ @test -d $(DESTDIR)$(cgidir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(cgidir)-dist -+ cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir)-dist -+ -@test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir)-dist && find . -name "CVS" -print | xargs rm -rf -+ @test -e $(DESTDIR)$(cgidir) || ln -sf $(DESTDIR)$(cgidir)-dist $(DESTDIR)$(cgidir) -+.endif -+ - install-other: - @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) - @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) -@@ -190,11 +192,13 @@ - @test -d $(DESTDIR)$(mandir) || $(MKINSTALLDIRS) $(DESTDIR)$(mandir) - @test -d $(DESTDIR)$(mandir)/man1 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 - @test -d $(DESTDIR)$(mandir)/man8 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man8 -- @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) - @cp -p $(top_srcdir)/docs/man/*.1 $(DESTDIR)$(mandir)/man1 - @cp -p $(top_srcdir)/docs/man/*.8 $(DESTDIR)$(mandir)/man8 -+.if !defined(NOPORTDOCS) -+ @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) - @(cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir)) - @(cd $(DESTDIR)$(manualdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null ) || true -+.endif - - install-suexec: - @if test -f $(builddir)/support/suexec; then \ diff --git a/www/apache22/files/patch-configure b/www/apache22/files/patch-configure deleted file mode 100644 index d5e81693c4c9..000000000000 --- a/www/apache22/files/patch-configure +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Wed May 28 14:11:27 2003 -+++ configure Fri May 30 07:47:42 2003 -@@ -1513,7 +1513,7 @@ - $srcdir/config.layout > $pldconf - layout_name=$LAYOUT - . $pldconf -- rm $pldconf -+ rm -f $pldconf - for var in prefix exec_prefix bindir sbindir libexecdir mandir \ - sysconfdir datadir errordir iconsdir htdocsdir cgidir \ - includedir localstatedir runtimedir logfiledir libdir \ -@@ -2627,7 +2627,7 @@ - done - - -- if eval $SHELL $ac_abs_srcdir/configure $apr_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir $apache_apr_flags --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir --datadir=$datadir --with-installbuilddir=$installbuilddir -+ if eval $SHELL $ac_abs_srcdir/configure $apr_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir $apache_apr_flags --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$libdir --datadir=$datadir --with-installbuilddir=$installbuilddir - then : - echo "srclib/apr configured properly" - else -@@ -2928,7 +2928,7 @@ - done - - -- if eval $SHELL $ac_abs_srcdir/configure $apr_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --with-apr=../apr --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir -+ if eval $SHELL $ac_abs_srcdir/configure $apr_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --with-apr=../apr --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$libdir - then : - echo "srclib/apr-util configured properly" - else -@@ -15719,6 +15719,9 @@ - - cat >>confdefs.h <<_ACEOF - #define SERVER_CONFIG_FILE "${rel_sysconfdir}/${progname}.conf" -+#define DEFAULT_ERRORLOG "${rel_logfiledir}/httpd-error.log" -+#define AP_TYPES_CONFIG_FILE "${rel_sysconfdir}/mime.types" -+#define DOCUMENT_LOCATION "${rel_htdocsdir}" - _ACEOF - - diff --git a/www/apache22/files/patch-docs:conf:httpd-std.conf.in b/www/apache22/files/patch-docs:conf:httpd-std.conf.in deleted file mode 100644 index d87b8bdcc679..000000000000 --- a/www/apache22/files/patch-docs:conf:httpd-std.conf.in +++ /dev/null @@ -1,56 +0,0 @@ ---- docs/conf/httpd-std.conf.in.orig Wed Apr 24 07:24:35 2002 -+++ docs/conf/httpd-std.conf.in Tue May 7 19:29:28 2002 -@@ -68,7 +68,7 @@ - # - <IfModule !mpm_netware.c> - <IfModule !perchild.c> --#ScoreBoardFile @rel_logfiledir@/apache_runtime_status -+#ScoreBoardFile @rel_runtimedir@/apache_runtime_status - </IfModule> - </IfModule> - -@@ -263,8 +263,8 @@ - # when the value of (unsigned)Group is above 60000; - # don't use Group #-1 on these systems! - # --User nobody --Group #-1 -+User www -+Group www - </IfModule> - </IfModule> - -@@ -450,7 +450,7 @@ - # logged here. If you *do* define an error logfile for a <VirtualHost> - # container, that host's errors will be logged there and not here. - # --ErrorLog @rel_logfiledir@/error_log -+ErrorLog @rel_logfiledir@/httpd-error.log - - # - # LogLevel: Control the number of messages logged to the error_log. -@@ -475,20 +475,20 @@ - # define per-<VirtualHost> access logfiles, transactions will be - # logged therein and *not* in this file. - # --CustomLog @rel_logfiledir@/access_log common -+#CustomLog @rel_logfiledir@/httpd-access.log common - - # - # If you would like to have agent and referer logfiles, uncomment the - # following directives. - # --#CustomLog @rel_logfiledir@/referer_log referer --#CustomLog @rel_logfiledir@/agent_log agent -+#CustomLog @rel_logfiledir@/httpd-referer.log referer -+#CustomLog @rel_logfiledir@/httpd-agent.log agent - - # - # If you prefer a single logfile with access, agent, and referer information - # (Combined Logfile Format) you can use the following directive. - # --#CustomLog @rel_logfiledir@/access_log combined -+CustomLog @rel_logfiledir@/httpd-access.log combined - - # - # Optionally add a line containing the server version and virtual host diff --git a/www/apache22/files/patch-docs:conf:ssl-std.conf.in b/www/apache22/files/patch-docs:conf:ssl-std.conf.in deleted file mode 100644 index cf0bbeab218d..000000000000 --- a/www/apache22/files/patch-docs:conf:ssl-std.conf.in +++ /dev/null @@ -1,24 +0,0 @@ -$FreeBSD$ - ---- docs/conf/ssl-std.conf.in.orig Mon Oct 13 16:14:10 2003 -+++ docs/conf/ssl-std.conf.in Mon Oct 13 16:15:17 2003 -@@ -88,8 +88,8 @@ - DocumentRoot "@exp_htdocsdir@" - ServerName www.example.com:443 - ServerAdmin you@example.com --ErrorLog @exp_logfiledir@/error_log --TransferLog @exp_logfiledir@/access_log -+ErrorLog @exp_logfiledir@/httpd-error.log -+TransferLog @exp_logfiledir@/httpd-access.log - - # SSL Engine Switch: - # Enable/Disable SSL for this virtual host. -@@ -240,7 +240,7 @@ - # Per-Server Logging: - # The home of a custom SSL log file. Use this when you want a - # compact non-error SSL logfile on a virtual host basis. --CustomLog @exp_logfiledir@/ssl_request_log \ -+CustomLog @exp_logfiledir@/httpd-ssl_request.log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" - - </VirtualHost> diff --git a/www/apache22/files/patch-server:main.c b/www/apache22/files/patch-server:main.c deleted file mode 100644 index d297d4425fdb..000000000000 --- a/www/apache22/files/patch-server:main.c +++ /dev/null @@ -1,36 +0,0 @@ ---- server/main.c.orig Thu Jun 13 04:34:56 2002 -+++ server/main.c Sun Jul 21 08:54:09 2002 -@@ -78,6 +78,11 @@ - #include "ap_mpm.h" - #include "mpm_common.h" - -+#ifdef FREEBSD_THREAD_HACK -+#include <unistd.h> -+AP_DECLARE(int) ap_exists_config_define(const char *name); -+#endif -+ - /* WARNING: Win32 binds http_main.c dynamically to the server. Please place - * extern functions and global data in another appropriate module. - * -@@ -558,6 +563,21 @@ - destroy_and_exit_process(process, 1); - } - -+#ifdef FREEBSD_THREAD_HACK -+ { -+ int r; -+ -+ if (! ap_exists_config_define("NO_DETACH")) { -+ if ((r = fork()) > 0) -+ return 0; -+ if (r == -1) { -+ perror("fork"); -+ return 0; -+ } -+ setsid(); -+ } -+ } -+#endif - ap_process_config_tree(server_conf, ap_conftree, process->pconf, ptemp); - ap_fixup_virtual_hosts(pconf, server_conf); - ap_fini_vhost_config(pconf, server_conf); diff --git a/www/apache22/files/patch-srclib:apr-util:config.layout b/www/apache22/files/patch-srclib:apr-util:config.layout deleted file mode 100644 index 222e91d975bc..000000000000 --- a/www/apache22/files/patch-srclib:apr-util:config.layout +++ /dev/null @@ -1,10 +0,0 @@ ---- srclib/apr-util/config.layout.orig Tue Jan 7 13:13:09 2003 -+++ srclib/apr-util/config.layout Tue Apr 1 18:36:16 2003 -@@ -229,3 +229,7 @@ - infodir: ${exec_prefix}/share/info - libsuffix -${APRUTIL_MAJOR_VERSION} - </Layout> -+ -+<Layout FreeBSD> -+ libsuffix: -+</Layout> diff --git a/www/apache22/files/patch-srclib:apr:config.layout b/www/apache22/files/patch-srclib:apr:config.layout deleted file mode 100644 index 5c52779635fc..000000000000 --- a/www/apache22/files/patch-srclib:apr:config.layout +++ /dev/null @@ -1,10 +0,0 @@ ---- srclib/apr/config.layout.orig Tue Jan 7 13:06:50 2003 -+++ srclib/apr/config.layout Tue Apr 1 18:36:51 2003 -@@ -229,3 +229,7 @@ - infodir: ${exec_prefix}/share/info - libsuffix: -${APR_MAJOR_VERSION} - </Layout> -+ -+<Layout FreeBSD> -+ libsuffix: -+</Layout> diff --git a/www/apache22/files/patch-srclib:apr:threadproc:unix:procsup.c b/www/apache22/files/patch-srclib:apr:threadproc:unix:procsup.c deleted file mode 100644 index 13c663af7bd4..000000000000 --- a/www/apache22/files/patch-srclib:apr:threadproc:unix:procsup.c +++ /dev/null @@ -1,18 +0,0 @@ ---- srclib/apr/threadproc/unix/procsup.c.orig Mon Apr 8 22:08:18 2002 -+++ srclib/apr/threadproc/unix/procsup.c Sun Jul 21 08:45:44 2002 -@@ -59,6 +59,7 @@ - int x; - - chdir("/"); -+#ifndef FREEBSD_THREAD_HACK - #if !defined(MPE) && !defined(OS2) && !defined(TPF) && !defined(BEOS) - /* Don't detach for MPE because child processes can't survive the death of - * the parent. */ -@@ -89,6 +90,7 @@ - if (setpgid(0, 0) == -1) { - return errno; - } -+#endif - #endif - - /* close out the standard file descriptors */ diff --git a/www/apache22/files/patch-support:apachectl.in b/www/apache22/files/patch-support:apachectl.in deleted file mode 100644 index 57d2af876b8f..000000000000 --- a/www/apache22/files/patch-support:apachectl.in +++ /dev/null @@ -1,21 +0,0 @@ ---- support/apachectl.in.orig Mon May 27 20:46:01 2002 -+++ support/apachectl.in Thu Jul 11 21:12:36 2002 -@@ -31,8 +31,8 @@ - HTTPD='@exp_sbindir@/@progname@' - # - # pick up any necessary environment variables --if test -f @exp_bindir@/envvars; then -- . @exp_bindir@/envvars -+if test -f @exp_sbindir@/envvars; then -+ . @exp_sbindir@/envvars - fi - # - # a command that outputs a formatted text version of the HTML at the -@@ -46,6 +46,7 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| -+eval `limits -e -C daemon` >/dev/null 2>&1 - - ERROR=0 - if [ "x$ARGV" = "x" ] ; then diff --git a/www/apache22/files/patch-support:log_server_status.in b/www/apache22/files/patch-support:log_server_status.in deleted file mode 100644 index 136bafb9ff1a..000000000000 --- a/www/apache22/files/patch-support:log_server_status.in +++ /dev/null @@ -1,20 +0,0 @@ ---- support/log_server_status.in.orig Tue Jun 18 23:21:53 2002 -+++ support/log_server_status.in Tue Jun 18 23:23:08 2002 -@@ -63,7 +63,7 @@ - # - require 'sys/socket.ph'; - --$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" -+$wherelog = "@logfiledir@/httpd-status-"; # Logs will be like "/var/log/httpd-status-19960312.log" - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server - $request = "/status/?auto"; # Request to send -@@ -96,7 +96,7 @@ - chomp($date); - ($day,$time)=split(/:/,$date); - $res=&tcp_connect($server,$port); -- open(OUT,">>$wherelog$day"); -+ open(OUT,">>$wherelog$day.log"); - if ($res) { - print OUT "$time:-1:-1:-1:-1:$res\n"; - exit 1; diff --git a/www/apache22/pkg-descr b/www/apache22/pkg-descr deleted file mode 100644 index edb36c918c7c..000000000000 --- a/www/apache22/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Apache is an HTTP server designed as a plug-in replacement for the NCSA -server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and -includes many frequently requested new features, and has an API which -allows it to be extended to meet users' needs more easily. - -WWW: http://www.apache.org/ diff --git a/www/apache22/pkg-install b/www/apache22/pkg-install deleted file mode 100644 index 3bb99133ae49..000000000000 --- a/www/apache22/pkg-install +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/apache22/pkg-plist b/www/apache22/pkg-plist deleted file mode 100644 index 6323eeb37395..000000000000 --- a/www/apache22/pkg-plist +++ /dev/null @@ -1,1557 +0,0 @@ -@comment $FreeBSD$ -@unexec if cmp -s %D/etc/apache2/highperformance.conf %D/etc/apache2/highperformance-std.conf; then rm -f %D/etc/apache2/highperformance.conf; fi -etc/apache2/highperformance-std.conf -@exec [ -f %B/highperformance.conf ] || cp %B/%f %B/highperformance.conf -@unexec if cmp -s %D/etc/apache2/httpd.conf %D/etc/apache2/httpd-std.conf; then rm -f %D/etc/apache2/httpd.conf; fi -etc/apache2/httpd-std.conf -@exec [ -f %B/httpd.conf ] || cp %B/%f %B/httpd.conf -@unexec if cmp -s %D/etc/apache2/magic %D/etc/apache2/magic-dist; then rm -f %D/etc/apache2/magic; fi -etc/apache2/magic-dist -@exec [ -f %B/magic ] || cp %B/%f %B/magic -@unexec if cmp -s %D/etc/apache2/mime.types %D/etc/apache2/mime.types-dist; then rm -f %D/etc/apache2/mime.types; fi -etc/apache2/mime.types-dist -@exec [ -f %B/mime.types ] || cp %B/%f %B/mime.types -@unexec if cmp -s %D/etc/apache2/ssl.conf %D/etc/apache2/ssl-std.conf; then rm -f %D/etc/apache2/ssl.conf; fi -etc/apache2/ssl-std.conf -@exec [ -f %B/ssl.conf ] || cp %B/%f %B/ssl.conf -etc/rc.d/apache2.sh -include/apache2/ap_compat.h -include/apache2/ap_config.h -include/apache2/ap_config_auto.h -include/apache2/ap_config_layout.h -include/apache2/ap_listen.h -include/apache2/ap_mmn.h -include/apache2/ap_mpm.h -include/apache2/ap_provider.h -include/apache2/ap_regkey.h -include/apache2/ap_release.h -include/apache2/apr.h -include/apache2/apr_allocator.h -include/apache2/apr_anylock.h -include/apache2/apr_atomic.h -include/apache2/apr_base64.h -include/apache2/apr_buckets.h -include/apache2/apr_compat.h -include/apache2/apr_date.h -include/apache2/apr_dbm.h -include/apache2/apr_dso.h -include/apache2/apr_env.h -include/apache2/apr_errno.h -include/apache2/apr_file_info.h -include/apache2/apr_file_io.h -include/apache2/apr_fnmatch.h -include/apache2/apr_general.h -include/apache2/apr_getopt.h -include/apache2/apr_global_mutex.h -include/apache2/apr_hash.h -include/apache2/apr_hooks.h -include/apache2/apr_inherit.h -include/apache2/apr_ldap.h -include/apache2/apr_ldap_url.h -include/apache2/apr_lib.h -include/apache2/apr_md4.h -include/apache2/apr_md5.h -include/apache2/apr_mmap.h -include/apache2/apr_network_io.h -include/apache2/apr_optional.h -include/apache2/apr_optional_hooks.h -include/apache2/apr_poll.h -include/apache2/apr_pools.h -include/apache2/apr_portable.h -include/apache2/apr_proc_mutex.h -include/apache2/apr_queue.h -include/apache2/apr_reslist.h -include/apache2/apr_ring.h -include/apache2/apr_rmm.h -include/apache2/apr_sdbm.h -include/apache2/apr_sha1.h -include/apache2/apr_shm.h -include/apache2/apr_signal.h -include/apache2/apr_strings.h -include/apache2/apr_strmatch.h -include/apache2/apr_support.h -include/apache2/apr_tables.h -include/apache2/apr_thread_cond.h -include/apache2/apr_thread_mutex.h -include/apache2/apr_thread_proc.h -include/apache2/apr_thread_rwlock.h -include/apache2/apr_time.h -include/apache2/apr_uri.h -include/apache2/apr_user.h -include/apache2/apr_uuid.h -include/apache2/apr_version.h -include/apache2/apr_want.h -include/apache2/apr_xlate.h -include/apache2/apr_xml.h -include/apache2/apu.h -include/apache2/apu_compat.h -include/apache2/apu_version.h -include/apache2/apu_want.h -%%WORKER%%include/apache2/fdqueue.h -include/apache2/http_config.h -include/apache2/http_connection.h -include/apache2/http_core.h -include/apache2/http_log.h -include/apache2/http_main.h -include/apache2/http_protocol.h -include/apache2/http_request.h -include/apache2/http_vhost.h -include/apache2/httpd.h -include/apache2/mod_cgi.h -include/apache2/mod_core.h -include/apache2/mod_dav.h -include/apache2/mod_include.h -include/apache2/mod_log_config.h -include/apache2/mod_proxy.h -include/apache2/mod_ssl.h -include/apache2/mpm.h -include/apache2/mpm_common.h -include/apache2/mpm_default.h -include/apache2/os.h -include/apache2/pcre.h -include/apache2/pcreposix.h -%%WORKER%%include/apache2/pod.h -include/apache2/rfc1413.h -include/apache2/scoreboard.h -include/apache2/ssl_expr.h -include/apache2/ssl_expr_parse.h -include/apache2/ssl_toolkit_compat.h -include/apache2/ssl_util_ssl.h -include/apache2/ssl_util_table.h -include/apache2/unixd.h -include/apache2/util_cfgtree.h -include/apache2/util_charset.h -include/apache2/util_ebcdic.h -include/apache2/util_filter.h -include/apache2/util_ldap.h -include/apache2/util_md5.h -include/apache2/util_script.h -include/apache2/util_time.h -include/apache2/util_xml.h -lib/apache2/apr-config -lib/apache2/apr.exp -lib/apache2/aprutil.exp -lib/apache2/apu-config -lib/apache2/libapr-0.a -lib/apache2/libapr-0.la -lib/apache2/libapr-0.so -lib/apache2/libapr-0.so.9 -lib/apache2/libaprutil-0.a -lib/apache2/libaprutil-0.la -lib/apache2/libaprutil-0.so -lib/apache2/libaprutil-0.so.9 -libexec/apache2/httpd.exp -%%MOD_ACCESS%%libexec/apache2/mod_access.so -%%MOD_ACTIONS%%libexec/apache2/mod_actions.so -%%MOD_ALIAS%%libexec/apache2/mod_alias.so -%%MOD_ASIS%%libexec/apache2/mod_asis.so -%%MOD_AUTH%%libexec/apache2/mod_auth.so -%%MOD_AUTH_ANON%%libexec/apache2/mod_auth_anon.so -%%MOD_AUTH_DBM%%libexec/apache2/mod_auth_dbm.so -%%MOD_AUTH_DIGEST%%libexec/apache2/mod_auth_digest.so -%%MOD_AUTH_LDAP%%libexec/apache2/mod_auth_ldap.so -%%MOD_AUTOINDEX%%libexec/apache2/mod_autoindex.so -%%MOD_BUCKETEER%%libexec/apache2/mod_bucketeer.so -%%MOD_CACHE%%libexec/apache2/mod_cache.so -%%MOD_CASE_FILTER%%libexec/apache2/mod_case_filter.so -%%MOD_CASE_FILTER_IN%%libexec/apache2/mod_case_filter_in.so -%%MOD_CERN_META%%libexec/apache2/mod_cern_meta.so -%%MOD_CGI%%libexec/apache2/mod_cgi.so -%%MOD_CGID%%libexec/apache2/mod_cgid.so -%%MOD_CHARSET_LITE%%libexec/apache2/mod_charset_lite.so -%%MOD_DAV%%libexec/apache2/mod_dav.so -%%MOD_DAV_FS%%libexec/apache2/mod_dav_fs.so -%%MOD_DEFLATE%%libexec/apache2/mod_deflate.so -%%MOD_DIR%%libexec/apache2/mod_dir.so -%%MOD_DISK_CACHE%%libexec/apache2/mod_disk_cache.so -%%MOD_ENV%%libexec/apache2/mod_env.so -%%MOD_EXPIRES%%libexec/apache2/mod_expires.so -%%MOD_EXT_FILTER%%libexec/apache2/mod_ext_filter.so -%%MOD_FILE_CACHE%%libexec/apache2/mod_file_cache.so -%%MOD_HEADERS%%libexec/apache2/mod_headers.so -%%MOD_IMAP%%libexec/apache2/mod_imap.so -%%MOD_INCLUDE%%libexec/apache2/mod_include.so -%%MOD_INFO%%libexec/apache2/mod_info.so -%%MOD_LDAP%%libexec/apache2/mod_ldap.so -%%MOD_LOG_CONFIG%%libexec/apache2/mod_log_config.so -%%MOD_LOGIO%%libexec/apache2/mod_logio.so -%%MOD_MEM_CACHE%%libexec/apache2/mod_mem_cache.so -%%MOD_MIME%%libexec/apache2/mod_mime.so -%%MOD_MIME_MAGIC%%libexec/apache2/mod_mime_magic.so -%%MOD_NEGOTIATION%%libexec/apache2/mod_negotiation.so -%%MOD_OPTIONAL_HOOK_EXPORT%%libexec/apache2/mod_optional_hook_export.so -%%MOD_OPTIONAL_HOOK_IMPORT%%libexec/apache2/mod_optional_hook_import.so -%%MOD_OPTIONAL_FN_IMPORT%%libexec/apache2/mod_optional_fn_import.so -%%MOD_OPTIONAL_FN_EXPORT%%libexec/apache2/mod_optional_fn_export.so -%%MOD_PROXY%%libexec/apache2/mod_proxy.so -%%MOD_PROXY_CONNECT%%libexec/apache2/mod_proxy_connect.so -%%MOD_PROXY_FTP%%libexec/apache2/mod_proxy_ftp.so -%%MOD_PROXY_HTTP%%libexec/apache2/mod_proxy_http.so -%%MOD_REWRITE%%libexec/apache2/mod_rewrite.so -%%MOD_SETENVIF%%libexec/apache2/mod_setenvif.so -%%MOD_SPELING%%libexec/apache2/mod_speling.so -%%MOD_SSL%%libexec/apache2/mod_ssl.so -%%MOD_STATUS%%libexec/apache2/mod_status.so -%%MOD_SUEXEC%%libexec/apache2/mod_suexec.so -%%MOD_UNIQUE_ID%%libexec/apache2/mod_unique_id.so -%%MOD_USERDIR%%libexec/apache2/mod_userdir.so -%%MOD_USERTRACK%%libexec/apache2/mod_usertrack.so -%%MOD_VHOST_ALIAS%%libexec/apache2/mod_vhost_alias.so -sbin/ab -sbin/apachectl -sbin/apxs -sbin/checkgid -sbin/dbmmanage -sbin/envvars -sbin/envvars-std -sbin/htdbm -sbin/htdigest -sbin/htpasswd -sbin/httpd -sbin/logresolve -sbin/rotatelogs -%%MOD_SUEXEC%%sbin/suexec -share/apache2/build/apr_rules.mk -share/apache2/build/config_vars.mk -share/apache2/build/config.nice -share/apache2/build/instdso.sh -share/apache2/build/library.mk -share/apache2/build/libtool -share/apache2/build/ltlib.mk -share/apache2/build/program.mk -share/apache2/build/rules.mk -share/apache2/build/special.mk -%%PORTDOCS%%%%DOCSDIR%%/LICENSE -%%PORTDOCS%%%%DOCSDIR%%/bind.html -%%PORTDOCS%%%%DOCSDIR%%/bind.html.en -%%PORTDOCS%%%%DOCSDIR%%/bind.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/bind.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/bind.xml -%%PORTDOCS%%%%DOCSDIR%%/bind.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/bind.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/bind.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.en -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/configuring.html -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.en -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/configuring.xml -%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.en -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.en -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml -%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/API.html -%%PORTDOCS%%%%DOCSDIR%%/developer/API.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/API.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/API.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.html -%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.html -%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/filters.html -%%PORTDOCS%%%%DOCSDIR%%/developer/filters.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/filters.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/filters.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.html -%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/index.html -%%PORTDOCS%%%%DOCSDIR%%/developer/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/index.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html -%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/developer/modules.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/modules.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/request.html -%%PORTDOCS%%%%DOCSDIR%%/developer/request.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/request.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/request.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.html -%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.html.en -%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.xml -%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.en -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/dso.html -%%PORTDOCS%%%%DOCSDIR%%/dso.html.en -%%PORTDOCS%%%%DOCSDIR%%/dso.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/dso.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/dso.xml -%%PORTDOCS%%%%DOCSDIR%%/dso.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/dso.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/dso.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/env.html -%%PORTDOCS%%%%DOCSDIR%%/env.html.en -%%PORTDOCS%%%%DOCSDIR%%/env.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/env.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/env.xml -%%PORTDOCS%%%%DOCSDIR%%/env.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/env.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/env.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.html -%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.html.en -%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.xml -%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/faq/categories.xml -%%PORTDOCS%%%%DOCSDIR%%/faq/error.html -%%PORTDOCS%%%%DOCSDIR%%/faq/error.html.en -%%PORTDOCS%%%%DOCSDIR%%/faq/error.xml -%%PORTDOCS%%%%DOCSDIR%%/faq/error.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/faq/index.html -%%PORTDOCS%%%%DOCSDIR%%/faq/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/faq/index.xml -%%PORTDOCS%%%%DOCSDIR%%/faq/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/faq/support.html -%%PORTDOCS%%%%DOCSDIR%%/faq/support.html.en -%%PORTDOCS%%%%DOCSDIR%%/faq/support.xml -%%PORTDOCS%%%%DOCSDIR%%/faq/support.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/filter.html -%%PORTDOCS%%%%DOCSDIR%%/filter.html.en -%%PORTDOCS%%%%DOCSDIR%%/filter.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/filter.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/filter.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/filter.xml -%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/filter.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/glossary.html -%%PORTDOCS%%%%DOCSDIR%%/glossary.html.en -%%PORTDOCS%%%%DOCSDIR%%/glossary.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/glossary.xml -%%PORTDOCS%%%%DOCSDIR%%/glossary.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/glossary.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/handler.html -%%PORTDOCS%%%%DOCSDIR%%/handler.html.en -%%PORTDOCS%%%%DOCSDIR%%/handler.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/handler.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/handler.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/handler.xml -%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/handler.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.html -%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/howto/index.html -%%PORTDOCS%%%%DOCSDIR%%/howto/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/index.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.html -%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/images/apache_header.gif -%%PORTDOCS%%%%DOCSDIR%%/images/custom_errordocs.gif -%%PORTDOCS%%%%DOCSDIR%%/images/down.gif -%%PORTDOCS%%%%DOCSDIR%%/images/favicon.ico -%%PORTDOCS%%%%DOCSDIR%%/images/feather.gif -%%PORTDOCS%%%%DOCSDIR%%/images/home.gif -%%PORTDOCS%%%%DOCSDIR%%/images/index.gif -%%PORTDOCS%%%%DOCSDIR%%/images/left.gif -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.gif -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.gif -%%PORTDOCS%%%%DOCSDIR%%/images/pixel.gif -%%PORTDOCS%%%%DOCSDIR%%/images/right.gif -%%PORTDOCS%%%%DOCSDIR%%/images/sub.gif -%%PORTDOCS%%%%DOCSDIR%%/images/up.gif -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/index.html.de -%%PORTDOCS%%%%DOCSDIR%%/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/index.xml -%%PORTDOCS%%%%DOCSDIR%%/index.xml.de -%%PORTDOCS%%%%DOCSDIR%%/index.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/index.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/index.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/index.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/install.html -%%PORTDOCS%%%%DOCSDIR%%/install.html.de -%%PORTDOCS%%%%DOCSDIR%%/install.html.en -%%PORTDOCS%%%%DOCSDIR%%/install.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/install.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/install.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/install.xml -%%PORTDOCS%%%%DOCSDIR%%/install.xml.de -%%PORTDOCS%%%%DOCSDIR%%/install.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/install.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/install.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/install.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/invoking.html -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.de -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.en -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.de -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/license.html -%%PORTDOCS%%%%DOCSDIR%%/license.html.en -%%PORTDOCS%%%%DOCSDIR%%/license.xml -%%PORTDOCS%%%%DOCSDIR%%/license.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/logs.html -%%PORTDOCS%%%%DOCSDIR%%/logs.html.en -%%PORTDOCS%%%%DOCSDIR%%/logs.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/logs.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/logs.xml -%%PORTDOCS%%%%DOCSDIR%%/logs.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/logs.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/logs.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.html -%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.html -%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.html -%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/index.html -%%PORTDOCS%%%%DOCSDIR%%/misc/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/index.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.html -%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.html -%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.html -%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.html -%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.html -%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.html.en -%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.xml -%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.html -%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.html -%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.de -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mpm.html -%%PORTDOCS%%%%DOCSDIR%%/mpm.html.en -%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/mpm.xml -%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.de -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.en -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.fr -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.de -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.html -%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/platform/index.html -%%PORTDOCS%%%%DOCSDIR%%/platform/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/index.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/platform/netware.html -%%PORTDOCS%%%%DOCSDIR%%/platform/netware.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/netware.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/netware.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.html -%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.html -%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/platform/windows.html -%%PORTDOCS%%%%DOCSDIR%%/platform/windows.html.en -%%PORTDOCS%%%%DOCSDIR%%/platform/windows.xml -%%PORTDOCS%%%%DOCSDIR%%/platform/windows.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/ab.html -%%PORTDOCS%%%%DOCSDIR%%/programs/ab.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/ab.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/ab.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.html -%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.html -%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.html -%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.html -%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/other.html -%%PORTDOCS%%%%DOCSDIR%%/programs/other.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/other.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/other.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.html -%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.xml -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/search/manual-index.cgi -%%PORTDOCS%%%%DOCSDIR%%/sections.html -%%PORTDOCS%%%%DOCSDIR%%/sections.html.en -%%PORTDOCS%%%%DOCSDIR%%/sections.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/sections.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/sections.xml -%%PORTDOCS%%%%DOCSDIR%%/sections.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/sections.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/sections.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.en -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml -%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.de -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.en -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml -%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.de -%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.html -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.html.en -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.xml -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.html -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.html.en -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.xml -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.html -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.html.en -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.xml -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.html -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.html.en -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.xml -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig1.gif -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig2.gif -%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig3.gif -%%PORTDOCS%%%%DOCSDIR%%/stopping.html -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.de -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.en -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.de -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.de.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.ja.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.ko.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.zh-cn.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.de.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.ja.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.ko.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.zh-cn.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.de.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.ja.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.ko.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.zh-cn.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/common.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-chm.css -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-loose-100pc.css -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-print.css -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-zip-100pc.css -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-zip.css -%%PORTDOCS%%%%DOCSDIR%%/style/css/manual.css -%%PORTDOCS%%%%DOCSDIR%%/style/faq.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/lang/de.xml -%%PORTDOCS%%%%DOCSDIR%%/style/lang/en.xml -%%PORTDOCS%%%%DOCSDIR%%/style/lang/ja.xml -%%PORTDOCS%%%%DOCSDIR%%/style/lang/ko.xml -%%PORTDOCS%%%%DOCSDIR%%/style/lang/ru.xml -%%PORTDOCS%%%%DOCSDIR%%/style/lang/sv.xml -%%PORTDOCS%%%%DOCSDIR%%/style/latex/atbeginend.sty -%%PORTDOCS%%%%DOCSDIR%%/style/latex/common.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/directiveindex.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/faq.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/html.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/latex.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/manualpage.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/moduleindex.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/quickreference.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/latex/synopsis.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/man/man.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/man/manpage.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.de.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.fr.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.ja.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.ko.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.pt-br.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.ru.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.sv.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manual.zh-cn.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/manualpage.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/modulesynopsis.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/sitemap.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-lat1.ent -%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-special.ent -%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-symbol.ent -%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml1-strict.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml1-transitional.dtd -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/common.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/directiveindex.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/faq.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/indexpage.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/manualpage.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/moduleindex.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/quickreference.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/sitemap.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/synopsis.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/typemap.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/lf.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/li-end.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/li-start.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/modtrans.xsl -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/nbsp.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/tab.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/ul-end.xml -%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/ul-start.xml -%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.en.xsl -%%PORTDOCS%%%%DOCSDIR%%/suexec.html -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.en -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/suexec.xml -%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.de -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.en -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.fr -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.de -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.en -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.de -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ru.koi8-r -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.de -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ru -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.ja -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml.meta -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.de -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.ko.euc-kr -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.de -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.ko -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.meta -@exec mkdir -p %D/www -%%CGI%%@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -%%CGI%%@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin-dist %D/www/cgi-bin -%%CGI%%www/cgi-bin-dist/printenv -%%CGI%%www/cgi-bin-dist/test-cgi -%%WWWDATA%%@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -%%WWWDATA%%@exec [ ! -d %D/www/data ] && ln -fs %D/www/data-dist %D/www/data -%%WWWDATA%%www/data-dist/apache_pb.gif -%%WWWDATA%%www/data-dist/apache_pb.png -%%WWWDATA%%www/data-dist/apache_pb2.gif -%%WWWDATA%%www/data-dist/apache_pb2.png -%%WWWDATA%%www/data-dist/apache_pb2_ani.gif -%%WWWDATA%%www/data-dist/index.html.ca -%%WWWDATA%%www/data-dist/index.html.cz.iso8859-2 -%%WWWDATA%%www/data-dist/index.html.de -%%WWWDATA%%www/data-dist/index.html.dk -%%WWWDATA%%www/data-dist/index.html.ee -%%WWWDATA%%www/data-dist/index.html.el -%%WWWDATA%%www/data-dist/index.html.en -%%WWWDATA%%www/data-dist/index.html.es -%%WWWDATA%%www/data-dist/index.html.et -%%WWWDATA%%www/data-dist/index.html.fr -%%WWWDATA%%www/data-dist/index.html.he.iso8859-8 -%%WWWDATA%%www/data-dist/index.html.hr.iso8859-2 -%%WWWDATA%%www/data-dist/index.html.it -%%WWWDATA%%www/data-dist/index.html.ja.iso2022-jp -%%WWWDATA%%www/data-dist/index.html.ko.euc-kr -%%WWWDATA%%www/data-dist/index.html.lb.utf8 -%%WWWDATA%%www/data-dist/index.html.nl -%%WWWDATA%%www/data-dist/index.html.nn -%%WWWDATA%%www/data-dist/index.html.no -%%WWWDATA%%www/data-dist/index.html.po.iso8859-2 -%%WWWDATA%%www/data-dist/index.html.pt -%%WWWDATA%%www/data-dist/index.html.pt-br -%%WWWDATA%%www/data-dist/index.html.ru.cp-1251 -%%WWWDATA%%www/data-dist/index.html.ru.cp866 -%%WWWDATA%%www/data-dist/index.html.ru.iso-ru -%%WWWDATA%%www/data-dist/index.html.ru.koi8-r -%%WWWDATA%%www/data-dist/index.html.ru.utf8 -%%WWWDATA%%www/data-dist/index.html.sv -%%WWWDATA%%www/data-dist/index.html.var -%%WWWDATA%%www/data-dist/index.html.zh-cn.gb2312 -%%WWWDATA%%www/data-dist/index.html.zh-tw.big5 -%%ERROR%%@unexec if [ -L %D/www/error ]; then rm -f %D/www/error; fi -%%ERROR%%@exec [ ! -d %D/www/error ] && ln -fs %D/www/error-dist %D/www/error -%%ERROR%%www/error-dist/HTTP_BAD_GATEWAY.html.var -%%ERROR%%www/error-dist/HTTP_BAD_REQUEST.html.var -%%ERROR%%www/error-dist/HTTP_FORBIDDEN.html.var -%%ERROR%%www/error-dist/HTTP_GONE.html.var -%%ERROR%%www/error-dist/HTTP_INTERNAL_SERVER_ERROR.html.var -%%ERROR%%www/error-dist/HTTP_LENGTH_REQUIRED.html.var -%%ERROR%%www/error-dist/HTTP_METHOD_NOT_ALLOWED.html.var -%%ERROR%%www/error-dist/HTTP_NOT_ACCEPTABLE.html.var -%%ERROR%%www/error-dist/HTTP_NOT_FOUND.html.var -%%ERROR%%www/error-dist/HTTP_NOT_IMPLEMENTED.html.var -%%ERROR%%www/error-dist/HTTP_PRECONDITION_FAILED.html.var -%%ERROR%%www/error-dist/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -%%ERROR%%www/error-dist/HTTP_REQUEST_TIME_OUT.html.var -%%ERROR%%www/error-dist/HTTP_REQUEST_URI_TOO_LARGE.html.var -%%ERROR%%www/error-dist/HTTP_SERVICE_UNAVAILABLE.html.var -%%ERROR%%www/error-dist/HTTP_UNAUTHORIZED.html.var -%%ERROR%%www/error-dist/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -%%ERROR%%www/error-dist/HTTP_VARIANT_ALSO_VARIES.html.var -%%ERROR%%www/error-dist/README -%%ERROR%%www/error-dist/contact.html.var -%%ERROR%%www/error-dist/include/bottom.html -%%ERROR%%www/error-dist/include/spacer.html -%%ERROR%%www/error-dist/include/top.html -%%ICONS%%@unexec if [ -L %D/www/icons ]; then rm -f %D/www/icons; fi -%%ICONS%%@exec [ ! -d %D/www/icons ] && ln -fs %D/www/icons-dist %D/www/icons -%%ICONS%%www/icons-dist/README -%%ICONS%%www/icons-dist/a.gif -%%ICONS%%www/icons-dist/a.png -%%ICONS%%www/icons-dist/alert.black.gif -%%ICONS%%www/icons-dist/alert.black.png -%%ICONS%%www/icons-dist/alert.red.gif -%%ICONS%%www/icons-dist/alert.red.png -%%ICONS%%www/icons-dist/apache_pb.gif -%%ICONS%%www/icons-dist/apache_pb.png -%%ICONS%%www/icons-dist/apache_pb2.gif -%%ICONS%%www/icons-dist/apache_pb2.png -%%ICONS%%www/icons-dist/apache_pb2_ani.gif -%%ICONS%%www/icons-dist/back.gif -%%ICONS%%www/icons-dist/back.png -%%ICONS%%www/icons-dist/ball.gray.gif -%%ICONS%%www/icons-dist/ball.gray.png -%%ICONS%%www/icons-dist/ball.red.gif -%%ICONS%%www/icons-dist/ball.red.png -%%ICONS%%www/icons-dist/binary.gif -%%ICONS%%www/icons-dist/binary.png -%%ICONS%%www/icons-dist/binhex.gif -%%ICONS%%www/icons-dist/binhex.png -%%ICONS%%www/icons-dist/blank.gif -%%ICONS%%www/icons-dist/blank.png -%%ICONS%%www/icons-dist/bomb.gif -%%ICONS%%www/icons-dist/bomb.png -%%ICONS%%www/icons-dist/box1.gif -%%ICONS%%www/icons-dist/box1.png -%%ICONS%%www/icons-dist/box2.gif -%%ICONS%%www/icons-dist/box2.png -%%ICONS%%www/icons-dist/broken.gif -%%ICONS%%www/icons-dist/broken.png -%%ICONS%%www/icons-dist/burst.gif -%%ICONS%%www/icons-dist/burst.png -%%ICONS%%www/icons-dist/c.gif -%%ICONS%%www/icons-dist/c.png -%%ICONS%%www/icons-dist/comp.blue.gif -%%ICONS%%www/icons-dist/comp.blue.png -%%ICONS%%www/icons-dist/comp.gray.gif -%%ICONS%%www/icons-dist/comp.gray.png -%%ICONS%%www/icons-dist/compressed.gif -%%ICONS%%www/icons-dist/compressed.png -%%ICONS%%www/icons-dist/continued.gif -%%ICONS%%www/icons-dist/continued.png -%%ICONS%%www/icons-dist/dir.gif -%%ICONS%%www/icons-dist/dir.png -%%ICONS%%www/icons-dist/diskimg.gif -%%ICONS%%www/icons-dist/diskimg.png -%%ICONS%%www/icons-dist/down.gif -%%ICONS%%www/icons-dist/down.png -%%ICONS%%www/icons-dist/dvi.gif -%%ICONS%%www/icons-dist/dvi.png -%%ICONS%%www/icons-dist/f.gif -%%ICONS%%www/icons-dist/f.png -%%ICONS%%www/icons-dist/folder.gif -%%ICONS%%www/icons-dist/folder.open.gif -%%ICONS%%www/icons-dist/folder.open.png -%%ICONS%%www/icons-dist/folder.png -%%ICONS%%www/icons-dist/folder.sec.gif -%%ICONS%%www/icons-dist/folder.sec.png -%%ICONS%%www/icons-dist/forward.gif -%%ICONS%%www/icons-dist/forward.png -%%ICONS%%www/icons-dist/freebsd.gif -%%ICONS%%www/icons-dist/generic.gif -%%ICONS%%www/icons-dist/generic.png -%%ICONS%%www/icons-dist/generic.red.gif -%%ICONS%%www/icons-dist/generic.red.png -%%ICONS%%www/icons-dist/generic.sec.gif -%%ICONS%%www/icons-dist/generic.sec.png -%%ICONS%%www/icons-dist/hand.right.gif -%%ICONS%%www/icons-dist/hand.right.png -%%ICONS%%www/icons-dist/hand.up.gif -%%ICONS%%www/icons-dist/hand.up.png -%%ICONS%%www/icons-dist/icon.sheet.gif -%%ICONS%%www/icons-dist/icon.sheet.png -%%ICONS%%www/icons-dist/image1.gif -%%ICONS%%www/icons-dist/image1.png -%%ICONS%%www/icons-dist/image2.gif -%%ICONS%%www/icons-dist/image2.png -%%ICONS%%www/icons-dist/image3.gif -%%ICONS%%www/icons-dist/image3.png -%%ICONS%%www/icons-dist/index.gif -%%ICONS%%www/icons-dist/index.png -%%ICONS%%www/icons-dist/layout.gif -%%ICONS%%www/icons-dist/layout.png -%%ICONS%%www/icons-dist/left.gif -%%ICONS%%www/icons-dist/left.png -%%ICONS%%www/icons-dist/link.gif -%%ICONS%%www/icons-dist/link.png -%%ICONS%%www/icons-dist/movie.gif -%%ICONS%%www/icons-dist/movie.png -%%ICONS%%www/icons-dist/p.gif -%%ICONS%%www/icons-dist/p.png -%%ICONS%%www/icons-dist/patch.gif -%%ICONS%%www/icons-dist/patch.png -%%ICONS%%www/icons-dist/pdf.gif -%%ICONS%%www/icons-dist/pdf.png -%%ICONS%%www/icons-dist/pie0.gif -%%ICONS%%www/icons-dist/pie0.png -%%ICONS%%www/icons-dist/pie1.gif -%%ICONS%%www/icons-dist/pie1.png -%%ICONS%%www/icons-dist/pie2.gif -%%ICONS%%www/icons-dist/pie2.png -%%ICONS%%www/icons-dist/pie3.gif -%%ICONS%%www/icons-dist/pie3.png -%%ICONS%%www/icons-dist/pie4.gif -%%ICONS%%www/icons-dist/pie4.png -%%ICONS%%www/icons-dist/pie5.gif -%%ICONS%%www/icons-dist/pie5.png -%%ICONS%%www/icons-dist/pie6.gif -%%ICONS%%www/icons-dist/pie6.png -%%ICONS%%www/icons-dist/pie7.gif -%%ICONS%%www/icons-dist/pie7.png -%%ICONS%%www/icons-dist/pie8.gif -%%ICONS%%www/icons-dist/pie8.png -%%ICONS%%www/icons-dist/portal.gif -%%ICONS%%www/icons-dist/portal.png -%%ICONS%%www/icons-dist/ps.gif -%%ICONS%%www/icons-dist/ps.png -%%ICONS%%www/icons-dist/quill.gif -%%ICONS%%www/icons-dist/quill.png -%%ICONS%%www/icons-dist/right.gif -%%ICONS%%www/icons-dist/right.png -%%ICONS%%www/icons-dist/screw1.gif -%%ICONS%%www/icons-dist/screw1.png -%%ICONS%%www/icons-dist/screw2.gif -%%ICONS%%www/icons-dist/screw2.png -%%ICONS%%www/icons-dist/script.gif -%%ICONS%%www/icons-dist/script.png -%%ICONS%%www/icons-dist/small/README.txt -%%ICONS%%www/icons-dist/small/back.gif -%%ICONS%%www/icons-dist/small/back.png -%%ICONS%%www/icons-dist/small/binary.gif -%%ICONS%%www/icons-dist/small/binary.png -%%ICONS%%www/icons-dist/small/binhex.gif -%%ICONS%%www/icons-dist/small/binhex.png -%%ICONS%%www/icons-dist/small/blank.gif -%%ICONS%%www/icons-dist/small/blank.png -%%ICONS%%www/icons-dist/small/broken.gif -%%ICONS%%www/icons-dist/small/broken.png -%%ICONS%%www/icons-dist/small/burst.gif -%%ICONS%%www/icons-dist/small/burst.png -%%ICONS%%www/icons-dist/small/comp1.gif -%%ICONS%%www/icons-dist/small/comp1.png -%%ICONS%%www/icons-dist/small/comp2.gif -%%ICONS%%www/icons-dist/small/comp2.png -%%ICONS%%www/icons-dist/small/compressed.gif -%%ICONS%%www/icons-dist/small/compressed.png -%%ICONS%%www/icons-dist/small/continued.gif -%%ICONS%%www/icons-dist/small/continued.png -%%ICONS%%www/icons-dist/small/dir.gif -%%ICONS%%www/icons-dist/small/dir.png -%%ICONS%%www/icons-dist/small/dir2.gif -%%ICONS%%www/icons-dist/small/dir2.png -%%ICONS%%www/icons-dist/small/doc.gif -%%ICONS%%www/icons-dist/small/doc.png -%%ICONS%%www/icons-dist/small/forward.gif -%%ICONS%%www/icons-dist/small/forward.png -%%ICONS%%www/icons-dist/small/generic.gif -%%ICONS%%www/icons-dist/small/generic.png -%%ICONS%%www/icons-dist/small/generic2.gif -%%ICONS%%www/icons-dist/small/generic2.png -%%ICONS%%www/icons-dist/small/generic3.gif -%%ICONS%%www/icons-dist/small/generic3.png -%%ICONS%%www/icons-dist/small/image.gif -%%ICONS%%www/icons-dist/small/image.png -%%ICONS%%www/icons-dist/small/image2.gif -%%ICONS%%www/icons-dist/small/image2.png -%%ICONS%%www/icons-dist/small/index.gif -%%ICONS%%www/icons-dist/small/index.png -%%ICONS%%www/icons-dist/small/key.gif -%%ICONS%%www/icons-dist/small/key.png -%%ICONS%%www/icons-dist/small/movie.gif -%%ICONS%%www/icons-dist/small/movie.png -%%ICONS%%www/icons-dist/small/patch.gif -%%ICONS%%www/icons-dist/small/patch.png -%%ICONS%%www/icons-dist/small/ps.gif -%%ICONS%%www/icons-dist/small/ps.png -%%ICONS%%www/icons-dist/small/rainbow.gif -%%ICONS%%www/icons-dist/small/rainbow.png -%%ICONS%%www/icons-dist/small/sound.gif -%%ICONS%%www/icons-dist/small/sound.png -%%ICONS%%www/icons-dist/small/sound2.gif -%%ICONS%%www/icons-dist/small/sound2.png -%%ICONS%%www/icons-dist/small/tar.gif -%%ICONS%%www/icons-dist/small/tar.png -%%ICONS%%www/icons-dist/small/text.gif -%%ICONS%%www/icons-dist/small/text.png -%%ICONS%%www/icons-dist/small/transfer.gif -%%ICONS%%www/icons-dist/small/transfer.png -%%ICONS%%www/icons-dist/small/unknown.gif -%%ICONS%%www/icons-dist/small/unknown.png -%%ICONS%%www/icons-dist/small/uu.gif -%%ICONS%%www/icons-dist/small/uu.png -%%ICONS%%www/icons-dist/sound1.gif -%%ICONS%%www/icons-dist/sound1.png -%%ICONS%%www/icons-dist/sound2.gif -%%ICONS%%www/icons-dist/sound2.png -%%ICONS%%www/icons-dist/sphere1.gif -%%ICONS%%www/icons-dist/sphere1.png -%%ICONS%%www/icons-dist/sphere2.gif -%%ICONS%%www/icons-dist/sphere2.png -%%ICONS%%www/icons-dist/tar.gif -%%ICONS%%www/icons-dist/tar.png -%%ICONS%%www/icons-dist/tex.gif -%%ICONS%%www/icons-dist/tex.png -%%ICONS%%www/icons-dist/text.gif -%%ICONS%%www/icons-dist/text.png -%%ICONS%%www/icons-dist/transfer.gif -%%ICONS%%www/icons-dist/transfer.png -%%ICONS%%www/icons-dist/unknown.gif -%%ICONS%%www/icons-dist/unknown.png -%%ICONS%%www/icons-dist/up.gif -%%ICONS%%www/icons-dist/up.png -%%ICONS%%www/icons-dist/uu.gif -%%ICONS%%www/icons-dist/uu.png -%%ICONS%%www/icons-dist/uuencoded.gif -%%ICONS%%www/icons-dist/uuencoded.png -%%ICONS%%www/icons-dist/world1.gif -%%ICONS%%www/icons-dist/world1.png -%%ICONS%%www/icons-dist/world2.gif -%%ICONS%%www/icons-dist/world2.png -%%ICONS%%@dirrm www/icons-dist/small -%%ICONS%%@dirrm www/icons-dist -%%ERROR%%@dirrm www/error-dist/include -%%ERROR%%@dirrm www/error-dist -%%WWWDATA%%@dirrm www/data-dist -%%CGI%%@dirrm www/cgi-bin-dist -@unexec rmdir %D/www 2> /dev/null || true -%%PORTDOCS%%@dirrm %%DOCSDIR%%/vhosts -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/zip -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/xsl/util -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/xsl -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/w3c -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/man -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/latex -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/lang -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/css -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/chm -%%PORTDOCS%%@dirrm %%DOCSDIR%%/style -%%PORTDOCS%%@dirrm %%DOCSDIR%%/ssl -%%PORTDOCS%%@dirrm %%DOCSDIR%%/search -%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/platform -%%PORTDOCS%%@dirrm %%DOCSDIR%%/mod -%%PORTDOCS%%@dirrm %%DOCSDIR%%/misc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto -%%PORTDOCS%%@dirrm %%DOCSDIR%%/faq -%%PORTDOCS%%@dirrm %%DOCSDIR%%/developer -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm share/apache2/build -@dirrm share/apache2 -@dirrm libexec/apache2 -@dirrm lib/apache2 -@dirrm include/apache2 -@dirrm etc/apache2 |