summaryrefslogtreecommitdiff
path: root/russian/apache13-modssl
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-07-16 20:09:51 +0000
committerSteve Price <steve@FreeBSD.org>2000-07-16 20:09:51 +0000
commit676d035daf3b9477890ecfddd6ec343c7e7afab2 (patch)
tree0df285a008e667fd0acc6e7d611fd6b3c5166be7 /russian/apache13-modssl
parentAdding pad version 0.5. (diff)
Adding ru-apache13 with modssl support.
PR: 19752 Submitted by: Dmitry S. Sivachenko <dima@Chg.RU>
Notes
Notes: svn path=/head/; revision=30721
Diffstat (limited to 'russian/apache13-modssl')
-rw-r--r--russian/apache13-modssl/Makefile120
-rw-r--r--russian/apache13-modssl/distinfo2
-rw-r--r--russian/apache13-modssl/files/FreeBSD.layout19
-rw-r--r--russian/apache13-modssl/files/patch-aa24
-rw-r--r--russian/apache13-modssl/files/patch-ab84
-rw-r--r--russian/apache13-modssl/files/patch-ac11
-rw-r--r--russian/apache13-modssl/files/patch-ag66
-rw-r--r--russian/apache13-modssl/files/patch-ah36
-rw-r--r--russian/apache13-modssl/files/patch-ak19
-rw-r--r--russian/apache13-modssl/files/patch-al24
-rw-r--r--russian/apache13-modssl/files/rc.apache.sh17
-rw-r--r--russian/apache13-modssl/pkg-comment1
-rw-r--r--russian/apache13-modssl/pkg-descr6
-rw-r--r--russian/apache13-modssl/pkg-plist569
14 files changed, 998 insertions, 0 deletions
diff --git a/russian/apache13-modssl/Makefile b/russian/apache13-modssl/Makefile
new file mode 100644
index 000000000000..7826a97c8e2e
--- /dev/null
+++ b/russian/apache13-modssl/Makefile
@@ -0,0 +1,120 @@
+# New ports collection makefile for: Russian Apache + mod_ssl
+# Date created: 7 July 2000 1:05 MSD
+# Whom: Dmitry Sivachenko <dima@Chg.RU>
+#
+# $FreeBSD$
+#
+
+PORTNAME= apache+mod_ssl
+PORTVERSION= ${VERSION_APACHE}+${RA_VERSION}+${VERSION_MODSSL}
+CATEGORIES= russian www security
+MASTER_SITES= ftp://ftp.lexa.ru/pub/apache-rus/ \
+ ftp://ftp.lexa.ru/pub/apache-rus/old-versions/ \
+ http://www.modssl.org/source/ \
+ ftp://ftp.modssl.org/source/ \
+ ftp://ftp.pca.dfn.de/pub/tools/net/mod_ssl/ \
+ ftp://ftp.ecrc.net/pub/security/mod_ssl/ \
+ ftp://ftp.nvg.ntnu.no/pub/unix/mod_ssl/ \
+ ftp://ftp.ulpgc.es/pub/mod_ssl/ \
+ ftp://glock.missouri.edu/pub/mod_ssl/ \
+ ftp://ftp.fu-berlin.de/unix/security/mod_ssl/ \
+ ftp://ftp.ntrl.net/pub/mirror/ralfsw/mod_ssl/
+DISTNAME= apache_${VERSION_APACHE}rusPL${RA_VERSION}
+DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
+ mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE}${EXTRACT_SUFX}
+
+MAINTAINER= dima@Chg.RU
+
+BUILD_DEPENDS= mm-config:${PORTSDIR}/devel/mm \
+ ${LOCALBASE}/lib/libmm.a:${PORTSDIR}/devel/mm
+
+USE_OPENSSL= RSA
+
+.include <bsd.port.pre.mk>
+
+VERSION_APACHE= 1.3.12
+VERSION_MODSSL= 2.6.5
+RA_VERSION= 29.4
+
+USE_PERL5= yes
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS= --prefix=${PREFIX} \
+ --server-gid=nogroup \
+ --with-perl=${PERL} \
+ --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \
+ --without-confadjust \
+ --enable-module=ssl \
+ --enable-module=most \
+ --enable-module=auth_db \
+ --disable-module=auth_dbm \
+ --enable-shared=max
+
+OPTIM= -DHARD_SERVER_LIMIT=512 \
+ -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \
+ -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\"
+
+pre-extract:
+.if defined(WITH_SUEXEC)
+ @${ECHO} "Be sure to edit suexec specific arguments to configure in the Makefile."
+CONFIGURE_ARGS+=--enable-suexec \
+ --suexec-caller=nobody \
+ --suexec-docroot=${PREFIX}/www/data \
+ --suexec-logfile=/var/log/suexec.log \
+ --suexec-uidmin=50000 \
+ --suexec-gidmin=60000
+MAN8+= suexec.8
+PLIST_SUB= SUEXEC=sbin/suexec
+.else
+ @${ECHO} "Define WITH_SUEXEC to build with suexec support."
+PLIST_SUB= SUEXEC=
+.endif
+
+.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES
+OPTIM+= -DBUFFERED_LOGS -DFD_SETSIZE=1024
+CFLAGS+= -O6 -funroll-loops -fstrength-reduce -fomit-frame-pointer \
+ -fexpensive-optimizations -ffast-math
+.endif
+
+CONFIGURE_ENV= CFLAGS='${CFLAGS}' \
+ OPTIM='${OPTIM}' \
+ SSL_BASE='SYSTEM' \
+ EAPI_MM='SYSTEM' \
+ PATH="${PREFIX}/bin:${PATH}"
+
+INSTALL_TARGET= install-quiet
+
+MAN1= dbmmanage.1 htdigest.1 htpasswd.1
+MAN8+= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8
+
+TYPE= test
+CRT=
+KEY=
+
+pre-patch:
+ @cd ${WRKDIR}/mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE} \
+ && ${ECHO_MSG} "===> Applying mod_ssl-${VERSION_MODSSL} extension" \
+ && ./configure --with-apache=../${DISTNAME} --expert
+
+post-patch:
+ @cd ${WRKSRC} \
+ && find . -type f -name "*.orig" -print | xargs ${RM} -f
+
+post-build:
+ @cd ${WRKSRC} \
+ && ${ECHO_MSG} "===> Creating Dummy Certificate for Server (SnakeOil)" \
+ && ${ECHO_MSG} " [use 'make certificate' to create a real one]" \
+ && ${MAKE} certificate TYPE=dummy >/dev/null 2>&1
+
+certificate:
+ @cd ${WRKSRC} \
+ && ${ECHO_MSG} "===> Creating Test Certificate for Server" \
+ && ${MAKE} certificate TYPE=${TYPE} CRT=${CRT} KEY=${KEY}
+
+post-install:
+ @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \
+ ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \
+ ${SED} -e "s#!!PREFIX!!#${PREFIX}#g" < ${FILESDIR}/rc.apache.sh > ${PREFIX}/etc/rc.d/apache.sh; \
+ ${CHMOD} 751 ${PREFIX}/etc/rc.d/apache.sh; \
+ fi
+
+.include <bsd.port.post.mk>
diff --git a/russian/apache13-modssl/distinfo b/russian/apache13-modssl/distinfo
new file mode 100644
index 000000000000..0a5a345a022d
--- /dev/null
+++ b/russian/apache13-modssl/distinfo
@@ -0,0 +1,2 @@
+MD5 (apache_1.3.12rusPL29.4.tar.gz) = 6faff4c99520c65954e1530a15eacd25
+MD5 (mod_ssl-2.6.5-1.3.12.tar.gz) = 1b7e28c23e0235540df0549b243fac19
diff --git a/russian/apache13-modssl/files/FreeBSD.layout b/russian/apache13-modssl/files/FreeBSD.layout
new file mode 100644
index 000000000000..5524e186e9c0
--- /dev/null
+++ b/russian/apache13-modssl/files/FreeBSD.layout
@@ -0,0 +1,19 @@
+# FreeBSD layout...
+<Layout FreeBSD>
+ prefix: /usr/local
+ exec_prefix: $prefix
+ bindir: $exec_prefix/bin
+ sbindir: $exec_prefix/sbin
+ libexecdir: $exec_prefix/libexec/apache
+ mandir: $prefix/man
+ sysconfdir: $prefix/etc/apache
+ datadir: $prefix/www
+ iconsdir: $datadir/icons
+ htdocsdir: $datadir/data
+ cgidir: $datadir/cgi-bin
+ includedir: $prefix/include/apache
+ localstatedir: /var
+ runtimedir: $localstatedir/run
+ logfiledir: $localstatedir/log
+ proxycachedir: $datadir/proxy
+</Layout>
diff --git a/russian/apache13-modssl/files/patch-aa b/russian/apache13-modssl/files/patch-aa
new file mode 100644
index 000000000000..15cd58c27ef2
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-aa
@@ -0,0 +1,24 @@
+--- configure.orig Tue Jan 18 01:53:17 2000
++++ configure Mon Jan 24 19:37:21 2000
+@@ -1232,8 +1232,8 @@
+ echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid"
+ echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard"
+ echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock"
+- echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log"
+- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log"
++ echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.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"
+@@ -1330,8 +1330,8 @@
+ 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_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci
+-echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci
++echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.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/russian/apache13-modssl/files/patch-ab b/russian/apache13-modssl/files/patch-ab
new file mode 100644
index 000000000000..d09e06a7bea2
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-ab
@@ -0,0 +1,84 @@
+--- Makefile.tmpl.orig Thu Jul 6 19:42:40 2000
++++ Makefile.tmpl Thu Jul 6 19:43:12 2000
+@@ -123,6 +123,7 @@
+ runtimedir = @runtimedir@
+ logfiledir = @logfiledir@
+ proxycachedir = @proxycachedir@
++doc_prefix = $(prefix)/share/doc/apache
+
+ libexecdir_relative = @libexecdir_relative@
+
+@@ -325,9 +326,9 @@
+ $(MKDIR) $(root)$(sysconfdir)/ssl.csr
+ $(MKDIR) $(root)$(sysconfdir)/ssl.key
+ $(MKDIR) $(root)$(sysconfdir)/ssl.prm
+- $(MKDIR) $(root)$(htdocsdir)
++ $(MKDIR) $(root)$(doc_prefix)
+ $(MKDIR) $(root)$(iconsdir)
+- $(MKDIR) $(root)$(cgidir)
++ $(MKDIR) $(root)$(cgidir).default
+ $(MKDIR) $(root)$(includedir)
+ $(MKDIR) $(root)$(includedir)/xml
+ $(MKDIR) $(root)$(sysconfdir)/tables
+@@ -527,25 +528,33 @@
+ # 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)/"; \
++# -@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)$(doc_prefix)/"; \
+ (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\
+- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \
+- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \
+- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \
+- fi
+- -@if [ -f $(root)$(cgidir)/printenv ]; then \
+- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \
+- else \
++ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \
++ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \
++ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \
++# fi
++ if [ ! -d $(root)$(htdocsdir) ]; then \
++ $(LN) -sf $(root)$(doc_prefix) $(root)$(htdocsdir); \
++ fi
++ $(RM) $(root)$(htdocsdir).default
++ $(LN) -s $(root)$(doc_prefix) $(root)$(htdocsdir).default
++# -@if [ -f $(root)$(cgidir)/printenv ]; then \
++# echo "[PRESERVING EXISTING DATA 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}; \
++ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \
++ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \
+ done; \
++# fi
++ if [ ! -d $(root)$(cgidir) ]; then \
++ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \
+ fi
+ @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \
+ (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\
+@@ -595,10 +604,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}httpd-access.log;" \
++ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}httpd-error.log;" \
++ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}httpd-referer.log;" \
++ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}httpd-agent.log;" \
+ -e 's;conf/tables/;$(sysconfdir)/tables/;' \
+ -e 's;conf/magic;$(sysconfdir)/magic;' \
+ -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \
diff --git a/russian/apache13-modssl/files/patch-ac b/russian/apache13-modssl/files/patch-ac
new file mode 100644
index 000000000000..bcbeb3171d11
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-ac
@@ -0,0 +1,11 @@
+--- src/Configure.bak Sun Feb 6 04:27:19 2000
++++ src/Configure Sun Mar 19 21:51:00 2000
+@@ -1043,7 +1043,7 @@
+ LDFLAGS_SHLIB_EXPORT=""
+ SHLIB_SUFFIX_DEPTH=2
+ ;;
+- *-freebsd3*|*-freebsd4*)
++ *-freebsd[3-9]*)
+ LD_SHLIB="gcc"
+ CFLAGS_SHLIB="-fpic"
+ LDFLAGS_SHLIB="-shared"
diff --git a/russian/apache13-modssl/files/patch-ag b/russian/apache13-modssl/files/patch-ag
new file mode 100644
index 000000000000..80373fbcca63
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-ag
@@ -0,0 +1,66 @@
+--- conf/httpd.conf-dist.orig Mon Feb 21 08:30:46 2000
++++ conf/httpd.conf-dist Mon May 29 16:48:49 2000
+@@ -354,7 +354,22 @@
+ # directory index. Separate multiple entries with spaces.
+ #
+ <IfModule mod_dir.c>
+- DirectoryIndex index.html
++ <IfModule mod_php3.c>
++ <IfModule mod_php4.c>
++ DirectoryIndex index.php index.php3 index.html
++ </IfModule>
++ <IfModule !mod_php4.c>
++ DirectoryIndex index.php3 index.html
++ </IfModule>
++ </IfModule>
++ <IfModule !mod_php3.c>
++ <IfModule mod_php4.c>
++ DirectoryIndex index.php index.html
++ </IfModule>
++ <IfModule !mod_php4.c>
++ DirectoryIndex index.html
++ </IfModule>
++ </IfModule>
+ </IfModule>
+
+ #
+@@ -473,7 +488,7 @@
+ # define per-<VirtualHost> access logfiles, transactions will be
+ # logged therein and *not* in this file.
+ #
+-CustomLog logs/access_log common
++#CustomLog logs/access_log common
+
+ #
+ # If you would like to have agent and referer logfiles, uncomment the
+@@ -486,7 +501,7 @@
+ # If you prefer a single logfile with access, agent, and referer information
+ # (Combined Logfile Format) you can use the following directive.
+ #
+-#CustomLog logs/access_log combined
++CustomLog logs/access_log combined
+
+ #
+ # Optionally add a line containing the server version and virtual host
+@@ -708,13 +723,17 @@
+ # For example, the PHP 3.x module (not part of the Apache distribution - see
+ # http://www.php.net) will typically use:
+ #
+- #AddType application/x-httpd-php3 .php3
+- #AddType application/x-httpd-php3-source .phps
++ <IfModule mod_php3.c>
++ AddType application/x-httpd-php3 .php3
++ AddType application/x-httpd-php3-source .php3s
++ </IfModule>
+ #
+ # And for PHP 4.x, use:
+ #
+- #AddType application/x-httpd-php .php
+- #AddType application/x-httpd-php-source .phps
++ <IfModule mod_php4.c>
++ AddType application/x-httpd-php .php
++ AddType application/x-httpd-php-source .phps
++ </IfModule>
+
+ AddType application/x-tar .tgz
+
diff --git a/russian/apache13-modssl/files/patch-ah b/russian/apache13-modssl/files/patch-ah
new file mode 100644
index 000000000000..e46ddf60928d
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-ah
@@ -0,0 +1,36 @@
+--- src/modules/ssl/Makefile.tmpl.orig Thu Dec 30 15:58:07 1999
++++ src/modules/ssl/Makefile.tmpl Wed Feb 9 11:43:49 2000
+@@ -122,6 +122,11 @@
+ ## END-USER AREA
+ ##
+
++# This requires special handling to get the correct versions of include files:
++# ../../include/fnmatch.h instead of /usr/include/fnmatch.h
++# /usr/include/opssl/*.h instead of /usr/local/include/openssl.h
++MY_CFLAGS= $(INCLUDES0) $(SSL_CFLAGS) $(INCLUDES1) $(EXTRA_INCLUDES) $(CFLAGS)
++
+ all: lib
+
+ lib: $(LIB)
+@@ -138,10 +143,10 @@
+ .SUFFIXES: .o .lo
+
+ .c.o:
+- $(CC) -c $(INCLUDES) $(CFLAGS) $(SSL_CFLAGS) $(SSL_VERSION) $<
++ $(CC) -c $(MY_CFLAGS) $(SSL_VERSION) $<
+
+ .c.lo:
+- $(CC) -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $(SSL_CFLAGS) $(SSL_VERSION) $< && mv $*.o $*.lo
++ $(CC) -c $(MY_CFLAGS) $(CFLAGS_SHLIB) $(SSL_VERSION) $< && mv $*.o $*.lo
+
+ clean:
+ rm -f $(OBJS) $(OBJS_PIC)
+@@ -186,7 +191,7 @@
+ depend:
+ cp Makefile.tmpl Makefile.tmpl.bak \
+ && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.tmpl > Makefile.new \
+- && gcc -MM $(INCLUDES) $(CFLAGS) $(SSL_CFLAGS) *.c >> Makefile.new \
++ && gcc -MM $(MY_CFLAGS) *.c >> Makefile.new \
+ && sed -e '1,$$s; $(INCDIR)/; $$(INCDIR)/;g' \
+ -e '1,$$s; $(OSDIR)/; $$(OSDIR)/;g' \
+ -e '1,$$s;^\([a-z0-9_]*\)\.o:;\1.o \1.lo:;g' Makefile.new \
diff --git a/russian/apache13-modssl/files/patch-ak b/russian/apache13-modssl/files/patch-ak
new file mode 100644
index 000000000000..486f7ad159cf
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-ak
@@ -0,0 +1,19 @@
+--- src/support/apachectl.orig Wed Apr 7 00:36:33 1999
++++ src/support/apachectl Fri Sep 3 15:41:01 1999
+@@ -39,6 +39,8 @@
+ # -------------------- --------------------
+ # |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||
+
++eval `limits -e -C daemon` >/dev/null 2>&1
++
+ ERROR=0
+ ARGV="$@"
+ if [ "x$ARGV" = "x" ] ; then
+@@ -82,6 +84,7 @@
+ fi
+ if kill $PID ; then
+ echo "$0 $ARG: httpd stopped"
++ rm $PIDFILE
+ else
+ echo "$0 $ARG: httpd could not be stopped"
+ ERROR=4
diff --git a/russian/apache13-modssl/files/patch-al b/russian/apache13-modssl/files/patch-al
new file mode 100644
index 000000000000..b355a697b4ab
--- /dev/null
+++ b/russian/apache13-modssl/files/patch-al
@@ -0,0 +1,24 @@
+--- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999
++++ src/support/log_server_status Fri Sep 3 15:53:16 1999
+@@ -67,10 +67,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
+ {
+@@ -100,7 +100,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/russian/apache13-modssl/files/rc.apache.sh b/russian/apache13-modssl/files/rc.apache.sh
new file mode 100644
index 000000000000..f8f244e5046f
--- /dev/null
+++ b/russian/apache13-modssl/files/rc.apache.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+case $1 in
+start)
+ !!PREFIX!!/sbin/apachectl start
+ echo -n ' apache'
+ ;;
+
+stop)
+ !!PREFIX!!/sbin/apachectl stop
+ ;;
+
+*)
+ echo "usage: `basename $0` {start|stop}" >&2
+ exit 64
+ ;;
+esac
diff --git a/russian/apache13-modssl/pkg-comment b/russian/apache13-modssl/pkg-comment
new file mode 100644
index 000000000000..13a067bccbfd
--- /dev/null
+++ b/russian/apache13-modssl/pkg-comment
@@ -0,0 +1 @@
+The Russian Apache webserver with SSL/TLS functionality
diff --git a/russian/apache13-modssl/pkg-descr b/russian/apache13-modssl/pkg-descr
new file mode 100644
index 000000000000..33079d3acf8a
--- /dev/null
+++ b/russian/apache13-modssl/pkg-descr
@@ -0,0 +1,6 @@
+Russian Apache is an apache web-server designed to work on Russian
+market. This port contains Russian Apache with modssl support.
+
+WWW: http://apache.lexa.ru/
+ http://www.apache.org/
+ http://www.modssl.org/
diff --git a/russian/apache13-modssl/pkg-plist b/russian/apache13-modssl/pkg-plist
new file mode 100644
index 000000000000..9c3d1c57f3d3
--- /dev/null
+++ b/russian/apache13-modssl/pkg-plist
@@ -0,0 +1,569 @@
+bin/dbmmanage
+bin/htdigest
+bin/htpasswd
+@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf.default; then rm -f %D/etc/apache/access.conf; fi
+etc/apache/access.conf.default
+@exec [ ! -f %B/access.conf ] && cp %B/%f %B/access.conf
+@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf.default; then rm -f %D/etc/apache/httpd.conf; fi
+etc/apache/httpd.conf.default
+@exec [ ! -f %B/httpd.conf ] && cp %B/%f %B/httpd.conf
+@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic.default; then rm -f %D/etc/apache/magic; fi
+etc/apache/magic.default
+@exec [ ! -f %B/magic ] && cp %B/%f %B/magic
+@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types.default; then rm -f %D/etc/apache/mime.types; fi
+etc/apache/mime.types.default
+@exec [ ! -f %B/mime.types ] && cp %B/%f %B/mime.types
+@unexec if cmp -s %D/etc/apache/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi
+etc/apache/srm.conf.default
+@exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf
+etc/apache/ssl.crt/README.CRT
+etc/apache/ssl.crt/Makefile
+etc/apache/ssl.crt/ca-bundle.crt
+etc/apache/ssl.crt/snakeoil-ca-rsa.crt
+etc/apache/ssl.crt/snakeoil-ca-dsa.crt
+etc/apache/ssl.crt/snakeoil-rsa.crt
+etc/apache/ssl.crt/snakeoil-dsa.crt
+etc/apache/ssl.crt/server.crt
+etc/apache/ssl.crl/README.CRL
+etc/apache/ssl.crl/Makefile
+etc/apache/ssl.csr/README.CSR
+etc/apache/ssl.csr/server.csr
+etc/apache/ssl.prm/README.PRM
+etc/apache/ssl.prm/snakeoil-ca-dsa.prm
+etc/apache/ssl.prm/snakeoil-dsa.prm
+etc/apache/ssl.key/README.KEY
+etc/apache/ssl.key/snakeoil-ca-rsa.key
+etc/apache/ssl.key/snakeoil-ca-dsa.key
+etc/apache/ssl.key/snakeoil-rsa.key
+etc/apache/ssl.key/snakeoil-dsa.key
+etc/apache/ssl.key/server.key
+etc/apache/tables/russian/alt-alt.tab
+etc/apache/tables/russian/alt-iso.tab
+etc/apache/tables/russian/alt-koi.tab
+etc/apache/tables/russian/alt-mac.tab
+etc/apache/tables/russian/alt-win.tab
+etc/apache/tables/russian/iso-alt.tab
+etc/apache/tables/russian/iso-iso.tab
+etc/apache/tables/russian/iso-koi.tab
+etc/apache/tables/russian/iso-mac.tab
+etc/apache/tables/russian/iso-win.tab
+etc/apache/tables/russian/koi-alt.tab
+etc/apache/tables/russian/koi-iso.tab
+etc/apache/tables/russian/koi-koi.tab
+etc/apache/tables/russian/koi-mac.tab
+etc/apache/tables/russian/koi-tran.tab
+etc/apache/tables/russian/koi-win.tab
+etc/apache/tables/russian/koi-utf8.tab
+etc/apache/tables/russian/mac-alt.tab
+etc/apache/tables/russian/mac-iso.tab
+etc/apache/tables/russian/mac-koi.tab
+etc/apache/tables/russian/mac-mac.tab
+etc/apache/tables/russian/mac-win.tab
+etc/apache/tables/russian/win-alt.tab
+etc/apache/tables/russian/win-iso.tab
+etc/apache/tables/russian/win-koi.tab
+etc/apache/tables/russian/win-mac.tab
+etc/apache/tables/russian/win-tran.tab
+etc/apache/tables/russian/win-win.tab
+etc/apache/tables/russian2/alt-mac.tab
+etc/apache/tables/russian2/koi-mac.tab
+etc/apache/tables/russian2/iso-alt.tab
+etc/apache/tables/russian2/koi-win.tab
+etc/apache/tables/russian2/iso-mac.tab
+etc/apache/tables/russian2/win-alt.tab
+etc/apache/tables/russian2/koi-alt.tab
+etc/apache/tables/russian2/win-iso.tab
+etc/apache/tables/russian2/koi-iso.tab
+etc/apache/tables/russian2/win-mac.tab
+etc/apache/tables/czech/cp1250-8859-1.tab
+etc/apache/tables/czech/cp1250-8859-2.tab
+etc/apache/tables/czech/cp1250-cmac.tab
+etc/apache/tables/czech/cp1250-cp1250.tab
+etc/apache/tables/czech/cp1250-cp437.tab
+etc/apache/tables/czech/cp1250-cp895.tab
+etc/apache/tables/czech/cp1250-koi8cs.tab
+etc/apache/tables/czech/cp1250-latin2.tab
+etc/apache/tables/ukrainian/alt-koi.tab
+etc/apache/tables/ukrainian/alt-mac.tab
+etc/apache/tables/ukrainian/alt-win.tab
+etc/apache/tables/ukrainian/koi-alt.tab
+etc/apache/tables/ukrainian/koi-mac.tab
+etc/apache/tables/ukrainian/koi-win.tab
+etc/apache/tables/ukrainian/mac-alt.tab
+etc/apache/tables/ukrainian/mac-koi.tab
+etc/apache/tables/ukrainian/mac-win.tab
+etc/apache/tables/ukrainian/win-alt.tab
+etc/apache/tables/ukrainian/win-koi.tab
+etc/apache/tables/ukrainian/win-mac.tab
+etc/apache/tables/ukrainian2/alt-koi8u.tab
+etc/apache/tables/ukrainian2/alt-ruscii.tab
+etc/apache/tables/ukrainian2/alt-trans.tab
+etc/apache/tables/ukrainian2/alt-win.tab
+etc/apache/tables/ukrainian2/koi-koi8u.tab
+etc/apache/tables/ukrainian2/koi8u-alt.tab
+etc/apache/tables/ukrainian2/koi8u-iso.tab
+etc/apache/tables/ukrainian2/koi8u-koi.tab
+etc/apache/tables/ukrainian2/koi8u-mac.tab
+etc/apache/tables/ukrainian2/koi8u-ruscii.tab
+etc/apache/tables/ukrainian2/koi8u-trans.tab
+etc/apache/tables/ukrainian2/koi8u-win.tab
+etc/apache/tables/ukrainian2/ruscii-alt.tab
+etc/apache/tables/ukrainian2/ruscii-iso.tab
+etc/apache/tables/ukrainian2/ruscii-koi.tab
+etc/apache/tables/ukrainian2/ruscii-koi8u.tab
+etc/apache/tables/ukrainian2/ruscii-mac.tab
+etc/apache/tables/ukrainian2/ruscii-trans.tab
+etc/apache/tables/ukrainian2/ruscii-win.tab
+etc/apache/tables/ukrainian2/win-alt.tab
+etc/apache/tables/ukrainian2/win-iso.tab
+etc/apache/tables/ukrainian2/win-koi.tab
+etc/apache/tables/ukrainian2/win-koi8u.tab
+etc/apache/tables/ukrainian2/win-mac.tab
+etc/apache/tables/ukrainian2/win-ruscii.tab
+etc/apache/tables/ukrainian2/win-trans.tab
+etc/rc.d/apache.sh
+include/apache/alloc.h
+include/apache/ap.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_ctx.h
+include/apache/ap_hook.h
+include/apache/ap_md5.h
+include/apache/ap_mm.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/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
+libexec/apache/libproxy.so
+libexec/apache/libssl.so
+libexec/apache/mod_access.so
+libexec/apache/mod_actions.so
+libexec/apache/mod_alias.so
+libexec/apache/mod_asis.so
+libexec/apache/mod_auth.so
+libexec/apache/mod_autoindex.so
+libexec/apache/mod_auth_anon.so
+libexec/apache/mod_auth_db.so
+libexec/apache/mod_cern_meta.so
+libexec/apache/mod_cgi.so
+libexec/apache/mod_define.so
+libexec/apache/mod_digest.so
+libexec/apache/mod_dir.so
+libexec/apache/mod_env.so
+libexec/apache/mod_expires.so
+libexec/apache/mod_headers.so
+libexec/apache/mod_imap.so
+libexec/apache/mod_include.so
+libexec/apache/mod_info.so
+libexec/apache/mod_log_config.so
+libexec/apache/mod_mime.so
+libexec/apache/mod_mime_magic.so
+libexec/apache/mod_negotiation.so
+libexec/apache/mod_rewrite.so
+libexec/apache/mod_setenvif.so
+libexec/apache/mod_speling.so
+libexec/apache/mod_status.so
+libexec/apache/mod_unique_id.so
+libexec/apache/mod_userdir.so
+libexec/apache/mod_usertrack.so
+libexec/apache/mod_vhost_alias.so
+sbin/ab
+sbin/apachectl
+sbin/apxs
+sbin/httpd
+sbin/logresolve
+sbin/rotatelogs
+%%SUEXEC%%
+share/doc/apache/apache_pb.gif
+share/doc/apache/ra-powered.gif
+@exec mkdir -p %D/www
+@exec ln -fs %B %D/www/data.default
+@unexec rm -f %D/www/data.default
+@exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data
+@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin
+share/doc/apache/index.html.ca
+share/doc/apache/index.html.cz
+share/doc/apache/index.html.de
+share/doc/apache/index.html.dk
+share/doc/apache/index.html.ee
+share/doc/apache/index.html.en
+share/doc/apache/index.html.es
+share/doc/apache/index.html.fr
+share/doc/apache/index.html.it
+share/doc/apache/index.html.ja.jis
+share/doc/apache/index.html.lu
+share/doc/apache/index.html.nl
+share/doc/apache/index.html.po.iso-pl
+share/doc/apache/index.html.pt
+share/doc/apache/index.html.pt-br
+share/doc/apache/index.html.ru
+share/doc/apache/index.html.se
+share/doc/apache/manual/LICENSE
+share/doc/apache/manual/bind.html
+share/doc/apache/manual/cgi_path.html
+share/doc/apache/manual/content-negotiation.html
+share/doc/apache/manual/custom-error.html
+share/doc/apache/manual/dns-caveats.html
+share/doc/apache/manual/dso.html
+share/doc/apache/manual/ebcdic.html
+share/doc/apache/manual/env.html
+share/doc/apache/manual/footer.html
+share/doc/apache/manual/handler.html
+share/doc/apache/manual/header.html
+share/doc/apache/manual/images/apache_pb.gif
+share/doc/apache/manual/images/custom_errordocs.gif
+share/doc/apache/manual/images/feather.jpg
+share/doc/apache/manual/images/home.gif
+share/doc/apache/manual/images/index.gif
+share/doc/apache/manual/images/mod_rewrite_fig1.fig
+share/doc/apache/manual/images/mod_rewrite_fig1.gif
+share/doc/apache/manual/images/mod_rewrite_fig2.fig
+share/doc/apache/manual/images/mod_rewrite_fig2.gif
+share/doc/apache/manual/images/mod_ssl_sb.gif
+share/doc/apache/manual/images/openssl_ics.gif
+share/doc/apache/manual/images/sub.gif
+share/doc/apache/manual/index.html
+share/doc/apache/manual/install-tpf.html
+share/doc/apache/manual/install.html
+share/doc/apache/manual/invoking.html
+share/doc/apache/manual/keepalive.html
+share/doc/apache/manual/location.html
+share/doc/apache/manual/man-template.html
+share/doc/apache/manual/misc/API.html
+share/doc/apache/manual/misc/FAQ.html
+share/doc/apache/manual/misc/HTTP_Features.tsv
+share/doc/apache/manual/misc/client_block_api.html
+share/doc/apache/manual/misc/compat_notes.html
+share/doc/apache/manual/misc/custom_errordocs.html
+share/doc/apache/manual/misc/descriptors.html
+share/doc/apache/manual/misc/fin_wait_2.html
+share/doc/apache/manual/misc/footer.html
+share/doc/apache/manual/misc/header.html
+share/doc/apache/manual/misc/howto.html
+share/doc/apache/manual/misc/index.html
+share/doc/apache/manual/misc/known_client_problems.html
+share/doc/apache/manual/misc/nopgp.html
+share/doc/apache/manual/misc/perf-bsd44.html
+share/doc/apache/manual/misc/perf-dec.html
+share/doc/apache/manual/misc/perf-hp.html
+share/doc/apache/manual/misc/perf-tuning.html
+share/doc/apache/manual/misc/perf.html
+share/doc/apache/manual/misc/rewriteguide.html
+share/doc/apache/manual/misc/security_tips.html
+share/doc/apache/manual/misc/vif-info.html
+share/doc/apache/manual/misc/windoz_keepalive.html
+share/doc/apache/manual/mod/core.html
+share/doc/apache/manual/mod/directive-dict.html
+share/doc/apache/manual/mod/directives.html
+share/doc/apache/manual/mod/footer.html
+share/doc/apache/manual/mod/header.html
+share/doc/apache/manual/mod/index.html
+share/doc/apache/manual/mod/mod_access.html
+share/doc/apache/manual/mod/mod_actions.html
+share/doc/apache/manual/mod/mod_alias.html
+share/doc/apache/manual/mod/mod_asis.html
+share/doc/apache/manual/mod/mod_auth.html
+share/doc/apache/manual/mod/mod_auth_anon.html
+share/doc/apache/manual/mod/mod_auth_db.html
+share/doc/apache/manual/mod/mod_auth_dbm.html
+share/doc/apache/manual/mod/mod_auth_digest.html
+share/doc/apache/manual/mod/mod_autoindex.html
+share/doc/apache/manual/mod/mod_browser.html
+share/doc/apache/manual/mod/mod_cern_meta.html
+share/doc/apache/manual/mod/mod_cgi.html
+share/doc/apache/manual/mod/mod_cookies.html
+share/doc/apache/manual/mod/mod_define.html
+share/doc/apache/manual/mod/mod_digest.html
+share/doc/apache/manual/mod/mod_dir.html
+share/doc/apache/manual/mod/mod_dld.html
+share/doc/apache/manual/mod/mod_dll.html
+share/doc/apache/manual/mod/mod_env.html
+share/doc/apache/manual/mod/mod_example.html
+share/doc/apache/manual/mod/mod_expires.html
+share/doc/apache/manual/mod/mod_headers.html
+share/doc/apache/manual/mod/mod_imap.html
+share/doc/apache/manual/mod/mod_include.html
+share/doc/apache/manual/mod/mod_info.html
+share/doc/apache/manual/mod/mod_isapi.html
+share/doc/apache/manual/mod/mod_log_agent.html
+share/doc/apache/manual/mod/mod_log_common.html
+share/doc/apache/manual/mod/mod_log_config.html
+share/doc/apache/manual/mod/mod_log_referer.html
+share/doc/apache/manual/mod/mod_mime.html
+share/doc/apache/manual/mod/mod_mime_magic.html
+share/doc/apache/manual/mod/mod_mmap_static.html
+share/doc/apache/manual/mod/mod_negotiation.html
+share/doc/apache/manual/mod/mod_proxy.html
+share/doc/apache/manual/mod/mod_rewrite.html
+share/doc/apache/manual/mod/mod_setenvif.html
+share/doc/apache/manual/mod/mod_so.html
+share/doc/apache/manual/mod/mod_speling.html
+share/doc/apache/manual/mod/mod_ssl/index.html
+share/doc/apache/manual/mod/mod_ssl/ssl_compat.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_compat.html
+share/doc/apache/manual/mod/mod_ssl/ssl_compat.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_cover.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_cover_logo.jpg
+share/doc/apache/manual/mod/mod_ssl/ssl_cover_title.jpg
+share/doc/apache/manual/mod/mod_ssl/ssl_faq.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_faq.html
+share/doc/apache/manual/mod/mod_ssl/ssl_faq.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_glossary.html
+share/doc/apache/manual/mod/mod_ssl/ssl_glossary.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_howto.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_howto.html
+share/doc/apache/manual/mod/mod_ssl/ssl_howto.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_intro.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_intro.html
+share/doc/apache/manual/mod/mod_ssl/ssl_intro.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_intro_fig1.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_intro_fig2.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_intro_fig3.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_overview.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_overview.html
+share/doc/apache/manual/mod/mod_ssl/ssl_overview.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_overview_fig1.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_reference.gfont000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_reference.html
+share/doc/apache/manual/mod/mod_ssl/ssl_reference.wml
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-chapter.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-1.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-2.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-3.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-4.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.inc
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-5.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-6.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-7.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-000000.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-transp.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-n.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-s.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-prev-n.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-prev-s.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-abstract.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-compat.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-faq.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-gloss.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-howto.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-intro.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-over.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-preface.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-ref.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-toc.gif
+share/doc/apache/manual/mod/mod_ssl/ssl_template.title-tutor.gif
+share/doc/apache/manual/mod/mod_status.html
+share/doc/apache/manual/mod/mod_unique_id.html
+share/doc/apache/manual/mod/mod_userdir.html
+share/doc/apache/manual/mod/mod_usertrack.html
+share/doc/apache/manual/mod/mod_vhost_alias.html
+share/doc/apache/manual/multilogs.html
+share/doc/apache/manual/netware.html
+share/doc/apache/manual/new_features_1_0.html
+share/doc/apache/manual/new_features_1_1.html
+share/doc/apache/manual/new_features_1_2.html
+share/doc/apache/manual/new_features_1_3.html
+share/doc/apache/manual/process-model.html
+share/doc/apache/manual/readme-tpf.html
+share/doc/apache/manual/search/manual-index.cgi
+share/doc/apache/manual/sections.html
+share/doc/apache/manual/sourcereorg.html
+share/doc/apache/manual/stopping.html
+share/doc/apache/manual/suexec.html
+share/doc/apache/manual/suexec_1_2.html
+share/doc/apache/manual/unixware.html
+share/doc/apache/manual/upgrading_to_1_3.html
+share/doc/apache/manual/vhosts/details.html
+share/doc/apache/manual/vhosts/details_1_2.html
+share/doc/apache/manual/vhosts/examples.html
+share/doc/apache/manual/vhosts/fd-limits.html
+share/doc/apache/manual/vhosts/footer.html
+share/doc/apache/manual/vhosts/header.html
+share/doc/apache/manual/vhosts/host.html
+share/doc/apache/manual/vhosts/index.html
+share/doc/apache/manual/vhosts/ip-based.html
+share/doc/apache/manual/vhosts/mass.html
+share/doc/apache/manual/vhosts/name-based.html
+share/doc/apache/manual/vhosts/vhosts-in-depth.html
+share/doc/apache/manual/vhosts/virtual-host.html
+share/doc/apache/manual/windows.html
+www/cgi-bin.default/printenv
+www/cgi-bin.default/test-cgi
+www/icons/README
+www/icons/a.gif
+www/icons/alert.black.gif
+www/icons/alert.red.gif
+www/icons/apache_pb.gif
+www/icons/back.gif
+www/icons/ball.gray.gif
+www/icons/ball.red.gif
+www/icons/binary.gif
+www/icons/binhex.gif
+www/icons/blank.gif
+www/icons/bomb.gif
+www/icons/box1.gif
+www/icons/box2.gif
+www/icons/broken.gif
+www/icons/burst.gif
+www/icons/c.gif
+www/icons/comp.blue.gif
+www/icons/comp.gray.gif
+www/icons/compressed.gif
+www/icons/continued.gif
+www/icons/dir.gif
+www/icons/down.gif
+www/icons/dvi.gif
+www/icons/f.gif
+www/icons/folder.gif
+www/icons/folder.open.gif
+www/icons/folder.sec.gif
+www/icons/forward.gif
+www/icons/generic.gif
+www/icons/generic.red.gif
+www/icons/generic.sec.gif
+www/icons/hand.right.gif
+www/icons/hand.up.gif
+www/icons/icon.sheet.gif
+www/icons/image1.gif
+www/icons/image2.gif
+www/icons/image3.gif
+www/icons/index.gif
+www/icons/layout.gif
+www/icons/left.gif
+www/icons/link.gif
+www/icons/movie.gif
+www/icons/p.gif
+www/icons/patch.gif
+www/icons/pdf.gif
+www/icons/pie0.gif
+www/icons/pie1.gif
+www/icons/pie2.gif
+www/icons/pie3.gif
+www/icons/pie4.gif
+www/icons/pie5.gif
+www/icons/pie6.gif
+www/icons/pie7.gif
+www/icons/pie8.gif
+www/icons/portal.gif
+www/icons/ps.gif
+www/icons/quill.gif
+www/icons/right.gif
+www/icons/screw1.gif
+www/icons/screw2.gif
+www/icons/script.gif
+www/icons/small/README.txt
+www/icons/small/back.gif
+www/icons/small/binary.gif
+www/icons/small/binhex.gif
+www/icons/small/blank.gif
+www/icons/small/broken.gif
+www/icons/small/burst.gif
+www/icons/small/comp1.gif
+www/icons/small/comp2.gif
+www/icons/small/compressed.gif
+www/icons/small/continued.gif
+www/icons/small/dir.gif
+www/icons/small/dir2.gif
+www/icons/small/doc.gif
+www/icons/small/forward.gif
+www/icons/small/generic.gif
+www/icons/small/generic2.gif
+www/icons/small/generic3.gif
+www/icons/small/image.gif
+www/icons/small/image2.gif
+www/icons/small/index.gif
+www/icons/small/key.gif
+www/icons/small/movie.gif
+www/icons/small/patch.gif
+www/icons/small/ps.gif
+www/icons/small/rainbow.gif
+www/icons/small/sound.gif
+www/icons/small/sound2.gif
+www/icons/small/tar.gif
+www/icons/small/text.gif
+www/icons/small/transfer.gif
+www/icons/small/unknown.gif
+www/icons/small/uu.gif
+www/icons/sound1.gif
+www/icons/sound2.gif
+www/icons/sphere1.gif
+www/icons/sphere2.gif
+www/icons/tar.gif
+www/icons/tex.gif
+www/icons/text.gif
+www/icons/transfer.gif
+www/icons/unknown.gif
+www/icons/up.gif
+www/icons/uu.gif
+www/icons/uuencoded.gif
+www/icons/world1.gif
+www/icons/world2.gif
+@exec mkdir -p %D/www/proxy
+@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
+@exec cd %D/etc/apache/ssl.crt && make >/dev/null 2>&1
+@unexec rm -f %D/etc/apache/ssl.crt/[0-9a-fA-F]*.[0-9]*
+@dirrm etc/apache/ssl.crl
+@dirrm etc/apache/ssl.crt
+@dirrm etc/apache/ssl.csr
+@dirrm etc/apache/ssl.key
+@dirrm etc/apache/ssl.prm
+@dirrm etc/apache/tables/czech
+@dirrm etc/apache/tables/russian
+@dirrm etc/apache/tables/russian2
+@dirrm etc/apache/tables/ukrainian
+@dirrm etc/apache/tables/ukrainian2
+@dirrm etc/apache/tables
+@dirrm etc/apache
+@dirrm include/apache/xml
+@dirrm include/apache
+@dirrm libexec/apache
+@dirrm share/doc/apache/manual/images
+@dirrm share/doc/apache/manual/misc
+@dirrm share/doc/apache/manual/mod/mod_ssl
+@dirrm share/doc/apache/manual/mod
+@dirrm share/doc/apache/manual/search
+@dirrm share/doc/apache/manual/vhosts
+@dirrm share/doc/apache/manual
+@dirrm share/doc/apache
+@dirrm www/cgi-bin.default
+@dirrm www/icons/small
+@dirrm www/icons
+@dirrm www/proxy
+@dirrm www