diff options
Diffstat (limited to 'www/apache22')
-rw-r--r-- | www/apache22/Makefile | 145 | ||||
-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 | 109 | ||||
-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 | 107 | ||||
-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:include:apr_atomic.h | 17 | ||||
-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 | 1070 |
18 files changed, 0 insertions, 1740 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile deleted file mode 100644 index bd2d3a908515..000000000000 --- a/www/apache22/Makefile +++ /dev/null @@ -1,145 +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.45 -CATEGORIES= www ipv6 -MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} -DISTNAME= httpd-${PORTVERSION} -DISTFILES= ${DISTNAME}.tar.gz powerlogo.gif:freebsd -EXTRACT_ONLY= ${DISTNAME}.tar.gz - -MAINTAINER?= perky@FreeBSD.org -COMMENT?= Version 2 of the extremely popular Apache http server - -LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 - -LATEST_LINK= apache2 - -WITH_MPM?= prefork # or worker, perchild -HTTP_PORT?= 80 - -HAS_CONFIGURE= yes -USE_PERL5= yes -USE_REINPLACE= yes -CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL5} \ - --enable-so \ - --with-mpm=${WITH_MPM} \ - --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}" -SHARED_MODULES= all cgid deflate ext_filter proxy proxy-connect proxy-ftp \ - proxy-http -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 - -.if !defined(IPV6_V6ONLY) -CONFIGURE_ARGS+= --enable-v4-mapped -.endif - -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -.endif - -.include <bsd.port.pre.mk> - -.if defined(WITH_SUEXEC) -SUEXEC_DOCROOT?= ${PREFIX_RELDEST}/www/data -SUEXEC_USERDIR?= public_html -SUEXEC_SAFEPATH?=${PREFIX_RELDEST}/bin:${LOCALBASE}/bin:/usr/bin:/bin -CONFIGURE_ARGS+= --enable-suexec \ - --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" -PLIST_SUB+= SUEXEC="" -.else -PLIST_SUB+= SUEXEC="@comment " -.endif - -.if ${WITH_MPM} != "prefork" -PKGNAMESUFFIX= -${WITH_MPM} -WITH_THREADS= yes -.if ${WITH_MPM} == "worker" -PLIST_SUB+= PREFORK="@comment " WORKER="" -.else -PLIST_SUB+= PREFORK="@comment " WORKER="@comment " -.endif -.else -PLIST_SUB+= PREFORK="" WORKER="@comment " -.endif - -.if defined(WITH_THREADS) -CONFIGURE_ARGS+= --enable-threads -CFLAGS+= -DFREEBSD_THREAD_HACK -SHARED_MODULES+= cache file-cache disk-cache mem_cache -PLIST_SUB+= THREADS="" -.else -PLIST_SUB+= THREADS="@comment " -.endif - -.if !defined(WITHOUT_SSL) -SHARED_MODULES+= ssl -CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} -PLIST_SUB+= MODSSL="" -RC_SUB+= -e 's,@@SSL@@,ssl,g' -.else -PLIST_SUB+= MODSSL="@comment " -RC_SUB+= -e 's,@@SSL@@,,g' -.endif - -.if defined(WITH_EXPERIMENTAL) -SHARED_MODULES+= bucketeer case_filter case_filter_in ext_filter charset_lite \ - optional_hook_export optional_hook_import \ - optional_fn_import optional_fn_export -PLIST_SUB+= EXPERIMENTAL="" -.else -PLIST_SUB+= EXPERIMENTAL="@comment " -.endif - -CONFIGURE_ARGS+= --enable-mods-shared="${SHARED_MODULES}" ${CONFIGURE_TARGET} - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apxs.8 logresolve.8 rotatelogs.8 suexec.8 - -post-extract: - @${INSTALL_DATA} ${DISTDIR}/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} pkg-install ${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/distinfo b/www/apache22/distinfo deleted file mode 100644 index 4e45e806fa32..000000000000 --- a/www/apache22/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (httpd-2.0.45.tar.gz) = 1f33e9a2e2de06da190230fa72738d75 -MD5 (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 728fb88af957..000000000000 --- a/www/apache22/files/patch-Makefile.in +++ /dev/null @@ -1,109 +0,0 @@ ---- Makefile.in.orig Mon Sep 30 08:34:40 2002 -+++ Makefile.in Thu Oct 3 21:05:42 2002 -@@ -36,10 +36,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 \ -@@ -57,6 +60,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; \ -@@ -106,45 +112,33 @@ - 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 -+ @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 - - 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 -+ @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) - - 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 -- -+ @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) -+ - 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 -- -+ @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) -+ - install-other: - @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) - @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) -@@ -185,11 +179,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 8a3cef3275c6..000000000000 --- a/www/apache22/files/patch-configure +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Mon Mar 31 16:48:51 2003 -+++ configure Thu Apr 3 21:18:08 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 \ -@@ -2613,7 +2613,7 @@ - ac_sub_cache_file="$ac_popdir/$cache_file" ;; - esac - -- if eval $SHELL $ac_abs_srcdir/configure $ac_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 $ac_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 -@@ -2888,7 +2888,7 @@ - ac_sub_cache_file="$ac_popdir/$cache_file" ;; - esac - -- if eval $SHELL $ac_abs_srcdir/configure $ac_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 $ac_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 -@@ -15634,6 +15634,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 b/www/apache22/files/patch-docs:conf:ssl-std.conf deleted file mode 100644 index 39ea9c6e7483..000000000000 --- a/www/apache22/files/patch-docs:conf:ssl-std.conf +++ /dev/null @@ -1,107 +0,0 @@ ---- docs/conf/ssl-std.conf.orig Fri May 17 04:05:24 2002 -+++ docs/conf/ssl-std.conf Tue Jun 18 23:15:32 2002 -@@ -55,15 +55,15 @@ - # Configure the SSL Session Cache: First the mechanism - # to use and second the expiring timeout (in seconds). - #SSLSessionCache none --#SSLSessionCache shmht:logs/ssl_scache(512000) --#SSLSessionCache shmcb:logs/ssl_scache(512000) --SSLSessionCache dbm:logs/ssl_scache -+#SSLSessionCache shmht:/var/log/httpd-ssl_scache(512000) -+#SSLSessionCache shmcb:/var/log/httpd-ssl_scache(512000) -+SSLSessionCache dbm:/var/log/httpd-ssl_scache - SSLSessionCacheTimeout 300 - - # Semaphore: - # Configure the path to the mutual exclusion semaphore the - # SSL engine uses internally for inter-process synchronization. --SSLMutex file:logs/ssl_mutex -+SSLMutex file:/var/log/httpd-ssl_mutex - - # Pseudo Random Number Generator (PRNG): - # Configure one or more sources to seed the PRNG of the -@@ -89,11 +89,11 @@ - <VirtualHost _default_:443> - - # General setup for the virtual host --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - ServerName new.host.name:443 - ServerAdmin you@your.address --ErrorLog logs/error_log --TransferLog logs/access_log -+ErrorLog /var/log/httpd-error.log -+TransferLog /var/log/httpd-access.log - - # SSL Engine Switch: - # Enable/Disable SSL for this virtual host. -@@ -111,16 +111,16 @@ - # in mind that if you have both an RSA and a DSA certificate you - # can configure both in parallel (to also allow the use of DSA - # ciphers, etc.) --SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server.crt --#SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server-dsa.crt -+SSLCertificateFile @@ServerRoot@@/etc/apache2/ssl.crt/server.crt -+#SSLCertificateFile @@ServerRoot@@/etc/apache2/ssl.crt/server-dsa.crt - - # Server Private Key: - # If the key is not combined with the certificate, use this - # directive to point at the key file. Keep in mind that if - # you've both a RSA and a DSA private key you can configure - # both in parallel (to also allow the use of DSA ciphers, etc.) --SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server.key --#SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server-dsa.key -+SSLCertificateKeyFile @@ServerRoot@@/etc/apache2/ssl.key/server.key -+#SSLCertificateKeyFile @@ServerRoot@@/etc/apache2/ssl.key/server-dsa.key - - # Server Certificate Chain: - # Point SSLCertificateChainFile at a file containing the -@@ -129,7 +129,7 @@ - # the referenced file can be the same as SSLCertificateFile - # when the CA certificates are directly appended to the server - # certificate for convinience. --#SSLCertificateChainFile @@ServerRoot@@/conf/ssl.crt/ca.crt -+#SSLCertificateChainFile @@ServerRoot@@/etc/apache2/ssl.crt/ca.crt - - # Certificate Authority (CA): - # Set the CA certificate verification path where to find CA -@@ -138,8 +138,8 @@ - # Note: Inside SSLCACertificatePath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCACertificatePath @@ServerRoot@@/conf/ssl.crt --#SSLCACertificateFile @@ServerRoot@@/conf/ssl.crt/ca-bundle.crt -+#SSLCACertificatePath @@ServerRoot@@/etc/apache2/ssl.crt -+#SSLCACertificateFile @@ServerRoot@@/etc/apache2/ssl.crt/ca-bundle.crt - - # Certificate Revocation Lists (CRL): - # Set the CA revocation path where to find CA CRLs for client -@@ -148,8 +148,8 @@ - # Note: Inside SSLCARevocationPath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCARevocationPath @@ServerRoot@@/conf/ssl.crl --#SSLCARevocationFile @@ServerRoot@@/conf/ssl.crl/ca-bundle.crl -+#SSLCARevocationPath @@ServerRoot@@/etc/apache2/ssl.crl -+#SSLCARevocationFile @@ServerRoot@@/etc/apache2/ssl.crl/ca-bundle.crl - - # Client Authentication (Type): - # Client certificate verification type and depth. Types are -@@ -209,7 +209,7 @@ - <Files ~ "\.(cgi|shtml|phtml|php3?)$"> - SSLOptions +StdEnvVars - </Files> --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - SSLOptions +StdEnvVars - </Directory> - -@@ -244,7 +244,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 logs/ssl_request_log \ -+CustomLog /var/log/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:include:apr_atomic.h b/www/apache22/files/patch-srclib:apr:include:apr_atomic.h deleted file mode 100644 index 14d1dd444ba3..000000000000 --- a/www/apache22/files/patch-srclib:apr:include:apr_atomic.h +++ /dev/null @@ -1,17 +0,0 @@ ---- srclib/apr/include/apr_atomic.h.orig Wed May 1 03:41:59 2002 -+++ srclib/apr/include/apr_atomic.h Tue May 7 19:37:45 2002 -@@ -175,10 +175,10 @@ - #include <machine/atomic.h> - - #define apr_atomic_t apr_uint32_t --#define apr_atomic_add(mem, val) atomic_add_int(mem,val) --#define apr_atomic_dec(mem) atomic_subtract_int(mem,1) --#define apr_atomic_inc(mem) atomic_add_int(mem,1) --#define apr_atomic_set(mem, val) atomic_set_int(mem, val) -+#define apr_atomic_add(mem, val) (atomic_add_int(mem,val),mem) -+#define apr_atomic_dec(mem) (atomic_subtract_int(mem,1),mem) -+#define apr_atomic_inc(mem) (atomic_add_int(mem,1),mem) -+#define apr_atomic_set(mem, val) (atomic_set_int(mem, val),mem) - #define apr_atomic_read(mem) (*mem) - - #define APR_ATOMIC_NEED_CAS_DEFAULT 1 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 e6a91c409f70..000000000000 --- a/www/apache22/pkg-plist +++ /dev/null @@ -1,1070 +0,0 @@ -@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 -%%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.a -lib/apache2/libapr.la -lib/apache2/libapr.so -lib/apache2/libapr.so.9 -lib/apache2/libaprutil.a -lib/apache2/libaprutil.la -lib/apache2/libaprutil.so -lib/apache2/libaprutil.so.9 -libexec/apache2/httpd.exp -libexec/apache2/mod_access.so -libexec/apache2/mod_actions.so -libexec/apache2/mod_alias.so -libexec/apache2/mod_asis.so -libexec/apache2/mod_auth.so -libexec/apache2/mod_auth_anon.so -libexec/apache2/mod_auth_dbm.so -libexec/apache2/mod_auth_digest.so -libexec/apache2/mod_autoindex.so -%%EXPERIMENTAL%%libexec/apache2/mod_bucketeer.so -%%THREADS%%libexec/apache2/mod_cache.so -%%EXPERIMENTAL%%libexec/apache2/mod_case_filter.so -%%EXPERIMENTAL%%libexec/apache2/mod_case_filter_in.so -libexec/apache2/mod_cern_meta.so -%%PREFORK%%libexec/apache2/mod_cgi.so -libexec/apache2/mod_cgid.so -%%EXPERIMENTAL%%libexec/apache2/mod_charset_lite.so -libexec/apache2/mod_dav.so -libexec/apache2/mod_dav_fs.so -libexec/apache2/mod_deflate.so -libexec/apache2/mod_dir.so -%%THREADS%%libexec/apache2/mod_disk_cache.so -libexec/apache2/mod_env.so -libexec/apache2/mod_expires.so -libexec/apache2/mod_ext_filter.so -%%THREADS%%libexec/apache2/mod_file_cache.so -libexec/apache2/mod_headers.so -libexec/apache2/mod_imap.so -libexec/apache2/mod_include.so -libexec/apache2/mod_info.so -libexec/apache2/mod_log_config.so -%%THREADS%%libexec/apache2/mod_mem_cache.so -libexec/apache2/mod_mime.so -libexec/apache2/mod_mime_magic.so -libexec/apache2/mod_negotiation.so -%%EXPERIMENTAL%%libexec/apache2/mod_optional_hook_export.so -%%EXPERIMENTAL%%libexec/apache2/mod_optional_hook_import.so -%%EXPERIMENTAL%%libexec/apache2/mod_optional_fn_import.so -%%EXPERIMENTAL%%libexec/apache2/mod_optional_fn_export.so -libexec/apache2/mod_proxy.so -libexec/apache2/mod_proxy_connect.so -libexec/apache2/mod_proxy_ftp.so -libexec/apache2/mod_proxy_http.so -libexec/apache2/mod_rewrite.so -libexec/apache2/mod_setenvif.so -libexec/apache2/mod_speling.so -%%MODSSL%%libexec/apache2/mod_ssl.so -libexec/apache2/mod_status.so -%%SUEXEC%%libexec/apache2/mod_suexec.so -libexec/apache2/mod_unique_id.so -libexec/apache2/mod_userdir.so -libexec/apache2/mod_usertrack.so -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 -%%SUEXEC%%sbin/suexec -share/apache2/build/config_vars.mk -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%%share/apache2/build/apr_rules.mk -%%PORTDOCS%%share/doc/apache2/LICENSE -%%PORTDOCS%%share/doc/apache2/bind.html.en -%%PORTDOCS%%share/doc/apache2/bind.html.ja.jis -%%PORTDOCS%%share/doc/apache2/bind.xml -%%PORTDOCS%%share/doc/apache2/bind.xml.ja -%%PORTDOCS%%share/doc/apache2/cgi_path.html.en -%%PORTDOCS%%share/doc/apache2/cgi_path.html.ja.jis -%%PORTDOCS%%share/doc/apache2/cgi_path.xml -%%PORTDOCS%%share/doc/apache2/cgi_path.xml.ja -%%PORTDOCS%%share/doc/apache2/configuring.html.en -%%PORTDOCS%%share/doc/apache2/configuring.html.ja.jis -%%PORTDOCS%%share/doc/apache2/configuring.xml -%%PORTDOCS%%share/doc/apache2/configuring.xml.ja -%%PORTDOCS%%share/doc/apache2/content-negotiation.html.en -%%PORTDOCS%%share/doc/apache2/content-negotiation.html.ja.jis -%%PORTDOCS%%share/doc/apache2/content-negotiation.xml -%%PORTDOCS%%share/doc/apache2/content-negotiation.xml.ja -%%PORTDOCS%%share/doc/apache2/custom-error.html.en -%%PORTDOCS%%share/doc/apache2/custom-error.html.ja.jis -%%PORTDOCS%%share/doc/apache2/custom-error.xml -%%PORTDOCS%%share/doc/apache2/custom-error.xml.ja -%%PORTDOCS%%share/doc/apache2/developer/API.html -%%PORTDOCS%%share/doc/apache2/developer/debugging.html -%%PORTDOCS%%share/doc/apache2/developer/documenting.html -%%PORTDOCS%%share/doc/apache2/developer/filters.html -%%PORTDOCS%%share/doc/apache2/developer/footer.html -%%PORTDOCS%%share/doc/apache2/developer/header.html -%%PORTDOCS%%share/doc/apache2/developer/hooks.html -%%PORTDOCS%%share/doc/apache2/developer/index.html -%%PORTDOCS%%share/doc/apache2/developer/layeredio.html -%%PORTDOCS%%share/doc/apache2/developer/modules.html.en -%%PORTDOCS%%share/doc/apache2/developer/modules.html.ja.jis -%%PORTDOCS%%share/doc/apache2/developer/request.html -%%PORTDOCS%%share/doc/apache2/developer/thread_safety.html -%%PORTDOCS%%share/doc/apache2/dns-caveats.html.en -%%PORTDOCS%%share/doc/apache2/dns-caveats.html.ja.jis -%%PORTDOCS%%share/doc/apache2/dns-caveats.xml -%%PORTDOCS%%share/doc/apache2/dns-caveats.xml.ja -%%PORTDOCS%%share/doc/apache2/dso.html.en -%%PORTDOCS%%share/doc/apache2/dso.html.ja.jis -%%PORTDOCS%%share/doc/apache2/dso.html.ko.euc-kr -%%PORTDOCS%%share/doc/apache2/dso.xml -%%PORTDOCS%%share/doc/apache2/dso.xml.ja -%%PORTDOCS%%share/doc/apache2/env.html.en -%%PORTDOCS%%share/doc/apache2/env.html.ja.jis -%%PORTDOCS%%share/doc/apache2/env.xml -%%PORTDOCS%%share/doc/apache2/env.xml.ja -%%PORTDOCS%%share/doc/apache2/faq/index.html -%%PORTDOCS%%share/doc/apache2/filter.html.en -%%PORTDOCS%%share/doc/apache2/filter.html.ja.jis -%%PORTDOCS%%share/doc/apache2/filter.xml -%%PORTDOCS%%share/doc/apache2/filter.xml.ja -%%PORTDOCS%%share/doc/apache2/footer.html -%%PORTDOCS%%share/doc/apache2/glossary.html.en -%%PORTDOCS%%share/doc/apache2/glossary.xml -%%PORTDOCS%%share/doc/apache2/handler.html.en -%%PORTDOCS%%share/doc/apache2/handler.html.ja.jis -%%PORTDOCS%%share/doc/apache2/handler.xml -%%PORTDOCS%%share/doc/apache2/handler.xml.ja -%%PORTDOCS%%share/doc/apache2/header.html -%%PORTDOCS%%share/doc/apache2/howto/auth.html.en -%%PORTDOCS%%share/doc/apache2/howto/auth.html.ja.jis -%%PORTDOCS%%share/doc/apache2/howto/cgi.html.en -%%PORTDOCS%%share/doc/apache2/howto/cgi.html.ja.jis -%%PORTDOCS%%share/doc/apache2/howto/cgi.xml -%%PORTDOCS%%share/doc/apache2/howto/cgi.xml.ja -%%PORTDOCS%%share/doc/apache2/howto/footer.html -%%PORTDOCS%%share/doc/apache2/howto/header.html -%%PORTDOCS%%share/doc/apache2/howto/htaccess.html.en -%%PORTDOCS%%share/doc/apache2/howto/htaccess.xml -%%PORTDOCS%%share/doc/apache2/howto/index.html.en -%%PORTDOCS%%share/doc/apache2/howto/index.xml -%%PORTDOCS%%share/doc/apache2/howto/public_html.html.en -%%PORTDOCS%%share/doc/apache2/howto/public_html.xml -%%PORTDOCS%%share/doc/apache2/howto/ssi.html.en -%%PORTDOCS%%share/doc/apache2/howto/ssi.html.ja.jis -%%PORTDOCS%%share/doc/apache2/howto/ssi.xml -%%PORTDOCS%%share/doc/apache2/howto/ssi.xml.ja -%%PORTDOCS%%share/doc/apache2/images/apache_header.gif -%%PORTDOCS%%share/doc/apache2/images/apache_header.png -%%PORTDOCS%%share/doc/apache2/images/custom_errordocs.gif -%%PORTDOCS%%share/doc/apache2/images/custom_errordocs.png -%%PORTDOCS%%share/doc/apache2/images/down.gif -%%PORTDOCS%%share/doc/apache2/images/favicon.ico -%%PORTDOCS%%share/doc/apache2/images/feather.gif -%%PORTDOCS%%share/doc/apache2/images/home.gif -%%PORTDOCS%%share/doc/apache2/images/home.png -%%PORTDOCS%%share/doc/apache2/images/index.gif -%%PORTDOCS%%share/doc/apache2/images/index.png -%%PORTDOCS%%share/doc/apache2/images/left.gif -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig1.fig -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig1.gif -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig1.png -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig2.fig -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig2.gif -%%PORTDOCS%%share/doc/apache2/images/mod_rewrite_fig2.png -%%PORTDOCS%%share/doc/apache2/images/pixel.gif -%%PORTDOCS%%share/doc/apache2/images/pixel.png -%%PORTDOCS%%share/doc/apache2/images/right.gif -%%PORTDOCS%%share/doc/apache2/images/sub.gif -%%PORTDOCS%%share/doc/apache2/images/sub.png -%%PORTDOCS%%share/doc/apache2/images/up.gif -%%PORTDOCS%%share/doc/apache2/index.html.de -%%PORTDOCS%%share/doc/apache2/index.html.en -%%PORTDOCS%%share/doc/apache2/index.html.fr -%%PORTDOCS%%share/doc/apache2/index.html.ja.jis -%%PORTDOCS%%share/doc/apache2/install.html.de -%%PORTDOCS%%share/doc/apache2/install.html.en -%%PORTDOCS%%share/doc/apache2/install.html.ja.jis -%%PORTDOCS%%share/doc/apache2/install.html.ko.euc-kr -%%PORTDOCS%%share/doc/apache2/install.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/install.xml -%%PORTDOCS%%share/doc/apache2/install.xml.de -%%PORTDOCS%%share/doc/apache2/install.xml.ja -%%PORTDOCS%%share/doc/apache2/install.xml.ru -%%PORTDOCS%%share/doc/apache2/invoking.html.de -%%PORTDOCS%%share/doc/apache2/invoking.html.en -%%PORTDOCS%%share/doc/apache2/invoking.html.ja.jis -%%PORTDOCS%%share/doc/apache2/invoking.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/invoking.xml -%%PORTDOCS%%share/doc/apache2/invoking.xml.de -%%PORTDOCS%%share/doc/apache2/invoking.xml.ja -%%PORTDOCS%%share/doc/apache2/invoking.xml.ru -%%PORTDOCS%%share/doc/apache2/logs.html.en -%%PORTDOCS%%share/doc/apache2/logs.html.ja.jis -%%PORTDOCS%%share/doc/apache2/logs.xml -%%PORTDOCS%%share/doc/apache2/logs.xml.ja -%%PORTDOCS%%share/doc/apache2/misc/custom_errordocs.html.en -%%PORTDOCS%%share/doc/apache2/misc/custom_errordocs.xml -%%PORTDOCS%%share/doc/apache2/misc/descriptors.html.en -%%PORTDOCS%%share/doc/apache2/misc/descriptors.xml -%%PORTDOCS%%share/doc/apache2/misc/fin_wait_2.html.en -%%PORTDOCS%%share/doc/apache2/misc/fin_wait_2.xml -%%PORTDOCS%%share/doc/apache2/misc/index.html.en -%%PORTDOCS%%share/doc/apache2/misc/index.xml -%%PORTDOCS%%share/doc/apache2/misc/known_client_problems.html.en -%%PORTDOCS%%share/doc/apache2/misc/known_client_problems.xml -%%PORTDOCS%%share/doc/apache2/misc/perf-tuning.html.en -%%PORTDOCS%%share/doc/apache2/misc/perf-tuning.xml -%%PORTDOCS%%share/doc/apache2/misc/rewriteguide.html.en -%%PORTDOCS%%share/doc/apache2/misc/rewriteguide.xml -%%PORTDOCS%%share/doc/apache2/misc/security_tips.html.en -%%PORTDOCS%%share/doc/apache2/misc/security_tips.xml -%%PORTDOCS%%share/doc/apache2/misc/tutorials.html.en -%%PORTDOCS%%share/doc/apache2/misc/tutorials.xml -%%PORTDOCS%%share/doc/apache2/mod/beos.html.en -%%PORTDOCS%%share/doc/apache2/mod/beos.xml -%%PORTDOCS%%share/doc/apache2/mod/core.html.de -%%PORTDOCS%%share/doc/apache2/mod/core.html.en -%%PORTDOCS%%share/doc/apache2/mod/core.xml -%%PORTDOCS%%share/doc/apache2/mod/core.xml.de -%%PORTDOCS%%share/doc/apache2/mod/directive-dict.html.en -%%PORTDOCS%%share/doc/apache2/mod/directive-dict.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/directive-dict.xml -%%PORTDOCS%%share/doc/apache2/mod/directive-dict.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/directives.html.de -%%PORTDOCS%%share/doc/apache2/mod/directives.html.en -%%PORTDOCS%%share/doc/apache2/mod/directives.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/directives.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/mod/directives.xml -%%PORTDOCS%%share/doc/apache2/mod/directives.xml.de -%%PORTDOCS%%share/doc/apache2/mod/directives.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/directives.xml.ru -%%PORTDOCS%%share/doc/apache2/mod/footer.html -%%PORTDOCS%%share/doc/apache2/mod/header.html -%%PORTDOCS%%share/doc/apache2/mod/index.html.de -%%PORTDOCS%%share/doc/apache2/mod/index.html.en -%%PORTDOCS%%share/doc/apache2/mod/index.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/index.xml -%%PORTDOCS%%share/doc/apache2/mod/index.xml.de -%%PORTDOCS%%share/doc/apache2/mod/index.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/leader.html.en -%%PORTDOCS%%share/doc/apache2/mod/leader.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_access.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_access.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_access.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_access.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_actions.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_actions.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_actions.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_actions.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_alias.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_alias.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_alias.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_alias.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_asis.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_asis.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_asis.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_asis.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_auth.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_auth.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_auth.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_auth.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_anon.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_anon.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_dbm.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_dbm.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_digest.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_digest.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_ldap.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_auth_ldap.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_autoindex.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_autoindex.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_autoindex.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_autoindex.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_cache.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_cache.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_cern_meta.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_cern_meta.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_cgid.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_cgid.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_charset_lite.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_charset_lite.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_dav.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_dav.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_dav.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_dav.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_dav_fs.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_dav_fs.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_dav_fs.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_deflate.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_deflate.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_deflate.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_deflate.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_dir.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_dir.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_dir.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_dir.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_disk_cache.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_disk_cache.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_echo.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_echo.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_echo.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_echo.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_env.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_env.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_env.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_env.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_example.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_example.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_expires.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_expires.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_ext_filter.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_ext_filter.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_file_cache.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_file_cache.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_headers.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_headers.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_imap.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_imap.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_include.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_include.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_include.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_include.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_info.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_info.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_info.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_info.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_isapi.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_isapi.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_ldap.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_ldap.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_log_config.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_log_config.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_logio.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_logio.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_mem_cache.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_mem_cache.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_mime.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_mime.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_mime.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_mime.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_mime_magic.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_mime_magic.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_nw_ssl.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_nw_ssl.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_connect.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_connect.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_ftp.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_ftp.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_http.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_proxy_http.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_rewrite.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_rewrite.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_so.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_so.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_so.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_so.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_speling.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_speling.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_speling.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_speling.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_ssl.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_ssl.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_status.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_status.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_suexec.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_suexec.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_suexec.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_suexec.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_userdir.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_userdir.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mod_userdir.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_userdir.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mod_usertrack.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_usertrack.xml -%%PORTDOCS%%share/doc/apache2/mod/mod_vhost_alias.html.en -%%PORTDOCS%%share/doc/apache2/mod/mod_vhost_alias.xml -%%PORTDOCS%%share/doc/apache2/mod/module-dict.html.en -%%PORTDOCS%%share/doc/apache2/mod/module-dict.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/module-dict.xml -%%PORTDOCS%%share/doc/apache2/mod/module-dict.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.html.de -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.html.en -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.xml -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.xml.de -%%PORTDOCS%%share/doc/apache2/mod/mpm_common.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mpm_netware.html.en -%%PORTDOCS%%share/doc/apache2/mod/mpm_netware.xml -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.html.de -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.html.en -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.xml -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.xml.de -%%PORTDOCS%%share/doc/apache2/mod/mpm_winnt.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/mpmt_os2.html.en -%%PORTDOCS%%share/doc/apache2/mod/mpmt_os2.xml -%%PORTDOCS%%share/doc/apache2/mod/perchild.html.en -%%PORTDOCS%%share/doc/apache2/mod/perchild.xml -%%PORTDOCS%%share/doc/apache2/mod/prefork.html.de -%%PORTDOCS%%share/doc/apache2/mod/prefork.html.en -%%PORTDOCS%%share/doc/apache2/mod/prefork.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/prefork.xml -%%PORTDOCS%%share/doc/apache2/mod/prefork.xml.de -%%PORTDOCS%%share/doc/apache2/mod/prefork.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.de -%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.en -%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml -%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml.de -%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml.ja -%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml.ru -%%PORTDOCS%%share/doc/apache2/mod/threadpool.html.en -%%PORTDOCS%%share/doc/apache2/mod/threadpool.xml -%%PORTDOCS%%share/doc/apache2/mod/worker.html.de -%%PORTDOCS%%share/doc/apache2/mod/worker.html.en -%%PORTDOCS%%share/doc/apache2/mod/worker.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mod/worker.xml -%%PORTDOCS%%share/doc/apache2/mod/worker.xml.de -%%PORTDOCS%%share/doc/apache2/mod/worker.xml.ja -%%PORTDOCS%%share/doc/apache2/mpm.html.en -%%PORTDOCS%%share/doc/apache2/mpm.html.ja.jis -%%PORTDOCS%%share/doc/apache2/mpm.html.ko.euc-kr -%%PORTDOCS%%share/doc/apache2/mpm.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/mpm.xml -%%PORTDOCS%%share/doc/apache2/mpm.xml.ja -%%PORTDOCS%%share/doc/apache2/mpm.xml.ru -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.de -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.en -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.fr -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.ja.jis -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.ko.euc-kr -%%PORTDOCS%%share/doc/apache2/new_features_2_0.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/new_features_2_0.xml -%%PORTDOCS%%share/doc/apache2/new_features_2_0.xml.de -%%PORTDOCS%%share/doc/apache2/new_features_2_0.xml.ja -%%PORTDOCS%%share/doc/apache2/new_features_2_0.xml.ru -%%PORTDOCS%%share/doc/apache2/platform/ebcdic.html.en -%%PORTDOCS%%share/doc/apache2/platform/ebcdic.xml -%%PORTDOCS%%share/doc/apache2/platform/footer.html -%%PORTDOCS%%share/doc/apache2/platform/header.html -%%PORTDOCS%%share/doc/apache2/platform/index.html.en -%%PORTDOCS%%share/doc/apache2/platform/index.xml -%%PORTDOCS%%share/doc/apache2/platform/netware.html.en -%%PORTDOCS%%share/doc/apache2/platform/netware.xml -%%PORTDOCS%%share/doc/apache2/platform/perf-hp.html.en -%%PORTDOCS%%share/doc/apache2/platform/perf-hp.xml -%%PORTDOCS%%share/doc/apache2/platform/win_compiling.html.en -%%PORTDOCS%%share/doc/apache2/platform/win_compiling.xml -%%PORTDOCS%%share/doc/apache2/platform/windows.html.en -%%PORTDOCS%%share/doc/apache2/platform/windows.xml -%%PORTDOCS%%share/doc/apache2/programs/ab.html -%%PORTDOCS%%share/doc/apache2/programs/apachectl.html.en -%%PORTDOCS%%share/doc/apache2/programs/apachectl.xml -%%PORTDOCS%%share/doc/apache2/programs/apxs.html -%%PORTDOCS%%share/doc/apache2/programs/dbmmanage.html -%%PORTDOCS%%share/doc/apache2/programs/footer.html -%%PORTDOCS%%share/doc/apache2/programs/header.html -%%PORTDOCS%%share/doc/apache2/programs/htdigest.html -%%PORTDOCS%%share/doc/apache2/programs/htpasswd.html -%%PORTDOCS%%share/doc/apache2/programs/httpd.html.en -%%PORTDOCS%%share/doc/apache2/programs/httpd.xml -%%PORTDOCS%%share/doc/apache2/programs/index.html.en -%%PORTDOCS%%share/doc/apache2/programs/index.xml -%%PORTDOCS%%share/doc/apache2/programs/logresolve.html -%%PORTDOCS%%share/doc/apache2/programs/other.html -%%PORTDOCS%%share/doc/apache2/programs/rotatelogs.html -%%PORTDOCS%%share/doc/apache2/programs/suexec.html -%%PORTDOCS%%share/doc/apache2/search/manual-index.cgi -%%PORTDOCS%%share/doc/apache2/sections.html.en -%%PORTDOCS%%share/doc/apache2/sections.html.ja.jis -%%PORTDOCS%%share/doc/apache2/sections.xml -%%PORTDOCS%%share/doc/apache2/sections.xml.ja -%%PORTDOCS%%share/doc/apache2/server-wide.html.en -%%PORTDOCS%%share/doc/apache2/server-wide.html.ja.jis -%%PORTDOCS%%share/doc/apache2/server-wide.xml -%%PORTDOCS%%share/doc/apache2/server-wide.xml.ja -%%PORTDOCS%%share/doc/apache2/sitemap.html.de -%%PORTDOCS%%share/doc/apache2/sitemap.html.en -%%PORTDOCS%%share/doc/apache2/sitemap.html.ja.jis -%%PORTDOCS%%share/doc/apache2/sitemap.xml -%%PORTDOCS%%share/doc/apache2/sitemap.xml.de -%%PORTDOCS%%share/doc/apache2/sitemap.xml.ja -%%PORTDOCS%%share/doc/apache2/ssl/footer.html -%%PORTDOCS%%share/doc/apache2/ssl/header.html -%%PORTDOCS%%share/doc/apache2/ssl/index.html.en -%%PORTDOCS%%share/doc/apache2/ssl/index.html.ja.jis -%%PORTDOCS%%share/doc/apache2/ssl/index.xml -%%PORTDOCS%%share/doc/apache2/ssl/index.xml.ja -%%PORTDOCS%%share/doc/apache2/ssl/ssl_compat.html.en -%%PORTDOCS%%share/doc/apache2/ssl/ssl_compat.xml -%%PORTDOCS%%share/doc/apache2/ssl/ssl_cover_logo.jpg -%%PORTDOCS%%share/doc/apache2/ssl/ssl_cover_title.jpg -%%PORTDOCS%%share/doc/apache2/ssl/ssl_faq.html.en -%%PORTDOCS%%share/doc/apache2/ssl/ssl_faq.xml -%%PORTDOCS%%share/doc/apache2/ssl/ssl_howto.html.en -%%PORTDOCS%%share/doc/apache2/ssl/ssl_howto.xml -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro.html.en -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro.xml -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig1.gif -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig2.gif -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig3.gif -%%PORTDOCS%%share/doc/apache2/ssl/ssl_overview_fig1.gif -%%PORTDOCS%%share/doc/apache2/ssl/ssl_template.imgdot-1x1-000000.gif -%%PORTDOCS%%share/doc/apache2/ssl/ssl_template.imgdot-1x1-transp.gif -%%PORTDOCS%%share/doc/apache2/stopping.html.de -%%PORTDOCS%%share/doc/apache2/stopping.html.en -%%PORTDOCS%%share/doc/apache2/stopping.html.ja.jis -%%PORTDOCS%%share/doc/apache2/stopping.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/stopping.xml -%%PORTDOCS%%share/doc/apache2/stopping.xml.de -%%PORTDOCS%%share/doc/apache2/stopping.xml.ja -%%PORTDOCS%%share/doc/apache2/stopping.xml.ru -%%PORTDOCS%%share/doc/apache2/style/common.dtd -%%PORTDOCS%%share/doc/apache2/style/css/manual-loose-100pc.css -%%PORTDOCS%%share/doc/apache2/style/css/manual-print.css -%%PORTDOCS%%share/doc/apache2/style/css/manual.css -%%PORTDOCS%%share/doc/apache2/style/lang/de.xml -%%PORTDOCS%%share/doc/apache2/style/lang/en.xml -%%PORTDOCS%%share/doc/apache2/style/lang/ja.xml -%%PORTDOCS%%share/doc/apache2/style/lang/ru.xml -%%PORTDOCS%%share/doc/apache2/style/lang/sv.xml -%%PORTDOCS%%share/doc/apache2/style/manual.de.xsl -%%PORTDOCS%%share/doc/apache2/style/manual.en.xsl -%%PORTDOCS%%share/doc/apache2/style/manual.ja.xsl -%%PORTDOCS%%share/doc/apache2/style/manual.pt-br.xsl -%%PORTDOCS%%share/doc/apache2/style/manual.ru.xsl -%%PORTDOCS%%share/doc/apache2/style/manual.sv.xsl -%%PORTDOCS%%share/doc/apache2/style/manualpage.dtd -%%PORTDOCS%%share/doc/apache2/style/modulesynopsis.dtd -%%PORTDOCS%%share/doc/apache2/style/sitemap.dtd -%%PORTDOCS%%share/doc/apache2/style/w3c/xhtml-lat1.ent -%%PORTDOCS%%share/doc/apache2/style/w3c/xhtml-special.ent -%%PORTDOCS%%share/doc/apache2/style/w3c/xhtml-symbol.ent -%%PORTDOCS%%share/doc/apache2/style/w3c/xhtml1-strict.dtd -%%PORTDOCS%%share/doc/apache2/style/w3c/xhtml1-transitional.dtd -%%PORTDOCS%%share/doc/apache2/style/xsl/common.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/directiveindex.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/manualpage.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/moduleindex.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/quickreference.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/sitemap.xsl -%%PORTDOCS%%share/doc/apache2/style/xsl/synopsis.xsl -%%PORTDOCS%%share/doc/apache2/suexec.html.en -%%PORTDOCS%%share/doc/apache2/suexec.html.ja.jis -%%PORTDOCS%%share/doc/apache2/suexec.xml -%%PORTDOCS%%share/doc/apache2/suexec.xml.ja -%%PORTDOCS%%share/doc/apache2/upgrading.html.de -%%PORTDOCS%%share/doc/apache2/upgrading.html.en -%%PORTDOCS%%share/doc/apache2/upgrading.html.fr -%%PORTDOCS%%share/doc/apache2/upgrading.html.ja.jis -%%PORTDOCS%%share/doc/apache2/upgrading.html.ko.euc-kr -%%PORTDOCS%%share/doc/apache2/upgrading.html.ru.koi8-r -%%PORTDOCS%%share/doc/apache2/upgrading.xml -%%PORTDOCS%%share/doc/apache2/upgrading.xml.de -%%PORTDOCS%%share/doc/apache2/upgrading.xml.ja -%%PORTDOCS%%share/doc/apache2/upgrading.xml.ru -%%PORTDOCS%%share/doc/apache2/urlmapping.html.en -%%PORTDOCS%%share/doc/apache2/urlmapping.html.ja.jis -%%PORTDOCS%%share/doc/apache2/urlmapping.xml -%%PORTDOCS%%share/doc/apache2/urlmapping.xml.ja -%%PORTDOCS%%share/doc/apache2/vhosts/details.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/details.xml -%%PORTDOCS%%share/doc/apache2/vhosts/examples.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/examples.xml -%%PORTDOCS%%share/doc/apache2/vhosts/fd-limits.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/fd-limits.html.ja.jis -%%PORTDOCS%%share/doc/apache2/vhosts/fd-limits.xml -%%PORTDOCS%%share/doc/apache2/vhosts/fd-limits.xml.ja -%%PORTDOCS%%share/doc/apache2/vhosts/footer.html -%%PORTDOCS%%share/doc/apache2/vhosts/header.html -%%PORTDOCS%%share/doc/apache2/vhosts/index.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/index.html.ja.jis -%%PORTDOCS%%share/doc/apache2/vhosts/index.xml -%%PORTDOCS%%share/doc/apache2/vhosts/index.xml.ja -%%PORTDOCS%%share/doc/apache2/vhosts/ip-based.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/ip-based.xml -%%PORTDOCS%%share/doc/apache2/vhosts/mass.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/mass.xml -%%PORTDOCS%%share/doc/apache2/vhosts/name-based.html.en -%%PORTDOCS%%share/doc/apache2/vhosts/name-based.html.ja.jis -%%PORTDOCS%%share/doc/apache2/vhosts/name-based.xml -%%PORTDOCS%%www/data-dist/index.html.sv -@exec mkdir -p %D/www -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin-dist %D/www/cgi-bin -www/cgi-bin-dist/printenv -www/cgi-bin-dist/test-cgi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -@exec [ ! -d %D/www/data ] && ln -fs %D/www/data-dist %D/www/data -www/data-dist/apache_pb.gif -www/data-dist/apache_pb.png -www/data-dist/apache_pb2.gif -www/data-dist/apache_pb2.png -www/data-dist/apache_pb2_ani.gif -www/data-dist/index.html.ca -www/data-dist/index.html.cz.iso8859-2 -www/data-dist/index.html.de -www/data-dist/index.html.dk -www/data-dist/index.html.ee -www/data-dist/index.html.el -www/data-dist/index.html.en -www/data-dist/index.html.es -www/data-dist/index.html.et -www/data-dist/index.html.fr -www/data-dist/index.html.he.iso8859-8 -www/data-dist/index.html.hr.iso8859-2 -www/data-dist/index.html.it -www/data-dist/index.html.ja.iso2022-jp -www/data-dist/index.html.ko.euc-kr -www/data-dist/index.html.lb.utf8 -www/data-dist/index.html.nl -www/data-dist/index.html.nn -www/data-dist/index.html.no -www/data-dist/index.html.po.iso8859-2 -www/data-dist/index.html.pt -www/data-dist/index.html.pt-br -www/data-dist/index.html.ru.cp-1251 -www/data-dist/index.html.ru.cp866 -www/data-dist/index.html.ru.iso-ru -www/data-dist/index.html.ru.koi8-r -www/data-dist/index.html.ru.utf8 -www/data-dist/index.html.var -www/data-dist/index.html.zh -@unexec if [ -L %D/www/error ]; then rm -f %D/www/error; fi -@exec [ ! -d %D/www/error ] && ln -fs %D/www/error-dist %D/www/error -www/error-dist/HTTP_BAD_GATEWAY.html.var -www/error-dist/HTTP_BAD_REQUEST.html.var -www/error-dist/HTTP_FORBIDDEN.html.var -www/error-dist/HTTP_GONE.html.var -www/error-dist/HTTP_INTERNAL_SERVER_ERROR.html.var -www/error-dist/HTTP_LENGTH_REQUIRED.html.var -www/error-dist/HTTP_METHOD_NOT_ALLOWED.html.var -www/error-dist/HTTP_NOT_ACCEPTABLE.html.var -www/error-dist/HTTP_NOT_FOUND.html.var -www/error-dist/HTTP_NOT_IMPLEMENTED.html.var -www/error-dist/HTTP_PRECONDITION_FAILED.html.var -www/error-dist/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -www/error-dist/HTTP_REQUEST_TIME_OUT.html.var -www/error-dist/HTTP_REQUEST_URI_TOO_LARGE.html.var -www/error-dist/HTTP_SERVICE_UNAVAILABLE.html.var -www/error-dist/HTTP_UNAUTHORIZED.html.var -www/error-dist/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -www/error-dist/HTTP_VARIANT_ALSO_VARIES.html.var -www/error-dist/README -www/error-dist/contact.html.var -www/error-dist/include/bottom.html -www/error-dist/include/spacer.html -www/error-dist/include/top.html -@unexec if [ -L %D/www/icons ]; then rm -f %D/www/icons; fi -@exec [ ! -d %D/www/icons ] && ln -fs %D/www/icons-dist %D/www/icons -www/icons-dist/README -www/icons-dist/a.gif -www/icons-dist/a.png -www/icons-dist/alert.black.gif -www/icons-dist/alert.black.png -www/icons-dist/alert.red.gif -www/icons-dist/alert.red.png -www/icons-dist/apache_pb.gif -www/icons-dist/apache_pb.png -www/icons-dist/apache_pb2.gif -www/icons-dist/apache_pb2.png -www/icons-dist/apache_pb2_ani.gif -www/icons-dist/back.gif -www/icons-dist/back.png -www/icons-dist/ball.gray.gif -www/icons-dist/ball.gray.png -www/icons-dist/ball.red.gif -www/icons-dist/ball.red.png -www/icons-dist/binary.gif -www/icons-dist/binary.png -www/icons-dist/binhex.gif -www/icons-dist/binhex.png -www/icons-dist/blank.gif -www/icons-dist/blank.png -www/icons-dist/bomb.gif -www/icons-dist/bomb.png -www/icons-dist/box1.gif -www/icons-dist/box1.png -www/icons-dist/box2.gif -www/icons-dist/box2.png -www/icons-dist/broken.gif -www/icons-dist/broken.png -www/icons-dist/burst.gif -www/icons-dist/burst.png -www/icons-dist/c.gif -www/icons-dist/c.png -www/icons-dist/comp.blue.gif -www/icons-dist/comp.blue.png -www/icons-dist/comp.gray.gif -www/icons-dist/comp.gray.png -www/icons-dist/compressed.gif -www/icons-dist/compressed.png -www/icons-dist/continued.gif -www/icons-dist/continued.png -www/icons-dist/dir.gif -www/icons-dist/dir.png -www/icons-dist/diskimg.gif -www/icons-dist/diskimg.png -www/icons-dist/down.gif -www/icons-dist/down.png -www/icons-dist/dvi.gif -www/icons-dist/dvi.png -www/icons-dist/f.gif -www/icons-dist/f.png -www/icons-dist/folder.gif -www/icons-dist/folder.open.gif -www/icons-dist/folder.open.png -www/icons-dist/folder.png -www/icons-dist/folder.sec.gif -www/icons-dist/folder.sec.png -www/icons-dist/forward.gif -www/icons-dist/forward.png -www/icons-dist/freebsd.gif -www/icons-dist/generic.gif -www/icons-dist/generic.png -www/icons-dist/generic.red.gif -www/icons-dist/generic.red.png -www/icons-dist/generic.sec.gif -www/icons-dist/generic.sec.png -www/icons-dist/hand.right.gif -www/icons-dist/hand.right.png -www/icons-dist/hand.up.gif -www/icons-dist/hand.up.png -www/icons-dist/icon.sheet.gif -www/icons-dist/icon.sheet.png -www/icons-dist/image1.gif -www/icons-dist/image1.png -www/icons-dist/image2.gif -www/icons-dist/image2.png -www/icons-dist/image3.gif -www/icons-dist/image3.png -www/icons-dist/index.gif -www/icons-dist/index.png -www/icons-dist/layout.gif -www/icons-dist/layout.png -www/icons-dist/left.gif -www/icons-dist/left.png -www/icons-dist/link.gif -www/icons-dist/link.png -www/icons-dist/movie.gif -www/icons-dist/movie.png -www/icons-dist/p.gif -www/icons-dist/p.png -www/icons-dist/patch.gif -www/icons-dist/patch.png -www/icons-dist/pdf.gif -www/icons-dist/pdf.png -www/icons-dist/pie0.gif -www/icons-dist/pie0.png -www/icons-dist/pie1.gif -www/icons-dist/pie1.png -www/icons-dist/pie2.gif -www/icons-dist/pie2.png -www/icons-dist/pie3.gif -www/icons-dist/pie3.png -www/icons-dist/pie4.gif -www/icons-dist/pie4.png -www/icons-dist/pie5.gif -www/icons-dist/pie5.png -www/icons-dist/pie6.gif -www/icons-dist/pie6.png -www/icons-dist/pie7.gif -www/icons-dist/pie7.png -www/icons-dist/pie8.gif -www/icons-dist/pie8.png -www/icons-dist/portal.gif -www/icons-dist/portal.png -www/icons-dist/ps.gif -www/icons-dist/ps.png -www/icons-dist/quill.gif -www/icons-dist/quill.png -www/icons-dist/right.gif -www/icons-dist/right.png -www/icons-dist/screw1.gif -www/icons-dist/screw1.png -www/icons-dist/screw2.gif -www/icons-dist/screw2.png -www/icons-dist/script.gif -www/icons-dist/script.png -www/icons-dist/small/README.txt -www/icons-dist/small/back.gif -www/icons-dist/small/back.png -www/icons-dist/small/binary.gif -www/icons-dist/small/binary.png -www/icons-dist/small/binhex.gif -www/icons-dist/small/binhex.png -www/icons-dist/small/blank.gif -www/icons-dist/small/blank.png -www/icons-dist/small/broken.gif -www/icons-dist/small/broken.png -www/icons-dist/small/burst.gif -www/icons-dist/small/burst.png -www/icons-dist/small/comp1.gif -www/icons-dist/small/comp1.png -www/icons-dist/small/comp2.gif -www/icons-dist/small/comp2.png -www/icons-dist/small/compressed.gif -www/icons-dist/small/compressed.png -www/icons-dist/small/continued.gif -www/icons-dist/small/continued.png -www/icons-dist/small/dir.gif -www/icons-dist/small/dir.png -www/icons-dist/small/dir2.gif -www/icons-dist/small/dir2.png -www/icons-dist/small/doc.gif -www/icons-dist/small/doc.png -www/icons-dist/small/forward.gif -www/icons-dist/small/forward.png -www/icons-dist/small/generic.gif -www/icons-dist/small/generic.png -www/icons-dist/small/generic2.gif -www/icons-dist/small/generic2.png -www/icons-dist/small/generic3.gif -www/icons-dist/small/generic3.png -www/icons-dist/small/image.gif -www/icons-dist/small/image.png -www/icons-dist/small/image2.gif -www/icons-dist/small/image2.png -www/icons-dist/small/index.gif -www/icons-dist/small/index.png -www/icons-dist/small/key.gif -www/icons-dist/small/key.png -www/icons-dist/small/movie.gif -www/icons-dist/small/movie.png -www/icons-dist/small/patch.gif -www/icons-dist/small/patch.png -www/icons-dist/small/ps.gif -www/icons-dist/small/ps.png -www/icons-dist/small/rainbow.gif -www/icons-dist/small/rainbow.png -www/icons-dist/small/sound.gif -www/icons-dist/small/sound.png -www/icons-dist/small/sound2.gif -www/icons-dist/small/sound2.png -www/icons-dist/small/tar.gif -www/icons-dist/small/tar.png -www/icons-dist/small/text.gif -www/icons-dist/small/text.png -www/icons-dist/small/transfer.gif -www/icons-dist/small/transfer.png -www/icons-dist/small/unknown.gif -www/icons-dist/small/unknown.png -www/icons-dist/small/uu.gif -www/icons-dist/small/uu.png -www/icons-dist/sound1.gif -www/icons-dist/sound1.png -www/icons-dist/sound2.gif -www/icons-dist/sound2.png -www/icons-dist/sphere1.gif -www/icons-dist/sphere1.png -www/icons-dist/sphere2.gif -www/icons-dist/sphere2.png -www/icons-dist/tar.gif -www/icons-dist/tar.png -www/icons-dist/tex.gif -www/icons-dist/tex.png -www/icons-dist/text.gif -www/icons-dist/text.png -www/icons-dist/transfer.gif -www/icons-dist/transfer.png -www/icons-dist/unknown.gif -www/icons-dist/unknown.png -www/icons-dist/up.gif -www/icons-dist/up.png -www/icons-dist/uu.gif -www/icons-dist/uu.png -www/icons-dist/uuencoded.gif -www/icons-dist/uuencoded.png -www/icons-dist/world1.gif -www/icons-dist/world1.png -www/icons-dist/world2.gif -www/icons-dist/world2.png -@dirrm www/icons-dist/small -@dirrm www/icons-dist -@dirrm www/error-dist/include -@dirrm www/error-dist -@dirrm www/data-dist -@dirrm www/cgi-bin-dist -@dirrm www -%%PORTDOCS%%@dirrm share/doc/apache2/vhosts -%%PORTDOCS%%@dirrm share/doc/apache2/style/xsl -%%PORTDOCS%%@dirrm share/doc/apache2/style/w3c -%%PORTDOCS%%@dirrm share/doc/apache2/style/lang -%%PORTDOCS%%@dirrm share/doc/apache2/style/css -%%PORTDOCS%%@dirrm share/doc/apache2/style -%%PORTDOCS%%@dirrm share/doc/apache2/ssl -%%PORTDOCS%%@dirrm share/doc/apache2/search -%%PORTDOCS%%@dirrm share/doc/apache2/programs -%%PORTDOCS%%@dirrm share/doc/apache2/platform -%%PORTDOCS%%@dirrm share/doc/apache2/mod -%%PORTDOCS%%@dirrm share/doc/apache2/misc -%%PORTDOCS%%@dirrm share/doc/apache2/images -%%PORTDOCS%%@dirrm share/doc/apache2/howto -%%PORTDOCS%%@dirrm share/doc/apache2/faq -%%PORTDOCS%%@dirrm share/doc/apache2/developer -%%PORTDOCS%%@dirrm share/doc/apache2 -@dirrm share/apache2/build -@dirrm share/apache2 -@dirrm libexec/apache2 -@dirrm lib/apache2 -@dirrm include/apache2 -@dirrm etc/apache2 |