aboutsummaryrefslogtreecommitdiff
path: root/russian
diff options
context:
space:
mode:
authorDmitry Sivachenko <demon@FreeBSD.org>2001-11-08 11:23:25 +0000
committerDmitry Sivachenko <demon@FreeBSD.org>2001-11-08 11:23:25 +0000
commit6ac1f43ebb101442eae40e9166892081ea5db281 (patch)
tree8c683468ff48f2d222914825e1ce3bb0db1b6af3 /russian
parent0edfeec38c7c02f820bdce82faf36b43cc7bd447 (diff)
downloadports-6ac1f43ebb101442eae40e9166892081ea5db281.tar.gz
ports-6ac1f43ebb101442eae40e9166892081ea5db281.zip
Upgrade to Apache 1.3.22, RA 30.9 and mod_ssl 2.8.5.
PR: 31797 Submitted by: Petr Rehor <petr.dehor@decros.cz>
Notes
Notes: svn path=/head/; revision=49839
Diffstat (limited to 'russian')
-rw-r--r--russian/apache13-modssl/Makefile49
-rw-r--r--russian/apache13-modssl/distinfo4
-rw-r--r--russian/apache13-modssl/files/FreeBSD.layout1
-rw-r--r--russian/apache13-modssl/files/patch-aa8
-rw-r--r--russian/apache13-modssl/files/patch-ab86
-rw-r--r--russian/apache13-modssl/files/patch-ag23
-rw-r--r--russian/apache13-modssl/files/patch-ah12
-rw-r--r--russian/apache13-modssl/files/patch-ak8
-rw-r--r--russian/apache13-modssl/files/patch-al19
-rw-r--r--russian/apache13-modssl/pkg-deinstall20
-rw-r--r--russian/apache13-modssl/pkg-install34
-rw-r--r--russian/apache13-modssl/pkg-plist785
12 files changed, 633 insertions, 416 deletions
diff --git a/russian/apache13-modssl/Makefile b/russian/apache13-modssl/Makefile
index 6826fd61cc83..c727600a9466 100644
--- a/russian/apache13-modssl/Makefile
+++ b/russian/apache13-modssl/Makefile
@@ -32,16 +32,18 @@ USE_OPENSSL= YES
LIB_DEPENDS= mm.11:${PORTSDIR}/devel/mm
-VERSION_APACHE= 1.3.20
-VERSION_MODSSL= 2.8.4
-RA_VERSION= 30.7
+VERSION_APACHE= 1.3.22
+VERSION_MODSSL= 2.8.5
+RA_VERSION= 30.9
USE_PERL5= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
- --server-gid=nogroup \
+ --server-uid=www \
+ --server-gid=www \
--with-perl=${PERL} \
--with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \
+ --suexec-docroot=${PREFIX}/www/data \
--without-confadjust \
--enable-module=most \
--enable-module=auth_db \
@@ -53,24 +55,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \
OPTIM= -DHARD_SERVER_LIMIT=512 \
-DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \
- -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" \
+ -DDEFAULT_PATH=\\"${PREFIX}/bin:/bin:/usr/bin\\" \
-DACCEPT_FILTER_NAME=\\"httpready\\"
-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
-.else
- @${ECHO} "Define WITH_SUEXEC to build with suexec support."
-.endif
-
-.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES
+.if defined(WITH_APACHE_PERF_TUNING) && ${WITH_APACHE_PERF_TUNING} == YES
OPTIM+= -DBUFFERED_LOGS -DFD_SETSIZE=1024
CFLAGS+= -O6 -funroll-loops -fstrength-reduce -fomit-frame-pointer \
-fexpensive-optimizations -ffast-math
@@ -85,12 +73,25 @@ CONFIGURE_ENV= CFLAGS='${CFLAGS}' \
INSTALL_TARGET= install-quiet
MAN1= dbmmanage.1 htdigest.1 htpasswd.1
-MAN8+= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8
+MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8
TYPE= test
CRT=
KEY=
+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-logfile=/var/log/suexec.log \
+ --suexec-uidmin=50000 \
+ --suexec-gidmin=60000
+MAN8+= suexec.8
+.else
+ @${ECHO} "Define WITH_SUEXEC to build with suexec support."
+.endif
+
pre-patch:
@cd ${WRKDIR}/mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE} \
&& ${ECHO_MSG} "===> Applying mod_ssl-${VERSION_MODSSL} extension" \
@@ -111,11 +112,13 @@ certificate:
&& ${ECHO_MSG} "===> Creating Test Certificate for Server" \
&& ${MAKE} certificate TYPE=${TYPE} CRT=${CRT} KEY=${KEY}
+pre-install:
+ PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL
+
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; \
+ ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \
fi
.if defined(WITH_SUEXEC)
@${ECHO} "sbin/suexec" >> ${TMPPLIST}
diff --git a/russian/apache13-modssl/distinfo b/russian/apache13-modssl/distinfo
index c0d8382db39e..0529626c5a51 100644
--- a/russian/apache13-modssl/distinfo
+++ b/russian/apache13-modssl/distinfo
@@ -1,2 +1,2 @@
-MD5 (apache_1.3.20rusPL30.7.tar.gz) = 00ae82d5f048c88d9605f4d9959187c3
-MD5 (mod_ssl-2.8.4-1.3.20.tar.gz) = ff1a548c2387f123a3df4436a1e884f9
+MD5 (apache_1.3.22rusPL30.9.tar.gz) = 9c76252ae3a97227364a027acdff6c51
+MD5 (mod_ssl-2.8.5-1.3.22.tar.gz) = 5139c874e759b8410a29f9dcb4b578e5
diff --git a/russian/apache13-modssl/files/FreeBSD.layout b/russian/apache13-modssl/files/FreeBSD.layout
index 5524e186e9c0..b73ee2ae1484 100644
--- a/russian/apache13-modssl/files/FreeBSD.layout
+++ b/russian/apache13-modssl/files/FreeBSD.layout
@@ -10,6 +10,7 @@
datadir: $prefix/www
iconsdir: $datadir/icons
htdocsdir: $datadir/data
+ manualdir: $prefix/share/doc/apache
cgidir: $datadir/cgi-bin
includedir: $prefix/include/apache
localstatedir: /var
diff --git a/russian/apache13-modssl/files/patch-aa b/russian/apache13-modssl/files/patch-aa
index 15cd58c27ef2..b98495c3de49 100644
--- a/russian/apache13-modssl/files/patch-aa
+++ b/russian/apache13-modssl/files/patch-aa
@@ -1,6 +1,6 @@
---- configure.orig Tue Jan 18 01:53:17 2000
-+++ configure Mon Jan 24 19:37:21 2000
-@@ -1232,8 +1232,8 @@
+--- configure.orig Tue Nov 6 11:37:00 2001
++++ configure Tue Nov 6 11:41:25 2001
+@@ -1275,8 +1275,8 @@
echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid"
echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard"
echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock"
@@ -11,7 +11,7 @@
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 @@
+@@ -1377,8 +1377,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
diff --git a/russian/apache13-modssl/files/patch-ab b/russian/apache13-modssl/files/patch-ab
index 97f6cb427bb0..672f23479f33 100644
--- a/russian/apache13-modssl/files/patch-ab
+++ b/russian/apache13-modssl/files/patch-ab
@@ -1,26 +1,21 @@
---- Makefile.tmpl.orig Mon Mar 12 13:11:58 2001
-+++ Makefile.tmpl Mon Mar 12 13:17:31 2001
-@@ -126,6 +126,7 @@
- runtimedir = @runtimedir@
- logfiledir = @logfiledir@
- proxycachedir = @proxycachedir@
-+doc_prefix = $(prefix)/share/doc/apache
-
- libexecdir_relative = @libexecdir_relative@
-
-@@ -328,9 +329,9 @@
+--- Makefile.tmpl.orig Tue Nov 6 11:37:00 2001
++++ Makefile.tmpl Tue Nov 6 11:39:12 2001
+@@ -329,10 +329,12 @@
$(MKDIR) $(root)$(sysconfdir)/ssl.csr
$(MKDIR) $(root)$(sysconfdir)/ssl.key
$(MKDIR) $(root)$(sysconfdir)/ssl.prm
- $(MKDIR) $(root)$(htdocsdir)
-+ $(MKDIR) $(root)$(doc_prefix)
++ $(RM) -rf $(root)$(htdocsdir).default
++ $(MKDIR) $(root)$(htdocsdir).default
+ $(MKDIR) $(root)$(manualdir)
$(MKDIR) $(root)$(iconsdir)
- $(MKDIR) $(root)$(cgidir)
++ $(RM) -rf $(root)$(cgidir).default
+ $(MKDIR) $(root)$(cgidir).default
$(MKDIR) $(root)$(includedir)
$(MKDIR) $(root)$(includedir)/xml
$(MKDIR) $(root)$(sysconfdir)/tables
-@@ -530,25 +531,33 @@
+@@ -532,33 +534,40 @@
# icons and distributed CGI scripts.
install-data:
@echo "===> [data: Installing initial data files]"
@@ -28,29 +23,36 @@
- 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) - *) |\
++# -@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).default/"; \
+ (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - index* ra-powered.* apache_pb.* ) |\
- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \
- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \
-- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \
+- find $(root)$(htdocsdir)/ -type f -print | xargs chmod a+r ; \
- fi
+- -@if [ -d $(TOP)/htdocs/manual ]; then \
++ (cd $(root)$(htdocsdir).default/ && $(TAR) -xf -); \
++ find $(root)$(htdocsdir).default/ -type d -exec chmod a+rx {} \; ; \
++ find $(root)$(htdocsdir).default/ -type f -print | xargs chmod a+r ; \
++# fi
++# -@if [ -d $(TOP)/htdocs/manual ]; then \
+ 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 ; \
++# fi
++ $(LN) -sf $(root)$(manualdir) $(root)$(htdocsdir).default/manual
++ if [ ! -d $(root)$(htdocsdir)/ ]; then \
++ $(LN) -sf $(root)$(htdocsdir).default $(root)$(htdocsdir); \
+ fi
- -@if [ -f $(root)$(cgidir)/printenv ]; then \
-- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \
+- echo "[PRESERVING EXISTING CGI 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)/]"; \
++# echo "[PRESERVING EXISTING CGI SUBDIR: $(root)$(cgidir)/]"; \
+# else \
for script in printenv test-cgi; do \
cat $(TOP)/cgi-bin/$${script} |\
@@ -61,13 +63,15 @@
+ 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 \
+- fi
++# fi
++ if [ ! -d $(root)$(cgidir)/ ]; then \
+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \
- fi
++ fi
@echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \
(cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\
-@@ -598,10 +607,10 @@
+ (cd $(root)$(iconsdir)/ && $(TAR) -xf -); \
+@@ -608,15 +617,15 @@
-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;' \
@@ -75,10 +79,16 @@
- -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}http-access.log;" \
-+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}http-error.log;" \
-+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}http-referer.log;" \
-+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}http-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/magic;$(sysconfdir)/magic;' \
-e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \
-e 's;conf/tables;$(sysconfdir)/tables;g' \
+ -e 's;User nobody;User $(conf_user);' \
+- -e 's;Group #-1;Group $(conf_group);' \
++ -e 's;Group "#-1";Group $(conf_group);' \
+ -e 's;Port 80;Port $(conf_port);' \
+ -e 's;Listen 80;Listen $(conf_port);' \
+ -e 's;Listen 443;Listen $(conf_port_ssl);' \
diff --git a/russian/apache13-modssl/files/patch-ag b/russian/apache13-modssl/files/patch-ag
index 80373fbcca63..16218769bf35 100644
--- a/russian/apache13-modssl/files/patch-ag
+++ b/russian/apache13-modssl/files/patch-ag
@@ -1,6 +1,17 @@
---- 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 @@
+--- conf/httpd.conf-dist.orig Tue Nov 6 11:37:00 2001
++++ conf/httpd.conf-dist Tue Nov 6 11:37:59 2001
+@@ -92,8 +92,8 @@
+ # server ignore these files altogether by using "/dev/null" (for Unix) or
+ # "nul" (for Win32) for the arguments to the directives.
+ #
+-#ResourceConfig conf/srm.conf
+-#AccessConfig conf/access.conf
++ResourceConfig /dev/null
++AccessConfig /dev/null
+
+ #
+ # Timeout: The number of seconds before receives and sends time out.
+@@ -383,7 +383,22 @@
# directory index. Separate multiple entries with spaces.
#
<IfModule mod_dir.c>
@@ -24,7 +35,7 @@
</IfModule>
#
-@@ -473,7 +488,7 @@
+@@ -503,7 +518,7 @@
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
@@ -33,7 +44,7 @@
#
# If you would like to have agent and referer logfiles, uncomment the
-@@ -486,7 +501,7 @@
+@@ -516,7 +531,7 @@
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
@@ -42,7 +53,7 @@
#
# Optionally add a line containing the server version and virtual host
-@@ -708,13 +723,17 @@
+@@ -793,13 +808,17 @@
# For example, the PHP 3.x module (not part of the Apache distribution - see
# http://www.php.net) will typically use:
#
diff --git a/russian/apache13-modssl/files/patch-ah b/russian/apache13-modssl/files/patch-ah
index e46ddf60928d..12be4a63bfa4 100644
--- a/russian/apache13-modssl/files/patch-ah
+++ b/russian/apache13-modssl/files/patch-ah
@@ -1,18 +1,18 @@
---- 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 @@
+--- src/modules/ssl/Makefile.tmpl.orig Mon Jan 1 19:48:52 2001
++++ src/modules/ssl/Makefile.tmpl Mon Oct 22 20:45:05 2001
+@@ -128,6 +128,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
++# /usr/include/openssl/*.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 @@
+@@ -144,10 +149,10 @@
.SUFFIXES: .o .lo
.c.o:
@@ -25,7 +25,7 @@
clean:
rm -f $(OBJS) $(OBJS_PIC)
-@@ -186,7 +191,7 @@
+@@ -201,7 +206,7 @@
depend:
cp Makefile.tmpl Makefile.tmpl.bak \
&& sed -ne '1,/^# DO NOT REMOVE/p' Makefile.tmpl > Makefile.new \
diff --git a/russian/apache13-modssl/files/patch-ak b/russian/apache13-modssl/files/patch-ak
index 486f7ad159cf..5deadd438d9a 100644
--- a/russian/apache13-modssl/files/patch-ak
+++ b/russian/apache13-modssl/files/patch-ak
@@ -1,5 +1,5 @@
---- src/support/apachectl.orig Wed Apr 7 00:36:33 1999
-+++ src/support/apachectl Fri Sep 3 15:41:01 1999
+--- src/support/apachectl.orig Wed Mar 24 10:11:39 1999
++++ src/support/apachectl Wed Mar 24 10:19:09 1999
@@ -39,6 +39,8 @@
# -------------------- --------------------
# |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||
@@ -9,11 +9,11 @@
ERROR=0
ARGV="$@"
if [ "x$ARGV" = "x" ] ; then
-@@ -82,6 +84,7 @@
+@@ -94,6 +96,7 @@
fi
if kill $PID ; then
echo "$0 $ARG: httpd stopped"
-+ rm $PIDFILE
++ rm -f $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
index b355a697b4ab..4ee89df5c8c8 100644
--- a/russian/apache13-modssl/files/patch-al
+++ b/russian/apache13-modssl/files/patch-al
@@ -1,6 +1,6 @@
---- 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 @@
+--- src/support/log_server_status.orig Tue Jan 16 02:06:38 2001
++++ src/support/log_server_status Mon Oct 22 20:44:59 2001
+@@ -70,7 +70,7 @@
#
require 'sys/socket.ph';
@@ -8,12 +8,17 @@
+$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
+ $request = "/status/?auto"; # Request to send
+@@ -96,14 +96,14 @@
+ ### Main
- sub tcp_connect
{
-@@ -100,7 +100,7 @@
+- $year=`date +%y`;
++ $year=`LC_TIME=C date +%y`;
+ chomp($year);
+ $year += ($year < 70) ? 2000 : 1900;
+- $date = $year . `date +%m%d:%H%M%S`;
++ $date = $year . `LC_TIME=C date +%m%d:%H%M%S`;
chomp($date);
($day,$time)=split(/:/,$date);
$res=&tcp_connect($server,$port);
diff --git a/russian/apache13-modssl/pkg-deinstall b/russian/apache13-modssl/pkg-deinstall
new file mode 100644
index 000000000000..d2e1679f1abd
--- /dev/null
+++ b/russian/apache13-modssl/pkg-deinstall
@@ -0,0 +1,20 @@
+#!/bin/sh
+# $FreeBSD: /tmp/pcvs/ports/russian/apache13-modssl/Attic/pkg-deinstall,v 1.1 2001-11-08 11:23:21 demon Exp $
+#
+
+if [ "$2" != "POST-DEINSTALL" ]; then
+ exit 0
+fi
+
+USER=www
+
+if pw usershow "${USER}" 2>/dev/null 1>&2; then
+ if pw userdel ${USER}; then
+ echo "Delete user/group \"${USER}\"."
+ else
+ echo "Deleting user/group \"${USER}\" failed..."
+ exit 1
+ fi
+fi
+
+exit 0
diff --git a/russian/apache13-modssl/pkg-install b/russian/apache13-modssl/pkg-install
new file mode 100644
index 000000000000..5e1c0cba01a6
--- /dev/null
+++ b/russian/apache13-modssl/pkg-install
@@ -0,0 +1,34 @@
+#!/bin/sh
+# $FreeBSD: /tmp/pcvs/ports/russian/apache13-modssl/Attic/pkg-install,v 1.1 2001-11-08 11:23:21 demon Exp $
+#
+
+if [ "$2" != "PRE-INSTALL" ]; then
+ exit 0
+fi
+
+USER=www
+GROUP=${USER}
+UID=80
+GID=${UID}
+
+if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
+ if pw groupadd ${GROUP} -g ${GID}; then
+ echo "Added group \"${GROUP}\"."
+ else
+ echo "Adding group \"${GROUP}\" failed..."
+ exit 1
+ fi
+fi
+
+if ! pw usershow "${USER}" 2>/dev/null 1>&2; then
+ if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
+ -s "/sbin/nologin" -d "/nonexistent" \
+ -c "World Wide Web Owner"; \
+ then
+ echo "Added user \"${USER}\"."
+ else
+ echo "Adding user \"${USER}\" failed..."
+ exit 1
+ fi
+fi
+exit 0
diff --git a/russian/apache13-modssl/pkg-plist b/russian/apache13-modssl/pkg-plist
index 1bd3178d0685..f2bce4d4c764 100644
--- a/russian/apache13-modssl/pkg-plist
+++ b/russian/apache13-modssl/pkg-plist
@@ -16,27 +16,27 @@ etc/apache/mime.types.default
@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.crl/Makefile
+etc/apache/ssl.crl/README.CRL
etc/apache/ssl.crt/Makefile
+etc/apache/ssl.crt/README.CRT
etc/apache/ssl.crt/ca-bundle.crt
-etc/apache/ssl.crt/snakeoil-ca-rsa.crt
+etc/apache/ssl.crt/server.crt
etc/apache/ssl.crt/snakeoil-ca-dsa.crt
-etc/apache/ssl.crt/snakeoil-rsa.crt
+etc/apache/ssl.crt/snakeoil-ca-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.crt/snakeoil-rsa.crt
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/server.key
etc/apache/ssl.key/snakeoil-ca-dsa.key
-etc/apache/ssl.key/snakeoil-rsa.key
+etc/apache/ssl.key/snakeoil-ca-rsa.key
etc/apache/ssl.key/snakeoil-dsa.key
-etc/apache/ssl.key/server.key
+etc/apache/ssl.key/snakeoil-rsa.key
+etc/apache/ssl.prm/README.PRM
+etc/apache/ssl.prm/snakeoil-ca-dsa.prm
+etc/apache/ssl.prm/snakeoil-dsa.prm
etc/apache/tables/cyrillic/dos-dos.tab
etc/apache/tables/cyrillic/dos-iso.tab
etc/apache/tables/cyrillic/dos-koi.tab
@@ -191,8 +191,8 @@ 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_ctx.h
+include/apache/ap_ctype.h
include/apache/ap_ebcdic.h
include/apache/ap_hook.h
include/apache/ap_md5.h
@@ -242,9 +242,9 @@ 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_autoindex.so
libexec/apache/mod_cern_meta.so
libexec/apache/mod_cgi.so
libexec/apache/mod_define.so
@@ -275,310 +275,335 @@ sbin/apxs
sbin/httpd
sbin/logresolve
sbin/rotatelogs
-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/README.rus
-share/doc/apache/index.html
-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.el
+www/data.default/apache_pb.gif
+www/data.default/ra-powered.gif
+@exec [ -d %D/www/data/ ] || ln -fs %B %D/www/data
+www/data.default/index.html
+www/data.default/index.html.ca
+www/data.default/index.html.cz
+www/data.default/index.html.de
+www/data.default/index.html.dk
+www/data.default/index.html.ee
+www/data.default/index.html.el
+www/data.default/index.html.en
+www/data.default/index.html.es
+www/data.default/index.html.fr
+www/data.default/index.html.he.iso8859-8
+www/data.default/index.html.it
+www/data.default/index.html.ja.jis
+www/data.default/index.html.kr.iso-kr
+www/data.default/index.html.lu
+www/data.default/index.html.nl
+www/data.default/index.html.nn
+www/data.default/index.html.no
+www/data.default/index.html.po.iso-pl
+www/data.default/index.html.pt
+www/data.default/index.html.pt-br
+www/data.default/index.html.ru
+www/data.default/index.html.ru.cp-1251
+www/data.default/index.html.ru.cp866
+www/data.default/index.html.ru.iso-ru
+www/data.default/index.html.ru.koi8-r
+www/data.default/index.html.ru.ucs2
+www/data.default/index.html.ru.ucs4
+www/data.default/index.html.ru.utf8
+www/data.default/index.html.se
+www/data.default/index.html.zh.Big5
+share/doc/apache/LICENSE
+@exec [ -e %D/www/data.default/manual ] || ln -fs %B %D/www/data.default/manual
+share/doc/apache/bind.html.en
+share/doc/apache/bind.html.fr
+share/doc/apache/bind.html.html
+share/doc/apache/cgi_path.html.en
+share/doc/apache/cgi_path.html.fr
+share/doc/apache/cgi_path.html.html
+share/doc/apache/configuring.html.fr
+share/doc/apache/configuring.html.en
+share/doc/apache/configuring.html.ja.jis
+share/doc/apache/content-negotiation.html
+share/doc/apache/custom-error.html.en
+share/doc/apache/custom-error.html.ja.jis
+share/doc/apache/cygwin.html
+share/doc/apache/dns-caveats.html.en
+share/doc/apache/dns-caveats.html.fr
+share/doc/apache/dns-caveats.html.html
+share/doc/apache/dso.html
+share/doc/apache/ebcdic.html
+share/doc/apache/env.html.en
+share/doc/apache/env.html.html
+share/doc/apache/env.html.ja.jis
+share/doc/apache/footer.html
+share/doc/apache/handler.html.en
+share/doc/apache/handler.html.ja.jis
+share/doc/apache/header.html
+share/doc/apache/howto/cgi.html.en
+share/doc/apache/howto/cgi.html.ja.jis
+share/doc/apache/howto/footer.html
+share/doc/apache/howto/header.html
+share/doc/apache/images/apache_pb.gif
+share/doc/apache/images/apache_header.gif
+share/doc/apache/images/custom_errordocs.gif
+share/doc/apache/images/feather.jpg
+share/doc/apache/images/home.gif
+share/doc/apache/images/index.gif
+share/doc/apache/images/mod_rewrite_fig1.fig
+share/doc/apache/images/mod_rewrite_fig1.gif
+share/doc/apache/images/mod_rewrite_fig2.fig
+share/doc/apache/images/mod_rewrite_fig2.gif
+share/doc/apache/images/mod_ssl_sb.gif
+share/doc/apache/images/openssl_ics.gif
+share/doc/apache/images/pixel.gif
+share/doc/apache/images/sub.gif
share/doc/apache/index.html.en
-share/doc/apache/index.html.es
-share/doc/apache/index.html.fr
-share/doc/apache/index.html.he.iso8859-8
-share/doc/apache/index.html.it
share/doc/apache/index.html.ja.jis
-share/doc/apache/index.html.kr.iso-kr
-share/doc/apache/index.html.lu
-share/doc/apache/index.html.nl
-share/doc/apache/index.html.no
-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.ru.cp-1251
-share/doc/apache/index.html.ru.cp866
-share/doc/apache/index.html.ru.iso-ru
-share/doc/apache/index.html.ru.koi8-r
-share/doc/apache/index.html.ru.ucs2
-share/doc/apache/index.html.ru.ucs4
-share/doc/apache/index.html.ru.utf8
-share/doc/apache/index.html.se
-share/doc/apache/index.html.zh.Big5
-share/doc/apache/manual/LICENSE
-share/doc/apache/manual/bind.html
-share/doc/apache/manual/cgi_path.html
-share/doc/apache/manual/configuring.html.en
-share/doc/apache/manual/configuring.html.fr
-share/doc/apache/manual/configuring.html.html
-share/doc/apache/manual/configuring.html.ja.jis
-share/doc/apache/manual/content-negotiation.html
-share/doc/apache/manual/custom-error.html.en
-share/doc/apache/manual/custom-error.html.html
-share/doc/apache/manual/custom-error.html.ja.jis
-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/mpeix.html
-share/doc/apache/manual/footer.html
-share/doc/apache/manual/handler.html.en
-share/doc/apache/manual/handler.html.html
-share/doc/apache/manual/handler.html.ja.jis
-share/doc/apache/manual/header.html
-share/doc/apache/manual/howto/cgi.html.en
-share/doc/apache/manual/howto/cgi.html.html
-share/doc/apache/manual/howto/cgi.html.ja.jis
-share/doc/apache/manual/howto/footer.html
-share/doc/apache/manual/howto/header.html
-share/doc/apache/manual/howto/ssi.html.en
-share/doc/apache/manual/howto/ssi.html.html
-share/doc/apache/manual/howto/ssi.html.ja.jis
-share/doc/apache/manual/images/apache_pb.gif
-share/doc/apache/manual/images/apache_header.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/pixel.gif
-share/doc/apache/manual/images/sub.gif
-share/doc/apache/manual/index.html.en
-share/doc/apache/manual/index.html.fr
-share/doc/apache/manual/index.html.html
-share/doc/apache/manual/index.html.ja.jis
-share/doc/apache/manual/install-tpf.html
-share/doc/apache/manual/install.html.en
-share/doc/apache/manual/install.html.es
-share/doc/apache/manual/install.html.fr
-share/doc/apache/manual/install.html.html
-share/doc/apache/manual/install.html.ja.jis
-share/doc/apache/manual/invoking.html
-share/doc/apache/manual/invoking.html.fr
-share/doc/apache/manual/invoking.html.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/tutorials.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.en
-share/doc/apache/manual/mod/directive-dict.html.html
-share/doc/apache/manual/mod/directive-dict.html.ja.jis
-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/index.html.fr
-share/doc/apache/manual/mod/index-bytype.html
-share/doc/apache/manual/mod/index-bytype.html.fr
-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_env.html.en
-share/doc/apache/manual/mod/mod_env.html.html
-share/doc/apache/manual/mod/mod_env.html.ja.jis
-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_magic.html
-share/doc/apache/manual/mod/mod_mime.html.en
-share/doc/apache/manual/mod/mod_mime.html.html
-share/doc/apache/manual/mod/mod_mime.html.ja.jis
-share/doc/apache/manual/mod/mod_mmap_static.html
-share/doc/apache/manual/mod/mod_negotiation.html.en
-share/doc/apache/manual/mod/mod_negotiation.html.html
-share/doc/apache/manual/mod/mod_negotiation.html.ja.jis
-share/doc/apache/manual/mod/mod_proxy.html
-share/doc/apache/manual/mod/mod_rewrite.html
-share/doc/apache/manual/mod/mod_setenvif.html.en
-share/doc/apache/manual/mod/mod_setenvif.html.html
-share/doc/apache/manual/mod/mod_setenvif.html.ja.jis
-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/mod/module-dict.html.en
-share/doc/apache/manual/mod/module-dict.html.html
-share/doc/apache/manual/mod/module-dict.html.ja.jis
-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.en
-share/doc/apache/manual/new_features_1_3.html.html
-share/doc/apache/manual/new_features_1_3.html.ja.jis
-share/doc/apache/manual/new_features_2_0.html
-share/doc/apache/manual/process-model.html
-share/doc/apache/manual/programs/ab.html
-share/doc/apache/manual/programs/apachectl.html
-share/doc/apache/manual/programs/apxs.html
-share/doc/apache/manual/programs/dbmmanage.html
-share/doc/apache/manual/programs/footer.html
-share/doc/apache/manual/programs/header.html
-share/doc/apache/manual/programs/htdigest.html
-share/doc/apache/manual/programs/htpasswd.html
-share/doc/apache/manual/programs/httpd.html
-share/doc/apache/manual/programs/index.html.en
-share/doc/apache/manual/programs/index.html.html
-share/doc/apache/manual/programs/index.html.ja.jis
-share/doc/apache/manual/programs/logresolve.html
-share/doc/apache/manual/programs/other.html
-share/doc/apache/manual/programs/rotatelogs.html
-share/doc/apache/manual/programs/suexec.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/server-wide.html.en
-share/doc/apache/manual/server-wide.html.fr
-share/doc/apache/manual/server-wide.html.html
-share/doc/apache/manual/server-wide.html.ja.jis
-share/doc/apache/manual/sourcereorg.html
-share/doc/apache/manual/stopping.html
-share/doc/apache/manual/stopping.html.fr
-share/doc/apache/manual/stopping.html.html
-share/doc/apache/manual/suexec_1_2.html
-share/doc/apache/manual/suexec.html.en
-share/doc/apache/manual/suexec.html.html
-share/doc/apache/manual/suexec.html.ja.jis
-share/doc/apache/manual/unixware.html
-share/doc/apache/manual/upgrading_to_1_3.html
-share/doc/apache/manual/urlmapping.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.en
-share/doc/apache/manual/vhosts/index.html.html
-share/doc/apache/manual/vhosts/index.html.ja.jis
-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
-share/doc/apache/manual/win_compiling.html
-share/doc/apache/manual/win_service.html
+share/doc/apache/install-tpf.html
+share/doc/apache/install.html.es
+share/doc/apache/install.html.en
+share/doc/apache/install.html.ja.jis
+share/doc/apache/invoking.html.en
+share/doc/apache/invoking.html.html
+share/doc/apache/keepalive.html.en
+share/doc/apache/keepalive.html.html
+share/doc/apache/keepalive.html.ja.jis
+share/doc/apache/location.html
+share/doc/apache/logs.html
+share/doc/apache/man-template.html
+share/doc/apache/misc/API.html
+share/doc/apache/misc/FAQ.html
+share/doc/apache/misc/HTTP_Features.tsv
+share/doc/apache/misc/client_block_api.html
+share/doc/apache/misc/compat_notes.html
+share/doc/apache/misc/custom_errordocs.html
+share/doc/apache/misc/descriptors.html
+share/doc/apache/misc/fin_wait_2.html
+share/doc/apache/misc/footer.html
+share/doc/apache/misc/header.html
+share/doc/apache/misc/howto.html
+share/doc/apache/misc/index.html
+share/doc/apache/misc/known_client_problems.html
+share/doc/apache/misc/nopgp.html
+share/doc/apache/misc/perf-bsd44.html
+share/doc/apache/misc/perf-dec.html
+share/doc/apache/misc/perf-hp.html
+share/doc/apache/misc/perf-tuning.html
+share/doc/apache/misc/perf.html
+share/doc/apache/misc/rewriteguide.html
+share/doc/apache/misc/security_tips.html
+share/doc/apache/misc/tutorials.html
+share/doc/apache/misc/vif-info.html
+share/doc/apache/misc/windoz_keepalive.html
+share/doc/apache/mod/core.html.en
+share/doc/apache/mod/core.html.fr
+share/doc/apache/mod/core.html.html
+share/doc/apache/mod/directive-dict.html.en
+share/doc/apache/mod/directive-dict.html.fr
+share/doc/apache/mod/directive-dict.html.ja.jis
+share/doc/apache/mod/directives.html.de
+share/doc/apache/mod/directives.html.en
+share/doc/apache/mod/directives.html.fr
+share/doc/apache/mod/directives.html.html
+share/doc/apache/mod/directives.html.ja.jis
+share/doc/apache/mod/footer.html
+share/doc/apache/mod/header.html
+share/doc/apache/mod/index-bytype.html.en
+share/doc/apache/mod/index-bytype.html.fr
+share/doc/apache/mod/index-bytype.html.html
+share/doc/apache/mod/index.html.en
+share/doc/apache/mod/index.html.fr
+share/doc/apache/mod/index.html.html
+share/doc/apache/mod/index.html.ja.jis
+share/doc/apache/mod/mod_access.html
+share/doc/apache/mod/mod_actions.html
+share/doc/apache/mod/mod_alias.html
+share/doc/apache/mod/mod_asis.html
+share/doc/apache/mod/mod_auth.html
+share/doc/apache/mod/mod_auth_anon.html
+share/doc/apache/mod/mod_auth_db.html
+share/doc/apache/mod/mod_auth_dbm.html
+share/doc/apache/mod/mod_auth_digest.html
+share/doc/apache/mod/mod_autoindex.html
+share/doc/apache/mod/mod_browser.html
+share/doc/apache/mod/mod_cern_meta.html
+share/doc/apache/mod/mod_cgi.html
+share/doc/apache/mod/mod_cookies.html
+share/doc/apache/mod/mod_define.html
+share/doc/apache/mod/mod_digest.html
+share/doc/apache/mod/mod_dir.html
+share/doc/apache/mod/mod_dld.html
+share/doc/apache/mod/mod_env.html.en
+share/doc/apache/mod/mod_env.html.html
+share/doc/apache/mod/mod_env.html.ja.jis
+share/doc/apache/mod/mod_example.html
+share/doc/apache/mod/mod_expires.html
+share/doc/apache/mod/mod_headers.html
+share/doc/apache/mod/mod_imap.html
+share/doc/apache/mod/mod_include.html
+share/doc/apache/mod/mod_info.html
+share/doc/apache/mod/mod_isapi.html
+share/doc/apache/mod/mod_log_agent.html
+share/doc/apache/mod/mod_log_common.html
+share/doc/apache/mod/mod_log_config.html
+share/doc/apache/mod/mod_log_referer.html
+share/doc/apache/mod/mod_mime.html.en
+share/doc/apache/mod/mod_mime.html.html
+share/doc/apache/mod/mod_mime.html.ja.jis
+share/doc/apache/mod/mod_mime_magic.html
+share/doc/apache/mod/mod_mmap_static.html
+share/doc/apache/mod/mod_negotiation.html.en
+share/doc/apache/mod/mod_negotiation.html.ja.jis
+share/doc/apache/mod/mod_proxy.html
+share/doc/apache/mod/mod_rewrite.html
+share/doc/apache/mod/mod_setenvif.html.en
+share/doc/apache/mod/mod_setenvif.html.html
+share/doc/apache/mod/mod_setenvif.html.ja.jis
+share/doc/apache/mod/mod_so.html
+share/doc/apache/mod/mod_speling.html
+share/doc/apache/mod/mod_ssl/index.html
+share/doc/apache/mod/mod_ssl/ssl_compat.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_compat.html
+share/doc/apache/mod/mod_ssl/ssl_compat.wml
+share/doc/apache/mod/mod_ssl/ssl_cover.wml
+share/doc/apache/mod/mod_ssl/ssl_cover_logo.jpg
+share/doc/apache/mod/mod_ssl/ssl_cover_title.jpg
+share/doc/apache/mod/mod_ssl/ssl_faq.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_faq.html
+share/doc/apache/mod/mod_ssl/ssl_faq.wml
+share/doc/apache/mod/mod_ssl/ssl_glossary.html
+share/doc/apache/mod/mod_ssl/ssl_glossary.wml
+share/doc/apache/mod/mod_ssl/ssl_howto.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_howto.html
+share/doc/apache/mod/mod_ssl/ssl_howto.wml
+share/doc/apache/mod/mod_ssl/ssl_intro.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_intro.html
+share/doc/apache/mod/mod_ssl/ssl_intro.wml
+share/doc/apache/mod/mod_ssl/ssl_intro_fig1.gif
+share/doc/apache/mod/mod_ssl/ssl_intro_fig2.gif
+share/doc/apache/mod/mod_ssl/ssl_intro_fig3.gif
+share/doc/apache/mod/mod_ssl/ssl_overview.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_overview.html
+share/doc/apache/mod/mod_ssl/ssl_overview.wml
+share/doc/apache/mod/mod_ssl/ssl_overview_fig1.gif
+share/doc/apache/mod/mod_ssl/ssl_reference.gfont000.gif
+share/doc/apache/mod/mod_ssl/ssl_reference.html
+share/doc/apache/mod/mod_ssl/ssl_reference.wml
+share/doc/apache/mod/mod_ssl/ssl_template.head-chapter.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-1.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-2.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-3.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-4.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-5.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-6.gif
+share/doc/apache/mod/mod_ssl/ssl_template.head-num-7.gif
+share/doc/apache/mod/mod_ssl/ssl_template.imgdot-1x1-000000.gif
+share/doc/apache/mod/mod_ssl/ssl_template.imgdot-1x1-transp.gif
+share/doc/apache/mod/mod_ssl/ssl_template.inc
+share/doc/apache/mod/mod_ssl/ssl_template.navbut-next-n.gif
+share/doc/apache/mod/mod_ssl/ssl_template.navbut-next-s.gif
+share/doc/apache/mod/mod_ssl/ssl_template.navbut-prev-n.gif
+share/doc/apache/mod/mod_ssl/ssl_template.navbut-prev-s.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-abstract.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-compat.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-faq.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-gloss.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-howto.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-intro.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-over.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-preface.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-ref.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-toc.gif
+share/doc/apache/mod/mod_ssl/ssl_template.title-tutor.gif
+share/doc/apache/mod/mod_status.html
+share/doc/apache/mod/mod_unique_id.html
+share/doc/apache/mod/mod_userdir.html
+share/doc/apache/mod/mod_usertrack.html
+share/doc/apache/mod/mod_vhost_alias.html
+share/doc/apache/mod/module-dict.html.en
+share/doc/apache/mod/module-dict.html.ja.jis
+share/doc/apache/mpeix.html
+share/doc/apache/multilogs.html
+share/doc/apache/netware.html
+share/doc/apache/new_features_1_0.html
+share/doc/apache/new_features_1_1.html
+share/doc/apache/new_features_1_2.html
+share/doc/apache/new_features_1_3.html.en
+share/doc/apache/new_features_1_3.html.ja.jis
+share/doc/apache/new_features_2_0.html
+share/doc/apache/process-model.html
+share/doc/apache/programs/ab.html
+share/doc/apache/programs/apachectl.html
+share/doc/apache/programs/apxs.html
+share/doc/apache/programs/dbmmanage.html
+share/doc/apache/programs/footer.html
+share/doc/apache/programs/header.html
+share/doc/apache/programs/htdigest.html
+share/doc/apache/programs/htpasswd.html
+share/doc/apache/programs/httpd.html
+share/doc/apache/programs/index.html.en
+share/doc/apache/programs/index.html.html
+share/doc/apache/programs/index.html.ja.jis
+share/doc/apache/programs/logresolve.html
+share/doc/apache/programs/other.html
+share/doc/apache/programs/rotatelogs.html
+share/doc/apache/programs/suexec.html
+share/doc/apache/readme-tpf.html
+share/doc/apache/search/manual-index.cgi
+share/doc/apache/server-wide.html.en
+share/doc/apache/server-wide.html.ja.jis
+share/doc/apache/sections.html
+share/doc/apache/sourcereorg.html
+share/doc/apache/stopping.html.en
+share/doc/apache/stopping.html.fr
+share/doc/apache/stopping.html.html
+share/doc/apache/suexec.html.en
+share/doc/apache/suexec.html.html
+share/doc/apache/suexec.html.ja.jis
+share/doc/apache/suexec_1_2.html
+share/doc/apache/unixware.html
+share/doc/apache/upgrading_to_1_3.html
+share/doc/apache/vhosts/details.html
+share/doc/apache/vhosts/details_1_2.html
+share/doc/apache/vhosts/examples.html
+share/doc/apache/vhosts/fd-limits.html
+share/doc/apache/vhosts/footer.html
+share/doc/apache/vhosts/header.html
+share/doc/apache/vhosts/host.html
+share/doc/apache/vhosts/index.html.en
+share/doc/apache/vhosts/index.html.ja.jis
+share/doc/apache/vhosts/ip-based.html
+share/doc/apache/vhosts/mass.html
+share/doc/apache/vhosts/name-based.html.en
+share/doc/apache/vhosts/name-based.html.html
+share/doc/apache/vhosts/name-based.html.ja.jis
+share/doc/apache/vhosts/vhosts-in-depth.html
+share/doc/apache/vhosts/virtual-host.html
+share/doc/apache/win_compiling.html
+share/doc/apache/win_service.html.en
+share/doc/apache/win_service.html.html
+share/doc/apache/win_service.html.ja.jis
+share/doc/apache/windows.html
+share/doc/apache/mod/directive-dict.html.html
+share/doc/apache/mod/mod_negotiation.html.html
+share/doc/apache/mod/module-dict.html.html
+share/doc/apache/configuring.html.html
+share/doc/apache/custom-error.html.fr
+share/doc/apache/custom-error.html.html
+share/doc/apache/handler.html.html
+share/doc/apache/index.html.fr
+share/doc/apache/index.html.html
+share/doc/apache/install.html.fr
+share/doc/apache/install.html.html
+share/doc/apache/invoking.html.fr
+share/doc/apache/new_features_1_3.html.html
+share/doc/apache/server-wide.html.fr
+share/doc/apache/server-wide.html.html
+share/doc/apache/howto/cgi.html.html
+share/doc/apache/howto/ssi.html.en
+share/doc/apache/howto/ssi.html.html
+share/doc/apache/howto/ssi.html.ja.jis
+share/doc/apache/urlmapping.html
+share/doc/apache/vhosts/index.html.html
www/cgi-bin.default/printenv
+@exec [ -d %D/www/cgi-bin/ ] || ln -fs %B %D/www/cgi-bin
www/cgi-bin.default/test-cgi
www/icons/README
www/icons/a.gif
@@ -689,16 +714,124 @@ www/icons/uu.gif
www/icons/uuencoded.gif
www/icons/world1.gif
www/icons/world2.gif
+www/icons/a.png
+www/icons/alert.black.png
+www/icons/alert.red.png
+www/icons/apache_pb.png
+www/icons/back.png
+www/icons/ball.gray.png
+www/icons/ball.red.png
+www/icons/binary.png
+www/icons/binhex.png
+www/icons/blank.png
+www/icons/bomb.png
+www/icons/box1.png
+www/icons/box2.png
+www/icons/broken.png
+www/icons/burst.png
+www/icons/c.png
+www/icons/comp.blue.png
+www/icons/comp.gray.png
+www/icons/compressed.png
+www/icons/continued.png
+www/icons/dir.png
+www/icons/down.png
+www/icons/dvi.png
+www/icons/f.png
+www/icons/folder.png
+www/icons/folder.open.png
+www/icons/folder.sec.png
+www/icons/forward.png
+www/icons/generic.png
+www/icons/generic.red.png
+www/icons/generic.sec.png
+www/icons/hand.right.png
+www/icons/hand.up.png
+www/icons/icon.sheet.png
+www/icons/image1.png
+www/icons/image2.png
+www/icons/image3.png
+www/icons/index.png
+www/icons/layout.png
+www/icons/left.png
+www/icons/link.png
+www/icons/movie.png
+www/icons/p.png
+www/icons/patch.png
+www/icons/pdf.png
+www/icons/pie0.png
+www/icons/pie1.png
+www/icons/pie2.png
+www/icons/pie3.png
+www/icons/pie4.png
+www/icons/pie5.png
+www/icons/pie6.png
+www/icons/pie7.png
+www/icons/pie8.png
+www/icons/portal.png
+www/icons/ps.png
+www/icons/quill.png
+www/icons/right.png
+www/icons/screw1.png
+www/icons/screw2.png
+www/icons/script.png
+www/icons/small/back.png
+www/icons/small/binary.png
+www/icons/small/binhex.png
+www/icons/small/blank.png
+www/icons/small/broken.png
+www/icons/small/burst.png
+www/icons/small/comp1.png
+www/icons/small/comp2.png
+www/icons/small/compressed.png
+www/icons/small/continued.png
+www/icons/small/dir.png
+www/icons/small/dir2.png
+www/icons/small/doc.png
+www/icons/small/forward.png
+www/icons/small/generic.png
+www/icons/small/generic2.png
+www/icons/small/generic3.png
+www/icons/small/image.png
+www/icons/small/image2.png
+www/icons/small/index.png
+www/icons/small/key.png
+www/icons/small/movie.png
+www/icons/small/patch.png
+www/icons/small/ps.png
+www/icons/small/rainbow.png
+www/icons/small/sound.png
+www/icons/small/sound2.png
+www/icons/small/tar.png
+www/icons/small/text.png
+www/icons/small/transfer.png
+www/icons/small/unknown.png
+www/icons/small/uu.png
+www/icons/sound1.png
+www/icons/sound2.png
+www/icons/sphere1.png
+www/icons/sphere2.png
+www/icons/tar.png
+www/icons/tex.png
+www/icons/text.png
+www/icons/transfer.png
+www/icons/unknown.png
+www/icons/up.png
+www/icons/uu.png
+www/icons/uuencoded.png
+www/icons/world1.png
+www/icons/world2.png
@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
+@unexec if [ -L %D/www/data.default/manual ]; then rm -f %D/www/data.default/manual; 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.crl
@dirrm etc/apache/ssl.csr
-@dirrm etc/apache/ssl.key
@dirrm etc/apache/ssl.prm
+@dirrm etc/apache/ssl.key
@dirrm etc/apache/tables/cyrillic
@dirrm etc/apache/tables/czech
@dirrm etc/apache/tables/russian
@@ -710,16 +843,16 @@ www/icons/world2.gif
@dirrm include/apache/xml
@dirrm include/apache
@dirrm libexec/apache
-@dirrm share/doc/apache/manual/images
-@dirrm share/doc/apache/manual/howto
-@dirrm share/doc/apache/manual/programs
-@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/vhosts
+@dirrm share/doc/apache/search
+@dirrm share/doc/apache/mod/mod_ssl
+@dirrm share/doc/apache/mod
+@dirrm share/doc/apache/misc
+@dirrm share/doc/apache/images
+@dirrm share/doc/apache/howto
+@dirrm share/doc/apache/programs
@dirrm share/doc/apache
+@dirrm www/data.default
@dirrm www/cgi-bin.default
@dirrm www/icons/small
@dirrm www/icons