diff options
Diffstat (limited to 'www/apache13-ssl')
19 files changed, 0 insertions, 1264 deletions
diff --git a/www/apache13-ssl/Makefile b/www/apache13-ssl/Makefile deleted file mode 100644 index 59cc9e57489b..000000000000 --- a/www/apache13-ssl/Makefile +++ /dev/null @@ -1,130 +0,0 @@ -# New ports collection makefile for: apache-ssl HTTPSD -# Date created: 8th November, 1998 -# Whom: Adam Laurie <adam@algroup.co.uk> -# based on apache port by ache@nagual.pp.ru -# and apache-ssl port by Mark Murray <mark@grondar.za>. -# Oh, and with a little bit of help from Ben :) -# -# $FreeBSD$ - -PORTNAME= apache+ssl -PORTVERSION= ${APACHE_VERSION}.${APACHE_SSL_VERSION} -PORTREVISION= 2 -CATEGORIES= www security -MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ - ${MASTER_SITES_APACHE_SSL:S/$/:ssl/} -DISTNAME= apache_${APACHE_VERSION} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - apache_${APACHE_VERSION}+ssl_${APACHE_SSL_VERSION}${EXTRACT_SUFX}:ssl -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} - -MAINTAINER= apache@FreeBSD.org -COMMENT= Apache secure webserver integrating OpenSSL - -FORBIDDEN= CVE-2011-3368, no patches against this issue -DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now -EXPIRATION_DATE= 2011-11-01 - -MAKE_JOBS_SAFE= yes - -CONFLICTS= apache+mod_ssl-1.* apache+mod_ssl+ipv6-1.* apache+mod_ssl+modsnmp-1.* \ - apache+mod_ssl+mod_snmp+ipv6-1.* apache+mod_ssl+mod_accel-1.* \ - apache+mod_ssl+mod_snmp+mod_accel-1.* \ - apache+ipv6-1.* apache-1.* apache-2.* apache_fp-1.* \ - caudium-devel-1.* caudium10-1.* caudium12-1.* \ - ru-apache+mod_ssl-1.* ru-apache-1.* - -APACHE_VERSION= 1.3.41 -APACHE_SSL_VERSION= 1.59 -USE_OPENSSL= yes -USE_PERL5= yes -HAS_CONFIGURE= yes -USE_RC_SUBR= apache -SUB_LIST+= WWWOWN=${WWWOWN} -MAKE_ENV+= EXAMPLESDIR=${EXAMPLESDIR} -USE_APACHE= common13 - -MASTER_SITES_APACHE_SSL= \ - ftp://ftp.ox.ac.uk/pub/crypto/SSL/Apache-SSL/ \ - ftp://ftp.it.net.au/mirrors/crypto/SSL/Apache-SSL/ \ - ftp://opensores.thebunker.net/pub/mirrors/apache-ssl/ - -APACHE_HARD_SERVER_LIMIT?= 512 - -CFLAGS+= -I${OPENSSLINC}/openssl -CONFIGURE_ARGS+= \ - --prefix=${PREFIX} \ - --server-uid=www \ - --server-gid=www \ - --with-perl=${PERL} \ - --with-layout=FreeBSD \ - --without-confadjust \ - --disable-module=auth_dbm \ - --sysconfdir=${PREFIX}/etc/apache \ - --includedir=${PREFIX}/include/apache \ - --localstatedir=/var \ - --datadir=${PREFIX}/www \ - --proxycachedir=${PREFIX}/www/proxy \ - --libexecdir=${PREFIX}/libexec/apache \ - --target=httpsd - -# --enable-shared=remain \ - -OPTIM= -DHARD_SERVER_LIMIT=${APACHE_HARD_SERVER_LIMIT} \ - -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -DOCSDIR= ${PREFIX}/share/doc/apache - -.if defined(APACHE_PERF_TUNING) -OPTIM+= -DBUFFERED_LOGS -CFLAGS+= -O6 -fomit-frame-pointer -.endif - -CONFIGURE_ENV+= OPTIM='${OPTIM}' -CONFIGURE_ENV+= EXTRA_SSL_LIBS="-L${OPENSSLLIB} -L${LOCALBASE}/lib" - -.if defined(WITH_SUEXEC) -MAN8= suexec.8 -PLIST_SUB+= SUB_SUEXEC="" -.else -PLIST_SUB+= SUB_SUEXEC="@comment " -.endif - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8+= ab.8 httpsdctl.8 apxs.8 httpsd.8 logresolve.8 rotatelogs.8 - -.include "${.CURDIR}/Makefile.modules" -.include <bsd.port.pre.mk> - -post-extract: - @cd ${WRKSRC} && ${TAR} xzf ${DISTDIR}/${DIST_SUBDIR}/apache_${APACHE_VERSION}+ssl_${APACHE_SSL_VERSION}${EXTRACT_SUFX} - -post-patch: - @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} ./FixPatch ${OPENSSLBASE} - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/post-patch-conf:httpd.conf-dist - @${REINPLACE_CMD} -e 's|echo aout|echo elf|' \ - ${WRKSRC}/src/Configure -.if defined(NOPORTDOCS) - (cd ${WRKSRC} ; ${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extra-patch-noportdocs) -.endif - -post-install: - @${ECHO_CMD} "" - @${ECHO_CMD} "SSL is disabled by default" - @${ECHO_CMD} "Please read:" - @${ECHO_CMD} " http://www.apache-ssl.org/docs.html" - @${ECHO_CMD} " to know how to configure correctly apache-ssl" - @${ECHO_CMD} "" - -certificate: - -${MKDIR} ${PREFIX}/etc/apache/certs - @if [ -f ${OPENSSLDIR}/openssl.cnf ]; then \ - cd ${WRKSRC}/src; ${MAKE} ${MAKE_ENV} $@; \ - ${CP} ${WRKSRC}/SSLconf/conf/httpsd.pem \ - ${PREFIX}/etc/apache/certs/cert.pem; \ - else \ - ${ECHO_CMD} "You must create the file ${OPENSSLDIR}/openssl.cnf first."; \ - fi - -.include <bsd.port.post.mk> diff --git a/www/apache13-ssl/Makefile.modules b/www/apache13-ssl/Makefile.modules deleted file mode 100644 index 8ff5b36d529f..000000000000 --- a/www/apache13-ssl/Makefile.modules +++ /dev/null @@ -1,28 +0,0 @@ -# Makefile.modules -# Author: Clement Laforet <clement@FreeBSD.org> -# -# 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$ -# - -AUTH_MODULES= access auth auth_anon auth_dbm auth_db auth_digest -LOG_MODULES= log_forensic log_referer log_agent -MMAP_MODULES= mmap_static -MISC_MODULES= actions alias asis autoindex cern_meta cgi digest \ - dir env expires headers imap include \ - info log_config mime mime_magic negotiation rewrite \ - speling status unique_id userdir usertrack vhost_alias -PROXY_MODULES= proxy -SSL_MODULES= apache_ssl - -DEFAULT_MODULES_CATEGORIES= \ - AUTH LOG MMAP MISC SSL - -ALL_MODULES_CATEGORIES= AUTH LOG MMAP MISC PROXY SSL - -.if !defined(WITH_ALL_STATIC_MODULES) -WITH_STATIC_MODULES+= apache_ssl -.endif diff --git a/www/apache13-ssl/distinfo b/www/apache13-ssl/distinfo deleted file mode 100644 index 55f86ef66ecb..000000000000 --- a/www/apache13-ssl/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -SHA256 (apache_1.3.41.tar.gz) = 4b016d3998f822af7a1a515e9626590f5473a4dd5c3e8466f20a6a86a2a63adc -SIZE (apache_1.3.41.tar.gz) = 2483180 -SHA256 (apache_1.3.41+ssl_1.59.tar.gz) = acf6a7cae62338b70f5788bf93fcfe7c3a52be1727b4ec6e6d48e3a51edd29ed -SIZE (apache_1.3.41+ssl_1.59.tar.gz) = 58499 diff --git a/www/apache13-ssl/files/apache.in b/www/apache13-ssl/files/apache.in deleted file mode 100644 index f688bf2eec93..000000000000 --- a/www/apache13-ssl/files/apache.in +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# renamed from ports/www/apache13-ssl/files/apache.sh,v 1.2 2006/02/20 20:47:46 dougb Exp -# - -# PROVIDE: apache -# REQUIRE: NETWORKING SERVERS -# BEFORE: DAEMON -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable apache: -# apache_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable apache -# apachelimits_enable (bool):Set to "NO" by default. -# Set it to yes to run `limits $limits_args` -# just before apache starts. -# apache_flags (str): Set to "" by default. -# Extra flags passed to start command. -# apachelimits_args (str): Default to "-e -C daemon" -# Arguments of pre-start limits run. -# -. /etc/rc.subr - -name="apache" -rcvar=`set_rcvar` - -start_precmd="apache_precmd" -restart_precmd="apache_checkconfig" -reload_precmd="apache_checkconfig" -command="%%PREFIX%%/sbin/httpsd" -pidfile="/var/run/httpsd.pid" -required_files=%%PREFIX%%/etc/apache/httpsd.conf - -load_rc_config $name - -[ -z "$apache_enable" ] && apache_enable="NO" -[ -z "$apachelimits_enable" ] && apachelimits_enable="NO" -[ -z "$apachelimits_args" ] && apachelimits_args="-e -C daemon" - -apache_checkconfig() -{ - echo "Performing sanity check on apache configuration:" - ${command} -t -} - -apache_precmd() -{ - if checkyesno apachelimits_enable - then - eval `/usr/bin/limits ${apachelimits_args}` 2>/dev/null - else - return 0 - fi - -} - -sig_reload=SIGUSR1 - -extra_commands="reload" -run_rc_command "$1" diff --git a/www/apache13-ssl/files/extra-patch-noportdocs b/www/apache13-ssl/files/extra-patch-noportdocs deleted file mode 100644 index 629164bedbec..000000000000 --- a/www/apache13-ssl/files/extra-patch-noportdocs +++ /dev/null @@ -1,22 +0,0 @@ ---- Makefile.tmpl.orig 2008-07-01 01:08:04.000000000 +0000 -+++ Makefile.tmpl 2008-07-01 01:08:17.000000000 +0000 -@@ -228,7 +228,6 @@ - $(MKDIR) $(root)$(mandir)/man8 - $(MKDIR) $(root)$(sysconfdir) - $(MKDIR) $(root)$(htdocsdir)-dist -- $(MKDIR) $(root)$(manualdir) - $(MKDIR) $(root)$(iconsdir) - $(MKDIR) $(root)$(cgidir)-dist - $(MKDIR) $(root)$(includedir) -@@ -422,11 +421,6 @@ - (cd $(root)$(htdocsdir)-dist/ && $(TAR) -xf -); \ - find $(root)$(htdocsdir)-dist/ -type d -exec chmod a+rx {} \; ; \ - find $(root)$(htdocsdir)-dist/ -type f -print | xargs chmod a+r ; -- echo "Copying tree $(TOP)/htdocs/manual -> $(root)/$(manualdir)/"; \ -- (cd $(TOP)/htdocs/manual/ && $(TAR) $(TAROPT) - *) |\ -- (cd $(root)$(manualdir)/ && $(TAR) -xf -); \ -- find $(root)$(manualdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(manualdir)/ -type f -print | xargs chmod a+r ; - if [ ! -d $(root)$(htdocsdir)/ ]; then \ - $(LN) -sf $(root)$(htdocsdir)-dist $(root)$(htdocsdir); \ - fi diff --git a/www/apache13-ssl/files/patch-FixPatch b/www/apache13-ssl/files/patch-FixPatch deleted file mode 100644 index 1c293818bb9a..000000000000 --- a/www/apache13-ssl/files/patch-FixPatch +++ /dev/null @@ -1,18 +0,0 @@ ---- FixPatch.orig Sun May 23 13:34:08 1999 -+++ FixPatch Mon May 31 09:03:49 1999 -@@ -112,13 +112,6 @@ - echo "Your version of patch is out-of-date. You need patch 2.1 or 2.5." - fi - --echo -n "Do you want me to apply the fixed-up Apache-SSL patch for you? [n] " --read ans --echo $ans | grep -i "^[ \t]*y" >/dev/null --if [ $? = 0 ]; then -- patch -p1 <SSLpatch.fixed-up --else -- echo "OK, I won't apply the fixed-up patch. I've left it in SSLpatch.fixed-up"; --fi -+patch -p1 <SSLpatch.fixed-up - - exit - diff --git a/www/apache13-ssl/files/patch-Makefile.tmpl b/www/apache13-ssl/files/patch-Makefile.tmpl deleted file mode 100644 index 9d5d458d913e..000000000000 --- a/www/apache13-ssl/files/patch-Makefile.tmpl +++ /dev/null @@ -1,118 +0,0 @@ ---- Makefile.tmpl.orig Fri Feb 20 23:40:50 2004 -+++ Makefile.tmpl Mon Dec 13 21:59:00 2004 -@@ -226,10 +226,10 @@ - $(MKDIR) $(root)$(mandir)/man1 - $(MKDIR) $(root)$(mandir)/man8 - $(MKDIR) $(root)$(sysconfdir) -- $(MKDIR) $(root)$(htdocsdir) -+ $(MKDIR) $(root)$(htdocsdir)-dist - $(MKDIR) $(root)$(manualdir) - $(MKDIR) $(root)$(iconsdir) -- $(MKDIR) $(root)$(cgidir) -+ $(MKDIR) $(root)$(cgidir)-dist - $(MKDIR) $(root)$(includedir) - $(MKDIR) $(root)$(includedir)/xml - $(MKDIR) $(root)$(runtimedir) -@@ -415,33 +415,29 @@ - # icons and distributed CGI scripts. - install-data: - @echo "===> [data: Installing initial data files]" -- -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -- else \ -- echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)/"; \ -+ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)-dist/"; \ - (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - index* apache_pb.* ) |\ -- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \ -- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(htdocsdir)/ -type f -print | xargs chmod a+r ; \ -- fi -- -@if [ -d $(TOP)/htdocs/manual ]; then \ -+ (cd $(root)$(htdocsdir)-dist/ && $(TAR) -xf -); \ -+ find $(root)$(htdocsdir)-dist/ -type d -exec chmod a+rx {} \; ; \ -+ find $(root)$(htdocsdir)-dist/ -type f -print | xargs chmod a+r ; - echo "Copying tree $(TOP)/htdocs/manual -> $(root)/$(manualdir)/"; \ - (cd $(TOP)/htdocs/manual/ && $(TAR) $(TAROPT) - *) |\ - (cd $(root)$(manualdir)/ && $(TAR) -xf -); \ - find $(root)$(manualdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(manualdir)/ -type f -print | xargs chmod a+r ; \ -+ find $(root)$(manualdir)/ -type f -print | xargs chmod a+r ; -+ if [ ! -d $(root)$(htdocsdir)/ ]; then \ -+ $(LN) -sf $(root)$(htdocsdir)-dist $(root)$(htdocsdir); \ - fi -- -@if [ -f $(root)$(cgidir)/printenv ]; then \ -- echo "[PRESERVING EXISTING CGI SUBDIR: $(root)$(cgidir)/]"; \ -- else \ - for script in printenv test-cgi; do \ - cat $(TOP)/cgi-bin/$${script} |\ - sed -e 's;^#!/.*perl;#!$(PERL);' \ - > $(TOP)/$(SRC)/.apaci.install.tmp; \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \ -- done; \ -- fi -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)-dist/$${script}"; \ -+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)-dist/$${script}; \ -+ done; -+ if [ ! -d $(root)$(cgidir)/ ]; then \ -+ $(LN) -sf $(root)$(cgidir)-dist $(root)$(cgidir); \ -+ fi - @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ - (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ - (cd $(root)$(iconsdir)/ && $(TAR) -xf -); \ -@@ -462,7 +458,7 @@ - if [ ".$(TARGET)" = .httpd ]; then \ - target_prefix=""; \ - else \ -- target_prefix="$(TARGET)_"; \ -+ target_prefix="$(TARGET)-"; \ - fi; \ - (echo "##"; \ - echo "## $${target_conf} -- Apache HTTP server configuration file"; \ -@@ -480,10 +476,10 @@ - -e 's;logs/accept\.lock;$(runtimedir)/$(TARGET).lock;' \ - -e 's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \ - -e 's;logs/httpd\.pid;$(runtimedir)/$(TARGET).pid;' \ -- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \ -- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \ -- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \ -- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \ -+ -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access.log;" \ -+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error.log;" \ -+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer.log;" \ -+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent.log;" \ - -e 's;conf/magic;$(sysconfdir)/magic;' \ - -e 's;conf/srm.conf;$(sysconfdir)/srm.conf;' \ - -e 's;conf/access.conf;$(sysconfdir)/access.conf;' \ -@@ -495,21 +491,22 @@ - -e 's;ServerAdmin you@your.address;ServerAdmin $(conf_serveradmin);' \ - -e 's;ServerName new.host.name;ServerName $(conf_servername);' \ - > $(TOP)/$(SRC)/.apaci.install.tmp && \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(sysconfdir)/$${target_conf}.default"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sysconfdir)/$${target_conf}.default; \ -- if [ ! -f "$(root)$(sysconfdir)/$${target_conf}" ]; then \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(sysconfdir)/$${target_conf}"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sysconfdir)/$${target_conf}; \ -+ mkdir -p $(root)$(EXAMPLESDIR) ; \ -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(EXAMPLESDIR)/$${target_conf}-dist"; \ -+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(EXAMPLESDIR)/$${target_conf}-dist; \ -+ if [ ! -f "$(root)$(sysconfdir)/$${target_conf}" ]; then \ -+ echo "$(INSTALL_DATA) $(root)$(EXAMPLESDIR)/$${target_conf}-dist $(root)$(sysconfdir)/$${target_conf}"; \ -+ $(INSTALL_DATA) $(root)$(EXAMPLESDIR)/$${target_conf}-dist $(root)$(sysconfdir)/$${target_conf}; \ - else \ - echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${target_conf}]"; \ - fi; \ - done - -@for conf in mime.types magic; do \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}.default"; \ -- $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}.default; \ -+ mkdir -p $(root)$(EXAMPLESDIR) ; \ -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(EXAMPLESDIR)/$${conf}-dist"; \ -+ $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(EXAMPLESDIR)/$${conf}-dist; \ - if [ ! -f "$(root)$(sysconfdir)/$${conf}" ]; then \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}"; \ -- $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}; \ -+ $(INSTALL_DATA) $(root)$(EXAMPLESDIR)/$${conf}-dist $(root)$(sysconfdir)/$${conf}; \ - else \ - echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${conf}]"; \ - fi; \ diff --git a/www/apache13-ssl/files/patch-SSLpatch b/www/apache13-ssl/files/patch-SSLpatch deleted file mode 100644 index 188e59f2d112..000000000000 --- a/www/apache13-ssl/files/patch-SSLpatch +++ /dev/null @@ -1,17 +0,0 @@ ---- SSLpatch.orig Sat Jan 14 13:45:38 2006 -+++ SSLpatch Sat Jan 14 13:47:30 2006 -@@ -60,10 +60,10 @@ - +SSL_BASE=/usr - +SSL_INCLUDE= -I$(SSL_BASE)/include - +SSL_CFLAGS= -DAPACHE_SSL --+SSL_LIB_DIR=/usr/lib --+SSL_LIBS= -L$(SSL_LIB_DIR) -lssl -lcrypto --+SSL_APP_DIR=/usr/bin --+SSL_APP=/usr/bin/openssl -++SSL_LIB_DIR=$(SSL_BASE) -++SSL_LIBS= -L$(SSL_LIB_DIR) -lssl -lcrypto $(EXTRA_SSL_LIBS) -++SSL_APP_DIR=$(SSL_BASE)/bin -++SSL_APP=$(SSL_APP_DIR)/openssl - + - ################################################################ - # Name of the installed Apache HTTP webserver. diff --git a/www/apache13-ssl/files/patch-configure b/www/apache13-ssl/files/patch-configure deleted file mode 100644 index 78be57c08eed..000000000000 --- a/www/apache13-ssl/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig Tue May 21 16:24:59 2002 -+++ configure Wed Jun 19 05:27:31 2002 -@@ -1251,7 +1251,7 @@ - echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid" - echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard" - echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock" -- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log" -+ echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log" - echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types" - echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf" - echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf" -@@ -1349,7 +1349,7 @@ - echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci - echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci - echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci --echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci - echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci - echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci - echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci diff --git a/www/apache13-ssl/files/patch-fix-build-openssl-0.9.8 b/www/apache13-ssl/files/patch-fix-build-openssl-0.9.8 deleted file mode 100644 index 154aeab13d5a..000000000000 --- a/www/apache13-ssl/files/patch-fix-build-openssl-0.9.8 +++ /dev/null @@ -1,14 +0,0 @@ ---- src/modules/ssl/apache_ssl.c.orig Sun Oct 2 14:55:10 2005 -+++ src/modules/ssl/apache_ssl.c Sun Oct 2 14:56:47 2005 -@@ -72,6 +72,11 @@ - #include "http_main.h" - - -+#ifndef EVP_F_EVP_DECRYPTFINAL -+#ifdef EVP_F_EVP_DECRYPTFINAL_EX -+#define EVP_F_EVP_DECRYPTFINAL EVP_F_EVP_DECRYPTFINAL_EX -+#endif -+#endif - /* Note that APACHE_SSL_EXPORT_CERTS is defined in buff.h */ - - /* Temp */ diff --git a/www/apache13-ssl/files/patch-httpd.conf-dist b/www/apache13-ssl/files/patch-httpd.conf-dist deleted file mode 100644 index 90ac6002e0c5..000000000000 --- a/www/apache13-ssl/files/patch-httpd.conf-dist +++ /dev/null @@ -1,32 +0,0 @@ ---- conf/httpd.conf-dist.orig Wed Sep 4 06:39:41 2002 -+++ conf/httpd.conf-dist Mon Jan 27 17:29:26 2003 -@@ -943,6 +943,29 @@ - #</IfModule> - # End of proxy directives. - -+# Note that all SSL options can apply to virtual hosts. -+# Disable SSL. Useful in combination with virtual hosts. Note that SSLEnable is -+# now also supported. -+#SSLDisable -+SSLEnable -+ -+# Set the path for the global cache server executable. -+# If this facility gives you trouble, you can disable it by setting -+# CACHE_SESSIONS to FALSE in apache_ssl.c -+SSLCacheServerPath @@ServerRoot@@/sbin/gcache -+ -+# Set the global cache server port number, or path. If it is a path, a Unix -+# domain socket is used. If a number, a TCP socket. -+SSLCacheServerPort logs/gcache_port -+#SSLCacheServerPort 1234 -+ -+# Directory for the cache server to run in (in case of crashes). Optional. -+SSLCacheServerRunDir /usr/tmp -+ -+# Set the session cache timeout, in seconds (set to 15 for testing, use a -+# higher value in real life) -+SSLSessionCacheTimeout 15 -+ - ### Section 3: Virtual Hosts - # - # VirtualHost: If you want to maintain multiple domains/hostnames on your diff --git a/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module b/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module deleted file mode 100644 index f4f02e80cbc2..000000000000 --- a/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module +++ /dev/null @@ -1,31 +0,0 @@ ---- src/modules/standard/mod_auth_db.module.bak Tue Oct 16 13:12:02 2001 -+++ src/modules/standard/mod_auth_db.module Thu Feb 20 12:55:19 2003 -@@ -4,23 +4,23 @@ - DB_LIB='' - if ./helpers/TestCompile func db_create; then - DB_VERSION='Berkeley-DB/3.x' -- elif ./helpers/TestCompile lib db db_create; then -+ elif ./helpers/TestCompile lib dbXXX db_create; then - DB_VERSION='Berkeley-DB/3.x' - DB_LIB='-ldb' - elif ./helpers/TestCompile func db_open; then - DB_VERSION='Berkeley-DB/2.x' -- elif ./helpers/TestCompile lib db db_open; then -+ elif ./helpers/TestCompile lib dbXXX db_open; then - DB_VERSION='Berkeley-DB/2.x' - DB_LIB='-ldb' -- elif ./helpers/TestCompile lib db2 db_open; then -+ elif ./helpers/TestCompile lib db2XXX db_open; then - DB_VERSION='Berkeley-DB/2.x' - DB_LIB='-ldb2' - elif ./helpers/TestCompile func dbopen; then - DB_VERSION='Berkeley-DB/1.x' -- elif ./helpers/TestCompile lib db dbopen; then -+ elif ./helpers/TestCompile lib dbXXX dbopen; then - DB_VERSION='Berkeley-DB/1.x' - DB_LIB='-ldb' -- elif ./helpers/TestCompile lib db1 dbopen; then -+ elif ./helpers/TestCompile lib db1XXX dbopen; then - DB_VERSION='Berkeley-DB/1.x' - DB_LIB='-ldb1' - elif TCADDINCL='#include <db.h>' INCLUDES1="$INCLUDES1 -I/usr/include/db1" TLIB="-ldb1" \ diff --git a/www/apache13-ssl/files/patch-src::support::dbmanage b/www/apache13-ssl/files/patch-src::support::dbmanage deleted file mode 100644 index d92d2f447613..000000000000 --- a/www/apache13-ssl/files/patch-src::support::dbmanage +++ /dev/null @@ -1,11 +0,0 @@ ---- src/support/dbmmanage.bak Thu Mar 14 00:05:37 2002 -+++ src/support/dbmmanage Mon Jun 2 23:05:27 2003 -@@ -338,6 +338,8 @@ - } elsif (substr($chkpass, 0, 5) eq '{SHA}') { - need_sha1_crypt; - $crypt_method = "sha1"; -+ } elsif (substr($chkpass, 0, 3) eq '$1$') { -+ $crypt_method = "crypt"; - } elsif (length($chkpass) == 13 && $chkpass ne $testpass) { - $crypt_method = "crypt"; - } else { diff --git a/www/apache13-ssl/files/patch-src::support::log_server_status b/www/apache13-ssl/files/patch-src::support::log_server_status deleted file mode 100644 index bd792616581e..000000000000 --- a/www/apache13-ssl/files/patch-src::support::log_server_status +++ /dev/null @@ -1,24 +0,0 @@ ---- src/support/log_server_status.orig Mon Jan 15 20:06:38 2001 -+++ src/support/log_server_status Fri Jan 25 08:03:03 2002 -@@ -70,10 +70,10 @@ - # - require 'sys/socket.ph'; - --$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" -+$wherelog = "/var/log/httpd-status-"; - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/server-status/?auto"; # Request to send - - sub tcp_connect - { -@@ -103,7 +103,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/apache13-ssl/files/patch-src:modules:proxy:proxy_util.c b/www/apache13-ssl/files/patch-src:modules:proxy:proxy_util.c deleted file mode 100644 index 3265807185ca..000000000000 --- a/www/apache13-ssl/files/patch-src:modules:proxy:proxy_util.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/modules/proxy/proxy_util.c.orig Tue Feb 17 22:52:22 2004 -+++ src/modules/proxy/proxy_util.c Fri Jun 11 10:24:12 2004 -@@ -545,8 +545,8 @@ - n = ap_bread(f, buf, buf_size); - } - else { -- n = ap_bread(f, buf, MIN((int)buf_size, -- (int)(len - total_bytes_rcvd))); -+ n = ap_bread(f, buf, MIN((size_t)buf_size, -+ (size_t)(len - total_bytes_rcvd))); - } - } - diff --git a/www/apache13-ssl/files/patch-src:support:apxs.pl b/www/apache13-ssl/files/patch-src:support:apxs.pl deleted file mode 100644 index 9c1596e0cb70..000000000000 --- a/www/apache13-ssl/files/patch-src:support:apxs.pl +++ /dev/null @@ -1,15 +0,0 @@ ---- src/support/apxs.pl.orig Mon Nov 29 21:05:12 2004 -+++ src/support/apxs.pl Mon Nov 29 21:05:56 2004 -@@ -604,12 +604,10 @@ - print FP $content; - close(FP); - if ($^O ne "MSWin32") { -- push(@cmds, "cp $cfgbase.conf $cfgbase.conf.bak"); - push(@cmds, "cp $cfgbase.conf.new $cfgbase.conf"); - push(@cmds, "rm $cfgbase.conf.new"); - } else { - $cfgbase =~ s|/|\\|g; -- push(@cmds, "copy \"$cfgbase.conf\" \"$cfgbase.conf.bak\""); - push(@cmds, "copy \"$cfgbase.conf.new\" \"$cfgbase.conf\""); - push(@cmds, "del \"$cfgbase.conf.new\""); - } diff --git a/www/apache13-ssl/files/post-patch-conf:httpd.conf-dist b/www/apache13-ssl/files/post-patch-conf:httpd.conf-dist deleted file mode 100644 index 864075e30d2d..000000000000 --- a/www/apache13-ssl/files/post-patch-conf:httpd.conf-dist +++ /dev/null @@ -1,13 +0,0 @@ ---- conf/httpd.conf-dist.orig Wed Oct 22 23:09:02 2003 -+++ conf/httpd.conf-dist Wed Oct 22 23:09:14 2003 -@@ -945,8 +945,8 @@ - # Note that all SSL options can apply to virtual hosts. - # Disable SSL. Useful in combination with virtual hosts. Note that SSLEnable is - # now also supported. --#SSLDisable --SSLEnable -+SSLDisable -+#SSLEnable - - # Set the path for the global cache server executable. - # If this facility gives you trouble, you can disable it by setting diff --git a/www/apache13-ssl/pkg-descr b/www/apache13-ssl/pkg-descr deleted file mode 100644 index 085c867eb42e..000000000000 --- a/www/apache13-ssl/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ - Apache + OpenSSL (Apache-SSL) - -Uses the public domain SSL implementation known as OpenSSL, integrated -into the Apache server to provide a public domain HTTPS server using -Netscape Secure Sockets Layer (SSL), versions 2 and 3 and TLS version -1. There are licensing issues in connection with use of the OpenSSL -code in the US, and there are ITAR restrictions on export, even though -the OpenSSL code is obtained from an overseas location. - -Full details can be found on the web at: - -WWW: http://www.apache-ssl.org - -Details of OpenSSL can be found at: - - http://www.openssl.org diff --git a/www/apache13-ssl/pkg-plist b/www/apache13-ssl/pkg-plist deleted file mode 100644 index 2ab43b83add5..000000000000 --- a/www/apache13-ssl/pkg-plist +++ /dev/null @@ -1,676 +0,0 @@ -@comment $FreeBSD$ -bin/checkgid -bin/dbmmanage -bin/htdigest -bin/htpasswd -@exec mkdir -p %D/etc/apache 2> /dev/null -@unexec if cmp -s %D/etc/apache/access.conf% %D/%%EXAMPLESDIR%%/access.conf-dist; then rm -f %D/etc/apache/access.conf%; fi -%%EXAMPLESDIR%%/access.conf-dist -@exec [ -f %D/etc/apache/access.conf% ] || cp %D/%%EXAMPLESDIR%%/access.conf-dist %D/etc/apache/access.conf -@unexec if cmp -s %D/etc/apache/httpsd.conf% %D/%%EXAMPLESDIR%%/httpsd.conf-dist; then rm -f %D/etc/apache/httpsd.conf%; fi -%%EXAMPLESDIR%%/httpsd.conf-dist -@exec [ -f %D/etc/apache/httpsd.conf% ] || cp %D/%%EXAMPLESDIR%%/httpsd.conf-dist %D/etc/apache/httpsd.conf -@unexec if cmp -s %D/etc/apache/magic% %D/%%EXAMPLESDIR%%/magic-dist; then rm -f %D/etc/apache/magic%; fi -%%EXAMPLESDIR%%/magic-dist -@exec [ -f %D/etc/apache/magic% ] || cp %D/%%EXAMPLESDIR%%/magic-dist %D/etc/apache/magic -@unexec if cmp -s %D/etc/apache/mime.types% %D/%%EXAMPLESDIR%%/mime.types-dist; then rm -f %D/etc/apache/mime.types%; fi -%%EXAMPLESDIR%%/mime.types-dist -@exec [ -f %D/etc/apache/mime.types% ] || cp %D/%%EXAMPLESDIR%%/mime.types-dist %D/etc/apache/mime.types -@unexec if cmp -s %D/etc/apache/srm.conf% %D/%%EXAMPLESDIR%%/srm.conf-dist; then rm -f %D/etc/apache/srm.conf%; fi -%%EXAMPLESDIR%%/srm.conf-dist -@exec [ -f %D/etc/apache/srm.conf% ] || cp %D/%%EXAMPLESDIR%%/srm.conf-dist %D/etc/apache/srm.conf -include/apache/ap.h -include/apache/ap_alloc.h -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_ctype.h -include/apache/ap_ebcdic.h -include/apache/ap_md5.h -include/apache/ap_mmn.h -include/apache/ap_sha1.h -include/apache/buff.h -include/apache/compat.h -include/apache/conf.h -include/apache/explain.h -include/apache/fnmatch.h -include/apache/gcache.h -include/apache/hsregex.h -include/apache/http_conf_globals.h -include/apache/http_config.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/multithread.h -include/apache/os-inline.c -include/apache/os.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/util_date.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_uri.h -include/apache/xml/asciitab.h -include/apache/xml/hashtable.h -include/apache/xml/iasciitab.h -include/apache/xml/latin1tab.h -include/apache/xml/nametab.h -include/apache/xml/utf8tab.h -include/apache/xml/xmldef.h -include/apache/xml/xmlparse.h -include/apache/xml/xmlrole.h -include/apache/xml/xmltok.h -include/apache/xml/xmltok_impl.h -libexec/apache/httpd.exp -%%MOD_ACCESS%%libexec/apache/mod_access.so -%%MOD_ACTIONS%%libexec/apache/mod_actions.so -%%MOD_ALIAS%%libexec/apache/mod_alias.so -%%MOD_ASIS%%libexec/apache/mod_asis.so -%%MOD_AUTH%%libexec/apache/mod_auth.so -%%MOD_AUTH_ANON%%libexec/apache/mod_auth_anon.so -%%MOD_AUTH_DB%%libexec/apache/mod_auth_db.so -%%MOD_AUTH_DBM%%libexec/apache/mod_auth_dbm.so -%%MOD_AUTH_DIGEST%%libexec/apache/mod_auth_digest.so -%%MOD_AUTOINDEX%%libexec/apache/mod_autoindex.so -%%MOD_CERN_META%%libexec/apache/mod_cern_meta.so -%%MOD_CGI%%libexec/apache/mod_cgi.so -%%MOD_DIGEST%%libexec/apache/mod_digest.so -%%MOD_DIR%%libexec/apache/mod_dir.so -%%MOD_ENV%%libexec/apache/mod_env.so -%%MOD_EXPIRES%%libexec/apache/mod_expires.so -%%MOD_HEADERS%%libexec/apache/mod_headers.so -%%MOD_IMAP%%libexec/apache/mod_imap.so -%%MOD_INCLUDE%%libexec/apache/mod_include.so -%%MOD_INFO%%libexec/apache/mod_info.so -%%MOD_LOG_AGENT%%libexec/apache/mod_log_agent.so -%%MOD_LOG_CONFIG%%libexec/apache/mod_log_config.so -%%MOD_LOG_FORENSIC%%libexec/apache/mod_log_forensic.so -%%MOD_LOG_REFERER%%libexec/apache/mod_log_referer.so -%%MOD_MIME%%libexec/apache/mod_mime.so -%%MOD_MIME_MAGIC%%libexec/apache/mod_mime_magic.so -%%MOD_MMAP_STATIC%%libexec/apache/mod_mmap_static.so -%%MOD_NEGOTIATION%%libexec/apache/mod_negotiation.so -%%MOD_PROXY%%libexec/apache/libproxy.so -%%MOD_REWRITE%%libexec/apache/mod_rewrite.so -%%MOD_SPELING%%libexec/apache/mod_speling.so -%%MOD_STATUS%%libexec/apache/mod_status.so -%%MOD_UNIQUE_ID%%libexec/apache/mod_unique_id.so -%%MOD_USERDIR%%libexec/apache/mod_userdir.so -%%MOD_USERTRACK%%libexec/apache/mod_usertrack.so -%%MOD_VHOST_ALIAS%%libexec/apache/mod_vhost_alias.so -sbin/ab -sbin/apxs -sbin/gcache -sbin/httpsd -sbin/httpsdctl -sbin/logresolve -sbin/rotatelogs -%%SUB_SUEXEC%%sbin/suexec -www/cgi-bin/printenv -www/cgi-bin/test-cgi -www/data-dist/apache_pb.gif -@exec [ -d %D/www/data/ ] || ln -fs %B %D/www/data -www/data-dist/index.html.ca -www/data-dist/index.html.cz -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.fr -www/data-dist/index.html.he.iso8859-8 -www/data-dist/index.html.hu -www/data-dist/index.html.it -www/data-dist/index.html.ja.jis -www/data-dist/index.html.kr.iso-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.iso-pl -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.ucs2 -www/data-dist/index.html.ru.ucs4 -www/data-dist/index.html.ru.utf8 -www/data-dist/index.html.se -www/data-dist/index.html.zh-tw.big5 -%%PORTDOCS%%%%DOCSDIR%%/LICENSE -%%PORTDOCS%%%%DOCSDIR%%/bind.html.en -%%PORTDOCS%%%%DOCSDIR%%/bind.html.fr -%%PORTDOCS%%%%DOCSDIR%%/bind.html.html -%%PORTDOCS%%%%DOCSDIR%%/bind.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.en -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.fr -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.html -%%PORTDOCS%%%%DOCSDIR%%/configuring.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.en -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.html -%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.en -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.fr -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.html -%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/cygwin.html -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.en -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.fr -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.html -%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/dso.html -%%PORTDOCS%%%%DOCSDIR%%/ebcdic.html -%%PORTDOCS%%%%DOCSDIR%%/env.html.en -%%PORTDOCS%%%%DOCSDIR%%/env.html.html -%%PORTDOCS%%%%DOCSDIR%%/env.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/footer.html -%%PORTDOCS%%%%DOCSDIR%%/handler.html.en -%%PORTDOCS%%%%DOCSDIR%%/handler.html.html -%%PORTDOCS%%%%DOCSDIR%%/handler.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/header.html -%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.html -%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/howto/footer.html -%%PORTDOCS%%%%DOCSDIR%%/howto/header.html -%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.html -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.en -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.html -%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/images/apache_header.gif -%%PORTDOCS%%%%DOCSDIR%%/images/custom_errordocs.gif -%%PORTDOCS%%%%DOCSDIR%%/images/home.gif -%%PORTDOCS%%%%DOCSDIR%%/images/index.gif -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.fig -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.gif -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.fig -%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.gif -%%PORTDOCS%%%%DOCSDIR%%/images/pixel.gif -%%PORTDOCS%%%%DOCSDIR%%/images/sub.gif -%%PORTDOCS%%%%DOCSDIR%%/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/index.html.fr -%%PORTDOCS%%%%DOCSDIR%%/index.html.html -%%PORTDOCS%%%%DOCSDIR%%/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/install-tpf.html -%%PORTDOCS%%%%DOCSDIR%%/install.html.en -%%PORTDOCS%%%%DOCSDIR%%/install.html.es -%%PORTDOCS%%%%DOCSDIR%%/install.html.fr -%%PORTDOCS%%%%DOCSDIR%%/install.html.html -%%PORTDOCS%%%%DOCSDIR%%/install.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/install-ztpf.html -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.en -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.fr -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/invoking.html.html -%%PORTDOCS%%%%DOCSDIR%%/keepalive.html.en -%%PORTDOCS%%%%DOCSDIR%%/keepalive.html.html -%%PORTDOCS%%%%DOCSDIR%%/keepalive.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/location.html.en -%%PORTDOCS%%%%DOCSDIR%%/location.html.html -%%PORTDOCS%%%%DOCSDIR%%/location.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/logs.html -%%PORTDOCS%%%%DOCSDIR%%/man-template.html -%%PORTDOCS%%%%DOCSDIR%%/misc/API.html -%%PORTDOCS%%%%DOCSDIR%%/misc/FAQ.html -%%PORTDOCS%%%%DOCSDIR%%/misc/HTTP_Features.tsv -%%PORTDOCS%%%%DOCSDIR%%/misc/client_block_api.html -%%PORTDOCS%%%%DOCSDIR%%/misc/compat_notes.html -%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.html -%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.html -%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.html -%%PORTDOCS%%%%DOCSDIR%%/misc/footer.html -%%PORTDOCS%%%%DOCSDIR%%/misc/header.html -%%PORTDOCS%%%%DOCSDIR%%/misc/howto.html -%%PORTDOCS%%%%DOCSDIR%%/misc/index.html -%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.html -%%PORTDOCS%%%%DOCSDIR%%/misc/nopgp.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-bsd44.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-dec.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-hp.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.html -%%PORTDOCS%%%%DOCSDIR%%/misc/perf.html -%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.html -%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.html -%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.html -%%PORTDOCS%%%%DOCSDIR%%/misc/vif-info.html -%%PORTDOCS%%%%DOCSDIR%%/misc/windoz_keepalive.html -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.fr -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.fr -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.de -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.fr -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/footer.html -%%PORTDOCS%%%%DOCSDIR%%/mod/header.html -%%PORTDOCS%%%%DOCSDIR%%/mod/index-bytype.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/index-bytype.html.fr -%%PORTDOCS%%%%DOCSDIR%%/mod/index-bytype.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/index-bytype.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.fr -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_db.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_browser.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cookies.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_digest.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dld.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_agent.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_common.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_forensic.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_forensic.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_referer.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mmap_static.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.html -%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.en -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.html -%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/mpeix.html -%%PORTDOCS%%%%DOCSDIR%%/multilogs.html -%%PORTDOCS%%%%DOCSDIR%%/netware.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_0.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_1.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_2.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_3.html.en -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_3.html.html -%%PORTDOCS%%%%DOCSDIR%%/new_features_1_3.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/process-model.html.en -%%PORTDOCS%%%%DOCSDIR%%/process-model.html.html -%%PORTDOCS%%%%DOCSDIR%%/process-model.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/programs/ab.html -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html.html -%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.html -%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.html -%%PORTDOCS%%%%DOCSDIR%%/programs/footer.html -%%PORTDOCS%%%%DOCSDIR%%/programs/header.html -%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.html -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html.html -%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html.html -%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.html -%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.html -%%PORTDOCS%%%%DOCSDIR%%/programs/other.html -%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.html -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html.en -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html.html -%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/readme-tpf.html -%%PORTDOCS%%%%DOCSDIR%%/sections.html.en -%%PORTDOCS%%%%DOCSDIR%%/sections.html.html -%%PORTDOCS%%%%DOCSDIR%%/sections.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.en -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.fr -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.html -%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/sitemap.html -%%PORTDOCS%%%%DOCSDIR%%/sourcereorg.html -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.en -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.fr -%%PORTDOCS%%%%DOCSDIR%%/stopping.html.html -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.en -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.html -%%PORTDOCS%%%%DOCSDIR%%/suexec.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/suexec_1_2.html -%%PORTDOCS%%%%DOCSDIR%%/unixware.html -%%PORTDOCS%%%%DOCSDIR%%/upgrading_to_1_3.html -%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/details_1_2.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/footer.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/header.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/host.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.en -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/vhosts/vhosts-in-depth.html -%%PORTDOCS%%%%DOCSDIR%%/vhosts/virtual-host.html -%%PORTDOCS%%%%DOCSDIR%%/win_compiling.html.en -%%PORTDOCS%%%%DOCSDIR%%/win_compiling.html.html -%%PORTDOCS%%%%DOCSDIR%%/win_compiling.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/win_service.html.en -%%PORTDOCS%%%%DOCSDIR%%/win_service.html.html -%%PORTDOCS%%%%DOCSDIR%%/win_service.html.ja.jis -%%PORTDOCS%%%%DOCSDIR%%/windows.html.en -%%PORTDOCS%%%%DOCSDIR%%/windows.html.html -%%PORTDOCS%%%%DOCSDIR%%/windows.html.ja.jis -www/icons/README -www/icons/README.html -www/icons/a.gif -www/icons/a.png -www/icons/alert.black.gif -www/icons/alert.black.png -www/icons/alert.red.gif -www/icons/alert.red.png -www/icons/apache_pb.gif -www/icons/apache_pb.png -www/icons/back.gif -www/icons/back.png -www/icons/ball.gray.gif -www/icons/ball.gray.png -www/icons/ball.red.gif -www/icons/ball.red.png -www/icons/binary.gif -www/icons/binary.png -www/icons/binhex.gif -www/icons/binhex.png -www/icons/blank.gif -www/icons/blank.png -www/icons/bomb.gif -www/icons/bomb.png -www/icons/box1.gif -www/icons/box1.png -www/icons/box2.gif -www/icons/box2.png -www/icons/broken.gif -www/icons/broken.png -www/icons/burst.gif -www/icons/burst.png -www/icons/c.gif -www/icons/c.png -www/icons/comp.blue.gif -www/icons/comp.blue.png -www/icons/comp.gray.gif -www/icons/comp.gray.png -www/icons/compressed.gif -www/icons/compressed.png -www/icons/continued.gif -www/icons/continued.png -www/icons/dir.gif -www/icons/dir.png -www/icons/diskimg.gif -www/icons/diskimg.png -www/icons/down.gif -www/icons/down.png -www/icons/dvi.gif -www/icons/dvi.png -www/icons/f.gif -www/icons/f.png -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.open.png -www/icons/folder.png -www/icons/folder.sec.gif -www/icons/folder.sec.png -www/icons/forward.gif -www/icons/forward.png -www/icons/generic.gif -www/icons/generic.png -www/icons/generic.red.gif -www/icons/generic.red.png -www/icons/generic.sec.gif -www/icons/generic.sec.png -www/icons/hand.right.gif -www/icons/hand.right.png -www/icons/hand.up.gif -www/icons/hand.up.png -www/icons/icon.sheet.gif -www/icons/icon.sheet.png -www/icons/image1.gif -www/icons/image1.png -www/icons/image2.gif -www/icons/image2.png -www/icons/image3.gif -www/icons/image3.png -www/icons/index.gif -www/icons/index.png -www/icons/layout.gif -www/icons/layout.png -www/icons/left.gif -www/icons/left.png -www/icons/link.gif -www/icons/link.png -www/icons/movie.gif -www/icons/movie.png -www/icons/p.gif -www/icons/p.png -www/icons/patch.gif -www/icons/patch.png -www/icons/pdf.gif -www/icons/pdf.png -www/icons/pie0.gif -www/icons/pie0.png -www/icons/pie1.gif -www/icons/pie1.png -www/icons/pie2.gif -www/icons/pie2.png -www/icons/pie3.gif -www/icons/pie3.png -www/icons/pie4.gif -www/icons/pie4.png -www/icons/pie5.gif -www/icons/pie5.png -www/icons/pie6.gif -www/icons/pie6.png -www/icons/pie7.gif -www/icons/pie7.png -www/icons/pie8.gif -www/icons/pie8.png -www/icons/portal.gif -www/icons/portal.png -www/icons/ps.gif -www/icons/ps.png -www/icons/quill.gif -www/icons/quill.png -www/icons/right.gif -www/icons/right.png -www/icons/screw1.gif -www/icons/screw1.png -www/icons/screw2.gif -www/icons/screw2.png -www/icons/script.gif -www/icons/script.png -www/icons/small/back.gif -www/icons/small/back.png -www/icons/small/binary.gif -www/icons/small/binary.png -www/icons/small/binhex.gif -www/icons/small/binhex.png -www/icons/small/blank.gif -www/icons/small/blank.png -www/icons/small/broken.gif -www/icons/small/broken.png -www/icons/small/burst.gif -www/icons/small/burst.png -www/icons/small/comp1.gif -www/icons/small/comp1.png -www/icons/small/comp2.gif -www/icons/small/comp2.png -www/icons/small/compressed.gif -www/icons/small/compressed.png -www/icons/small/continued.gif -www/icons/small/continued.png -www/icons/small/dir.gif -www/icons/small/dir.png -www/icons/small/dir2.gif -www/icons/small/dir2.png -www/icons/small/doc.gif -www/icons/small/doc.png -www/icons/small/forward.gif -www/icons/small/forward.png -www/icons/small/generic.gif -www/icons/small/generic.png -www/icons/small/generic2.gif -www/icons/small/generic2.png -www/icons/small/generic3.gif -www/icons/small/generic3.png -www/icons/small/image.gif -www/icons/small/image.png -www/icons/small/image2.gif -www/icons/small/image2.png -www/icons/small/index.gif -www/icons/small/index.png -www/icons/small/key.gif -www/icons/small/key.png -www/icons/small/movie.gif -www/icons/small/movie.png -www/icons/small/patch.gif -www/icons/small/patch.png -www/icons/small/ps.gif -www/icons/small/ps.png -www/icons/small/rainbow.gif -www/icons/small/rainbow.png -www/icons/small/sound.gif -www/icons/small/sound.png -www/icons/small/sound2.gif -www/icons/small/sound2.png -www/icons/small/tar.gif -www/icons/small/tar.png -www/icons/small/text.gif -www/icons/small/text.png -www/icons/small/transfer.gif -www/icons/small/transfer.png -www/icons/small/unknown.gif -www/icons/small/unknown.png -www/icons/small/uu.gif -www/icons/small/uu.png -www/icons/sound1.gif -www/icons/sound1.png -www/icons/sound2.gif -www/icons/sound2.png -www/icons/sphere1.gif -www/icons/sphere1.png -www/icons/sphere2.gif -www/icons/sphere2.png -www/icons/tar.gif -www/icons/tar.png -www/icons/tex.gif -www/icons/tex.png -www/icons/text.gif -www/icons/text.png -www/icons/transfer.gif -www/icons/transfer.png -www/icons/unknown.gif -www/icons/unknown.png -www/icons/up.gif -www/icons/up.png -www/icons/uu.gif -www/icons/uu.png -www/icons/uuencoded.gif -www/icons/uuencoded.png -www/icons/world1.gif -www/icons/world1.png -www/icons/world2.gif -www/icons/world2.png -@exec mkdir -p %D/www/proxy -@unexec rm -f %D/etc/apache/httpsd.conf.bak 2> /dev/null || true -@dirrmtry etc/apache -@dirrm include/apache/xml -@dirrm include/apache -@dirrm libexec/apache -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/misc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/mod -%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/vhosts -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -@dirrm www/cgi-bin-dist -@dirrm www/data-dist -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/proxy -@dirrm %%EXAMPLESDIR%% |