From owner-freebsd-ports Fri Jul 7 3:50:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA44337BABF for ; Fri, 7 Jul 2000 03:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA46779; Fri, 7 Jul 2000 03:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id BB3D437B6DC for ; Fri, 7 Jul 2000 03:45:55 -0700 (PDT) (envelope-from dima@chg.ru) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id OAA32248; Fri, 7 Jul 2000 14:45:53 +0400 (MSD) (envelope-from dima) Message-Id: <200007071045.OAA32248@chg.ru> Date: Fri, 7 Jul 2000 14:45:53 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/19752: New port: russian/apache13-modssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19752 >Category: ports >Synopsis: New port: russian/apache13-modssl >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 07 03:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: Unfortunatelly, neither Russian nor modssl module for apache can be separately compiled. Please add the port of Russian Apache with modssl support. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./files # ./files/md5 # ./files/FreeBSD.layout # ./files/rc.apache.sh # ./patches # ./patches/patch-ab # ./patches/patch-aa # ./patches/patch-ac # ./patches/patch-ag # ./patches/patch-ak # ./patches/patch-al # ./patches/patch-ah # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (apache_1.3.12rusPL29.4.tar.gz) = 6faff4c99520c65954e1530a15eacd25 XMD5 (mod_ssl-2.6.5-1.3.12.tar.gz) = 1b7e28c23e0235540df0549b243fac19 END-of-./files/md5 echo x - ./files/FreeBSD.layout sed 's/^X//' >./files/FreeBSD.layout << 'END-of-./files/FreeBSD.layout' X# FreeBSD layout... X X prefix: /usr/local X exec_prefix: $prefix X bindir: $exec_prefix/bin X sbindir: $exec_prefix/sbin X libexecdir: $exec_prefix/libexec/apache X mandir: $prefix/man X sysconfdir: $prefix/etc/apache X datadir: $prefix/www X iconsdir: $datadir/icons X htdocsdir: $datadir/data X cgidir: $datadir/cgi-bin X includedir: $prefix/include/apache X localstatedir: /var X runtimedir: $localstatedir/run X logfiledir: $localstatedir/log X proxycachedir: $datadir/proxy X END-of-./files/FreeBSD.layout echo x - ./files/rc.apache.sh sed 's/^X//' >./files/rc.apache.sh << 'END-of-./files/rc.apache.sh' X#!/bin/sh X Xcase $1 in Xstart) X !!PREFIX!!/sbin/apachectl start X echo -n ' apache' X ;; X Xstop) X !!PREFIX!!/sbin/apachectl stop X ;; X X*) X echo "usage: `basename $0` {start|stop}" >&2 X exit 64 X ;; Xesac END-of-./files/rc.apache.sh echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-ab sed 's/^X//' >./patches/patch-ab << 'END-of-./patches/patch-ab' X--- Makefile.tmpl.orig Thu Jul 6 19:42:40 2000 X+++ Makefile.tmpl Thu Jul 6 19:43:12 2000 X@@ -123,6 +123,7 @@ X runtimedir = @runtimedir@ X logfiledir = @logfiledir@ X proxycachedir = @proxycachedir@ X+doc_prefix = $(prefix)/share/doc/apache X X libexecdir_relative = @libexecdir_relative@ X X@@ -325,9 +326,9 @@ X $(MKDIR) $(root)$(sysconfdir)/ssl.csr X $(MKDIR) $(root)$(sysconfdir)/ssl.key X $(MKDIR) $(root)$(sysconfdir)/ssl.prm X- $(MKDIR) $(root)$(htdocsdir) X+ $(MKDIR) $(root)$(doc_prefix) X $(MKDIR) $(root)$(iconsdir) X- $(MKDIR) $(root)$(cgidir) X+ $(MKDIR) $(root)$(cgidir).default X $(MKDIR) $(root)$(includedir) X $(MKDIR) $(root)$(includedir)/xml X $(MKDIR) $(root)$(sysconfdir)/tables X@@ -527,25 +528,33 @@ X # icons and distributed CGI scripts. X install-data: X @echo "===> [data: Installing initial data files]" X- -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ X- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ X- else \ X- echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)/"; \ X+# -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ X+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ X+# else \ X+ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(doc_prefix)/"; \ X (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\ X- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \ X- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \ X- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \ X- fi X- -@if [ -f $(root)$(cgidir)/printenv ]; then \ X- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ X- else \ X+ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \ X+ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \ X+ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ X+# fi X+ if [ ! -d $(root)$(htdocsdir) ]; then \ X+ $(LN) -sf $(root)$(doc_prefix) $(root)$(htdocsdir); \ X+ fi X+ $(RM) $(root)$(htdocsdir).default X+ $(LN) -s $(root)$(doc_prefix) $(root)$(htdocsdir).default X+# -@if [ -f $(root)$(cgidir)/printenv ]; then \ X+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ X+# else \ X for script in printenv test-cgi; do \ X cat $(TOP)/cgi-bin/$${script} |\ X sed -e 's;^#!/.*perl;#!$(PERL);' \ X > $(TOP)/$(SRC)/.apaci.install.tmp; \ X- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \ X- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \ X+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \ X+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \ X done; \ X+# fi X+ if [ ! -d $(root)$(cgidir) ]; then \ X+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \ X fi X @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ X (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ X@@ -595,10 +604,10 @@ X -e 's;logs/accept\.lock;$(runtimedir)/$(TARGET).lock;' \ X -e 's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \ X -e 's;logs/httpd\.pid;$(runtimedir)/$(TARGET).pid;' \ X- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \ X- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \ X- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \ X- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \ X+ -e "s;logs/access_log;$(logfiledir)/$${target_prefix}httpd-access.log;" \ X+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}httpd-error.log;" \ X+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}httpd-referer.log;" \ X+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}httpd-agent.log;" \ X -e 's;conf/tables/;$(sysconfdir)/tables/;' \ X -e 's;conf/magic;$(sysconfdir)/magic;' \ X -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ END-of-./patches/patch-ab echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X--- configure.orig Tue Jan 18 01:53:17 2000 X+++ configure Mon Jan 24 19:37:21 2000 X@@ -1232,8 +1232,8 @@ X echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid" X echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard" X echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock" X- echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log" X- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log" X+ echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.log" X+ echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log" X echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types" X echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf" X echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf" X@@ -1330,8 +1330,8 @@ X echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci X echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci X echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci X-echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci X-echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci X+echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.log\"'" >>$src/apaci X+echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci X echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci X echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci X echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci END-of-./patches/patch-aa echo x - ./patches/patch-ac sed 's/^X//' >./patches/patch-ac << 'END-of-./patches/patch-ac' X--- src/Configure.bak Sun Feb 6 04:27:19 2000 X+++ src/Configure Sun Mar 19 21:51:00 2000 X@@ -1043,7 +1043,7 @@ X LDFLAGS_SHLIB_EXPORT="" X SHLIB_SUFFIX_DEPTH=2 X ;; X- *-freebsd3*|*-freebsd4*) X+ *-freebsd[3-9]*) X LD_SHLIB="gcc" X CFLAGS_SHLIB="-fpic" X LDFLAGS_SHLIB="-shared" END-of-./patches/patch-ac echo x - ./patches/patch-ag sed 's/^X//' >./patches/patch-ag << 'END-of-./patches/patch-ag' X--- conf/httpd.conf-dist.orig Mon Feb 21 08:30:46 2000 X+++ conf/httpd.conf-dist Mon May 29 16:48:49 2000 X@@ -354,7 +354,22 @@ X # directory index. Separate multiple entries with spaces. X # X X- DirectoryIndex index.html X+ X+ X+ DirectoryIndex index.php index.php3 index.html X+ X+ X+ DirectoryIndex index.php3 index.html X+ X+ X+ X+ X+ DirectoryIndex index.php index.html X+ X+ X+ DirectoryIndex index.html X+ X+ X X X # X@@ -473,7 +488,7 @@ X # define per- access logfiles, transactions will be X # logged therein and *not* in this file. X # X-CustomLog logs/access_log common X+#CustomLog logs/access_log common X X # X # If you would like to have agent and referer logfiles, uncomment the X@@ -486,7 +501,7 @@ X # If you prefer a single logfile with access, agent, and referer information X # (Combined Logfile Format) you can use the following directive. X # X-#CustomLog logs/access_log combined X+CustomLog logs/access_log combined X X # X # Optionally add a line containing the server version and virtual host X@@ -708,13 +723,17 @@ X # For example, the PHP 3.x module (not part of the Apache distribution - see X # http://www.php.net) will typically use: X # X- #AddType application/x-httpd-php3 .php3 X- #AddType application/x-httpd-php3-source .phps X+ X+ AddType application/x-httpd-php3 .php3 X+ AddType application/x-httpd-php3-source .php3s X+ X # X # And for PHP 4.x, use: X # X- #AddType application/x-httpd-php .php X- #AddType application/x-httpd-php-source .phps X+ X+ AddType application/x-httpd-php .php X+ AddType application/x-httpd-php-source .phps X+ X X AddType application/x-tar .tgz X END-of-./patches/patch-ag echo x - ./patches/patch-ak sed 's/^X//' >./patches/patch-ak << 'END-of-./patches/patch-ak' X--- src/support/apachectl.orig Wed Apr 7 00:36:33 1999 X+++ src/support/apachectl Fri Sep 3 15:41:01 1999 X@@ -39,6 +39,8 @@ X # -------------------- -------------------- X # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| X X+eval `limits -e -C daemon` >/dev/null 2>&1 X+ X ERROR=0 X ARGV="$@" X if [ "x$ARGV" = "x" ] ; then X@@ -82,6 +84,7 @@ X fi X if kill $PID ; then X echo "$0 $ARG: httpd stopped" X+ rm $PIDFILE X else X echo "$0 $ARG: httpd could not be stopped" X ERROR=4 END-of-./patches/patch-ak echo x - ./patches/patch-al sed 's/^X//' >./patches/patch-al << 'END-of-./patches/patch-al' X--- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999 X+++ src/support/log_server_status Fri Sep 3 15:53:16 1999 X@@ -67,10 +67,10 @@ X # X require 'sys/socket.ph'; X X-$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" X+$wherelog = "/var/log/httpd-status-"; X $server = "localhost"; # Name of server, could be "www.foo.com" X $port = "80"; # Port on server X-$request = "/status/?auto"; # Request to send X+$request = "/server-status/?auto"; # Request to send X X sub tcp_connect X { X@@ -100,7 +100,7 @@ X chomp($date); X ($day,$time)=split(/:/,$date); X $res=&tcp_connect($server,$port); X- open(OUT,">>$wherelog$day"); X+ open(OUT,">>$wherelog$day.log"); X if ($res) { X print OUT "$time:-1:-1:-1:-1:$res\n"; X exit 1; END-of-./patches/patch-al echo x - ./patches/patch-ah sed 's/^X//' >./patches/patch-ah << 'END-of-./patches/patch-ah' X--- src/modules/ssl/Makefile.tmpl.orig Thu Dec 30 15:58:07 1999 X+++ src/modules/ssl/Makefile.tmpl Wed Feb 9 11:43:49 2000 X@@ -122,6 +122,11 @@ X ## END-USER AREA X ## X X+# This requires special handling to get the correct versions of include files: X+# ../../include/fnmatch.h instead of /usr/include/fnmatch.h X+# /usr/include/opssl/*.h instead of /usr/local/include/openssl.h X+MY_CFLAGS= $(INCLUDES0) $(SSL_CFLAGS) $(INCLUDES1) $(EXTRA_INCLUDES) $(CFLAGS) X+ X all: lib X X lib: $(LIB) X@@ -138,10 +143,10 @@ X .SUFFIXES: .o .lo X X .c.o: X- $(CC) -c $(INCLUDES) $(CFLAGS) $(SSL_CFLAGS) $(SSL_VERSION) $< X+ $(CC) -c $(MY_CFLAGS) $(SSL_VERSION) $< X X .c.lo: X- $(CC) -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $(SSL_CFLAGS) $(SSL_VERSION) $< && mv $*.o $*.lo X+ $(CC) -c $(MY_CFLAGS) $(CFLAGS_SHLIB) $(SSL_VERSION) $< && mv $*.o $*.lo X X clean: X rm -f $(OBJS) $(OBJS_PIC) X@@ -186,7 +191,7 @@ X depend: X cp Makefile.tmpl Makefile.tmpl.bak \ X && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.tmpl > Makefile.new \ X- && gcc -MM $(INCLUDES) $(CFLAGS) $(SSL_CFLAGS) *.c >> Makefile.new \ X+ && gcc -MM $(MY_CFLAGS) *.c >> Makefile.new \ X && sed -e '1,$$s; $(INCDIR)/; $$(INCDIR)/;g' \ X -e '1,$$s; $(OSDIR)/; $$(OSDIR)/;g' \ X -e '1,$$s;^\([a-z0-9_]*\)\.o:;\1.o \1.lo:;g' Makefile.new \ END-of-./patches/patch-ah echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XThe Russian Apache webserver with SSL/TLS functionality END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XRussian Apache is an apache web-server designed to work on Russian Xmarket. This port contains Russian Apache with modssl support. X XWWW: http://apache.lexa.ru/ X http://www.apache.org/ X http://www.modssl.org/ END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/dbmmanage Xbin/htdigest Xbin/htpasswd X@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf.default; then rm -f %D/etc/apache/access.conf; fi Xetc/apache/access.conf.default X@exec [ ! -f %B/access.conf ] && cp %B/%f %B/access.conf X@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf.default; then rm -f %D/etc/apache/httpd.conf; fi Xetc/apache/httpd.conf.default X@exec [ ! -f %B/httpd.conf ] && cp %B/%f %B/httpd.conf X@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic.default; then rm -f %D/etc/apache/magic; fi Xetc/apache/magic.default X@exec [ ! -f %B/magic ] && cp %B/%f %B/magic X@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types.default; then rm -f %D/etc/apache/mime.types; fi Xetc/apache/mime.types.default X@exec [ ! -f %B/mime.types ] && cp %B/%f %B/mime.types X@unexec if cmp -s %D/etc/apache/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi Xetc/apache/srm.conf.default X@exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf Xetc/apache/ssl.crt/README.CRT Xetc/apache/ssl.crt/Makefile Xetc/apache/ssl.crt/ca-bundle.crt Xetc/apache/ssl.crt/snakeoil-ca-rsa.crt Xetc/apache/ssl.crt/snakeoil-ca-dsa.crt Xetc/apache/ssl.crt/snakeoil-rsa.crt Xetc/apache/ssl.crt/snakeoil-dsa.crt Xetc/apache/ssl.crt/server.crt Xetc/apache/ssl.crl/README.CRL Xetc/apache/ssl.crl/Makefile Xetc/apache/ssl.csr/README.CSR Xetc/apache/ssl.csr/server.csr Xetc/apache/ssl.prm/README.PRM Xetc/apache/ssl.prm/snakeoil-ca-dsa.prm Xetc/apache/ssl.prm/snakeoil-dsa.prm Xetc/apache/ssl.key/README.KEY Xetc/apache/ssl.key/snakeoil-ca-rsa.key Xetc/apache/ssl.key/snakeoil-ca-dsa.key Xetc/apache/ssl.key/snakeoil-rsa.key Xetc/apache/ssl.key/snakeoil-dsa.key Xetc/apache/ssl.key/server.key Xetc/apache/tables/russian/alt-alt.tab Xetc/apache/tables/russian/alt-iso.tab Xetc/apache/tables/russian/alt-koi.tab Xetc/apache/tables/russian/alt-mac.tab Xetc/apache/tables/russian/alt-win.tab Xetc/apache/tables/russian/iso-alt.tab Xetc/apache/tables/russian/iso-iso.tab Xetc/apache/tables/russian/iso-koi.tab Xetc/apache/tables/russian/iso-mac.tab Xetc/apache/tables/russian/iso-win.tab Xetc/apache/tables/russian/koi-alt.tab Xetc/apache/tables/russian/koi-iso.tab Xetc/apache/tables/russian/koi-koi.tab Xetc/apache/tables/russian/koi-mac.tab Xetc/apache/tables/russian/koi-tran.tab Xetc/apache/tables/russian/koi-win.tab Xetc/apache/tables/russian/koi-utf8.tab Xetc/apache/tables/russian/mac-alt.tab Xetc/apache/tables/russian/mac-iso.tab Xetc/apache/tables/russian/mac-koi.tab Xetc/apache/tables/russian/mac-mac.tab Xetc/apache/tables/russian/mac-win.tab Xetc/apache/tables/russian/win-alt.tab Xetc/apache/tables/russian/win-iso.tab Xetc/apache/tables/russian/win-koi.tab Xetc/apache/tables/russian/win-mac.tab Xetc/apache/tables/russian/win-tran.tab Xetc/apache/tables/russian/win-win.tab Xetc/apache/tables/russian2/alt-mac.tab Xetc/apache/tables/russian2/koi-mac.tab Xetc/apache/tables/russian2/iso-alt.tab Xetc/apache/tables/russian2/koi-win.tab Xetc/apache/tables/russian2/iso-mac.tab Xetc/apache/tables/russian2/win-alt.tab Xetc/apache/tables/russian2/koi-alt.tab Xetc/apache/tables/russian2/win-iso.tab Xetc/apache/tables/russian2/koi-iso.tab Xetc/apache/tables/russian2/win-mac.tab Xetc/apache/tables/czech/cp1250-8859-1.tab Xetc/apache/tables/czech/cp1250-8859-2.tab Xetc/apache/tables/czech/cp1250-cmac.tab Xetc/apache/tables/czech/cp1250-cp1250.tab Xetc/apache/tables/czech/cp1250-cp437.tab Xetc/apache/tables/czech/cp1250-cp895.tab Xetc/apache/tables/czech/cp1250-koi8cs.tab Xetc/apache/tables/czech/cp1250-latin2.tab Xetc/apache/tables/ukrainian/alt-koi.tab Xetc/apache/tables/ukrainian/alt-mac.tab Xetc/apache/tables/ukrainian/alt-win.tab Xetc/apache/tables/ukrainian/koi-alt.tab Xetc/apache/tables/ukrainian/koi-mac.tab Xetc/apache/tables/ukrainian/koi-win.tab Xetc/apache/tables/ukrainian/mac-alt.tab Xetc/apache/tables/ukrainian/mac-koi.tab Xetc/apache/tables/ukrainian/mac-win.tab Xetc/apache/tables/ukrainian/win-alt.tab Xetc/apache/tables/ukrainian/win-koi.tab Xetc/apache/tables/ukrainian/win-mac.tab Xetc/apache/tables/ukrainian2/alt-koi8u.tab Xetc/apache/tables/ukrainian2/alt-ruscii.tab Xetc/apache/tables/ukrainian2/alt-trans.tab Xetc/apache/tables/ukrainian2/alt-win.tab Xetc/apache/tables/ukrainian2/koi-koi8u.tab Xetc/apache/tables/ukrainian2/koi8u-alt.tab Xetc/apache/tables/ukrainian2/koi8u-iso.tab Xetc/apache/tables/ukrainian2/koi8u-koi.tab Xetc/apache/tables/ukrainian2/koi8u-mac.tab Xetc/apache/tables/ukrainian2/koi8u-ruscii.tab Xetc/apache/tables/ukrainian2/koi8u-trans.tab Xetc/apache/tables/ukrainian2/koi8u-win.tab Xetc/apache/tables/ukrainian2/ruscii-alt.tab Xetc/apache/tables/ukrainian2/ruscii-iso.tab Xetc/apache/tables/ukrainian2/ruscii-koi.tab Xetc/apache/tables/ukrainian2/ruscii-koi8u.tab Xetc/apache/tables/ukrainian2/ruscii-mac.tab Xetc/apache/tables/ukrainian2/ruscii-trans.tab Xetc/apache/tables/ukrainian2/ruscii-win.tab Xetc/apache/tables/ukrainian2/win-alt.tab Xetc/apache/tables/ukrainian2/win-iso.tab Xetc/apache/tables/ukrainian2/win-koi.tab Xetc/apache/tables/ukrainian2/win-koi8u.tab Xetc/apache/tables/ukrainian2/win-mac.tab Xetc/apache/tables/ukrainian2/win-ruscii.tab Xetc/apache/tables/ukrainian2/win-trans.tab Xetc/rc.d/apache.sh Xinclude/apache/alloc.h Xinclude/apache/ap.h Xinclude/apache/ap_compat.h Xinclude/apache/ap_config.h Xinclude/apache/ap_config_auto.h Xinclude/apache/ap_ctype.h Xinclude/apache/ap_ctx.h Xinclude/apache/ap_hook.h Xinclude/apache/ap_md5.h Xinclude/apache/ap_mm.h Xinclude/apache/ap_mmn.h Xinclude/apache/ap_sha1.h Xinclude/apache/buff.h Xinclude/apache/compat.h Xinclude/apache/conf.h Xinclude/apache/explain.h Xinclude/apache/fnmatch.h Xinclude/apache/hsregex.h Xinclude/apache/http_conf_globals.h Xinclude/apache/http_config.h Xinclude/apache/http_core.h Xinclude/apache/http_log.h Xinclude/apache/http_main.h Xinclude/apache/http_protocol.h Xinclude/apache/http_request.h Xinclude/apache/http_vhost.h Xinclude/apache/httpd.h Xinclude/apache/multithread.h Xinclude/apache/os-inline.c Xinclude/apache/os.h Xinclude/apache/rfc1413.h Xinclude/apache/scoreboard.h Xinclude/apache/util_date.h Xinclude/apache/util_md5.h Xinclude/apache/util_script.h Xinclude/apache/util_uri.h Xinclude/apache/xml/asciitab.h Xinclude/apache/xml/hashtable.h Xinclude/apache/xml/iasciitab.h Xinclude/apache/xml/latin1tab.h Xinclude/apache/xml/nametab.h Xinclude/apache/xml/utf8tab.h Xinclude/apache/xml/xmldef.h Xinclude/apache/xml/xmlparse.h Xinclude/apache/xml/xmlrole.h Xinclude/apache/xml/xmltok.h Xinclude/apache/xml/xmltok_impl.h Xlibexec/apache/httpd.exp Xlibexec/apache/libproxy.so Xlibexec/apache/libssl.so Xlibexec/apache/mod_access.so Xlibexec/apache/mod_actions.so Xlibexec/apache/mod_alias.so Xlibexec/apache/mod_asis.so Xlibexec/apache/mod_auth.so Xlibexec/apache/mod_autoindex.so Xlibexec/apache/mod_auth_anon.so Xlibexec/apache/mod_auth_db.so Xlibexec/apache/mod_cern_meta.so Xlibexec/apache/mod_cgi.so Xlibexec/apache/mod_define.so Xlibexec/apache/mod_digest.so Xlibexec/apache/mod_dir.so Xlibexec/apache/mod_env.so Xlibexec/apache/mod_expires.so Xlibexec/apache/mod_headers.so Xlibexec/apache/mod_imap.so Xlibexec/apache/mod_include.so Xlibexec/apache/mod_info.so Xlibexec/apache/mod_log_config.so Xlibexec/apache/mod_mime.so Xlibexec/apache/mod_mime_magic.so Xlibexec/apache/mod_negotiation.so Xlibexec/apache/mod_rewrite.so Xlibexec/apache/mod_setenvif.so Xlibexec/apache/mod_speling.so Xlibexec/apache/mod_status.so Xlibexec/apache/mod_unique_id.so Xlibexec/apache/mod_userdir.so Xlibexec/apache/mod_usertrack.so Xlibexec/apache/mod_vhost_alias.so Xsbin/ab Xsbin/apachectl Xsbin/apxs Xsbin/httpd Xsbin/logresolve Xsbin/rotatelogs X%%SUEXEC%% Xshare/doc/apache/apache_pb.gif Xshare/doc/apache/ra-powered.gif X@exec mkdir -p %D/www X@exec ln -fs %B %D/www/data.default X@unexec rm -f %D/www/data.default X@exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data X@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin Xshare/doc/apache/index.html.ca Xshare/doc/apache/index.html.cz Xshare/doc/apache/index.html.de Xshare/doc/apache/index.html.dk Xshare/doc/apache/index.html.ee Xshare/doc/apache/index.html.en Xshare/doc/apache/index.html.es Xshare/doc/apache/index.html.fr Xshare/doc/apache/index.html.it Xshare/doc/apache/index.html.ja.jis Xshare/doc/apache/index.html.lu Xshare/doc/apache/index.html.nl Xshare/doc/apache/index.html.po.iso-pl Xshare/doc/apache/index.html.pt Xshare/doc/apache/index.html.pt-br Xshare/doc/apache/index.html.ru Xshare/doc/apache/index.html.se Xshare/doc/apache/manual/LICENSE Xshare/doc/apache/manual/bind.html Xshare/doc/apache/manual/cgi_path.html Xshare/doc/apache/manual/content-negotiation.html Xshare/doc/apache/manual/custom-error.html Xshare/doc/apache/manual/dns-caveats.html Xshare/doc/apache/manual/dso.html Xshare/doc/apache/manual/ebcdic.html Xshare/doc/apache/manual/env.html Xshare/doc/apache/manual/footer.html Xshare/doc/apache/manual/handler.html Xshare/doc/apache/manual/header.html Xshare/doc/apache/manual/images/apache_pb.gif Xshare/doc/apache/manual/images/custom_errordocs.gif Xshare/doc/apache/manual/images/feather.jpg Xshare/doc/apache/manual/images/home.gif Xshare/doc/apache/manual/images/index.gif Xshare/doc/apache/manual/images/mod_rewrite_fig1.fig Xshare/doc/apache/manual/images/mod_rewrite_fig1.gif Xshare/doc/apache/manual/images/mod_rewrite_fig2.fig Xshare/doc/apache/manual/images/mod_rewrite_fig2.gif Xshare/doc/apache/manual/images/mod_ssl_sb.gif Xshare/doc/apache/manual/images/openssl_ics.gif Xshare/doc/apache/manual/images/sub.gif Xshare/doc/apache/manual/index.html Xshare/doc/apache/manual/install-tpf.html Xshare/doc/apache/manual/install.html Xshare/doc/apache/manual/invoking.html Xshare/doc/apache/manual/keepalive.html Xshare/doc/apache/manual/location.html Xshare/doc/apache/manual/man-template.html Xshare/doc/apache/manual/misc/API.html Xshare/doc/apache/manual/misc/FAQ.html Xshare/doc/apache/manual/misc/HTTP_Features.tsv Xshare/doc/apache/manual/misc/client_block_api.html Xshare/doc/apache/manual/misc/compat_notes.html Xshare/doc/apache/manual/misc/custom_errordocs.html Xshare/doc/apache/manual/misc/descriptors.html Xshare/doc/apache/manual/misc/fin_wait_2.html Xshare/doc/apache/manual/misc/footer.html Xshare/doc/apache/manual/misc/header.html Xshare/doc/apache/manual/misc/howto.html Xshare/doc/apache/manual/misc/index.html Xshare/doc/apache/manual/misc/known_client_problems.html Xshare/doc/apache/manual/misc/nopgp.html Xshare/doc/apache/manual/misc/perf-bsd44.html Xshare/doc/apache/manual/misc/perf-dec.html Xshare/doc/apache/manual/misc/perf-hp.html Xshare/doc/apache/manual/misc/perf-tuning.html Xshare/doc/apache/manual/misc/perf.html Xshare/doc/apache/manual/misc/rewriteguide.html Xshare/doc/apache/manual/misc/security_tips.html Xshare/doc/apache/manual/misc/vif-info.html Xshare/doc/apache/manual/misc/windoz_keepalive.html Xshare/doc/apache/manual/mod/core.html Xshare/doc/apache/manual/mod/directive-dict.html Xshare/doc/apache/manual/mod/directives.html Xshare/doc/apache/manual/mod/footer.html Xshare/doc/apache/manual/mod/header.html Xshare/doc/apache/manual/mod/index.html Xshare/doc/apache/manual/mod/mod_access.html Xshare/doc/apache/manual/mod/mod_actions.html Xshare/doc/apache/manual/mod/mod_alias.html Xshare/doc/apache/manual/mod/mod_asis.html Xshare/doc/apache/manual/mod/mod_auth.html Xshare/doc/apache/manual/mod/mod_auth_anon.html Xshare/doc/apache/manual/mod/mod_auth_db.html Xshare/doc/apache/manual/mod/mod_auth_dbm.html Xshare/doc/apache/manual/mod/mod_auth_digest.html Xshare/doc/apache/manual/mod/mod_autoindex.html Xshare/doc/apache/manual/mod/mod_browser.html Xshare/doc/apache/manual/mod/mod_cern_meta.html Xshare/doc/apache/manual/mod/mod_cgi.html Xshare/doc/apache/manual/mod/mod_cookies.html Xshare/doc/apache/manual/mod/mod_define.html Xshare/doc/apache/manual/mod/mod_digest.html Xshare/doc/apache/manual/mod/mod_dir.html Xshare/doc/apache/manual/mod/mod_dld.html Xshare/doc/apache/manual/mod/mod_dll.html Xshare/doc/apache/manual/mod/mod_env.html Xshare/doc/apache/manual/mod/mod_example.html Xshare/doc/apache/manual/mod/mod_expires.html Xshare/doc/apache/manual/mod/mod_headers.html Xshare/doc/apache/manual/mod/mod_imap.html Xshare/doc/apache/manual/mod/mod_include.html Xshare/doc/apache/manual/mod/mod_info.html Xshare/doc/apache/manual/mod/mod_isapi.html Xshare/doc/apache/manual/mod/mod_log_agent.html Xshare/doc/apache/manual/mod/mod_log_common.html Xshare/doc/apache/manual/mod/mod_log_config.html Xshare/doc/apache/manual/mod/mod_log_referer.html Xshare/doc/apache/manual/mod/mod_mime.html Xshare/doc/apache/manual/mod/mod_mime_magic.html Xshare/doc/apache/manual/mod/mod_mmap_static.html Xshare/doc/apache/manual/mod/mod_negotiation.html Xshare/doc/apache/manual/mod/mod_proxy.html Xshare/doc/apache/manual/mod/mod_rewrite.html Xshare/doc/apache/manual/mod/mod_setenvif.html Xshare/doc/apache/manual/mod/mod_so.html Xshare/doc/apache/manual/mod/mod_speling.html Xshare/doc/apache/manual/mod/mod_ssl/index.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_compat.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_compat.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_compat.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_cover.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_cover_logo.jpg Xshare/doc/apache/manual/mod/mod_ssl/ssl_cover_title.jpg Xshare/doc/apache/manual/mod/mod_ssl/ssl_faq.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_faq.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_faq.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_glossary.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_glossary.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_howto.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_howto.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_howto.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro_fig1.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro_fig2.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_intro_fig3.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_overview.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_overview.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_overview.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_overview_fig1.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_reference.gfont000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_reference.html Xshare/doc/apache/manual/mod/mod_ssl/ssl_reference.wml Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-chapter.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-1.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-2.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-3.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-4.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.inc Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-5.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-6.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-7.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-000000.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-transp.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-n.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-s.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-prev-n.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-prev-s.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-abstract.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-compat.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-faq.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-gloss.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-howto.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-intro.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-over.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-preface.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-ref.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-toc.gif Xshare/doc/apache/manual/mod/mod_ssl/ssl_template.title-tutor.gif Xshare/doc/apache/manual/mod/mod_status.html Xshare/doc/apache/manual/mod/mod_unique_id.html Xshare/doc/apache/manual/mod/mod_userdir.html Xshare/doc/apache/manual/mod/mod_usertrack.html Xshare/doc/apache/manual/mod/mod_vhost_alias.html Xshare/doc/apache/manual/multilogs.html Xshare/doc/apache/manual/netware.html Xshare/doc/apache/manual/new_features_1_0.html Xshare/doc/apache/manual/new_features_1_1.html Xshare/doc/apache/manual/new_features_1_2.html Xshare/doc/apache/manual/new_features_1_3.html Xshare/doc/apache/manual/process-model.html Xshare/doc/apache/manual/readme-tpf.html Xshare/doc/apache/manual/search/manual-index.cgi Xshare/doc/apache/manual/sections.html Xshare/doc/apache/manual/sourcereorg.html Xshare/doc/apache/manual/stopping.html Xshare/doc/apache/manual/suexec.html Xshare/doc/apache/manual/suexec_1_2.html Xshare/doc/apache/manual/unixware.html Xshare/doc/apache/manual/upgrading_to_1_3.html Xshare/doc/apache/manual/vhosts/details.html Xshare/doc/apache/manual/vhosts/details_1_2.html Xshare/doc/apache/manual/vhosts/examples.html Xshare/doc/apache/manual/vhosts/fd-limits.html Xshare/doc/apache/manual/vhosts/footer.html Xshare/doc/apache/manual/vhosts/header.html Xshare/doc/apache/manual/vhosts/host.html Xshare/doc/apache/manual/vhosts/index.html Xshare/doc/apache/manual/vhosts/ip-based.html Xshare/doc/apache/manual/vhosts/mass.html Xshare/doc/apache/manual/vhosts/name-based.html Xshare/doc/apache/manual/vhosts/vhosts-in-depth.html Xshare/doc/apache/manual/vhosts/virtual-host.html Xshare/doc/apache/manual/windows.html Xwww/cgi-bin.default/printenv Xwww/cgi-bin.default/test-cgi Xwww/icons/README Xwww/icons/a.gif Xwww/icons/alert.black.gif Xwww/icons/alert.red.gif Xwww/icons/apache_pb.gif Xwww/icons/back.gif Xwww/icons/ball.gray.gif Xwww/icons/ball.red.gif Xwww/icons/binary.gif Xwww/icons/binhex.gif Xwww/icons/blank.gif Xwww/icons/bomb.gif Xwww/icons/box1.gif Xwww/icons/box2.gif Xwww/icons/broken.gif Xwww/icons/burst.gif Xwww/icons/c.gif Xwww/icons/comp.blue.gif Xwww/icons/comp.gray.gif Xwww/icons/compressed.gif Xwww/icons/continued.gif Xwww/icons/dir.gif Xwww/icons/down.gif Xwww/icons/dvi.gif Xwww/icons/f.gif Xwww/icons/folder.gif Xwww/icons/folder.open.gif Xwww/icons/folder.sec.gif Xwww/icons/forward.gif Xwww/icons/generic.gif Xwww/icons/generic.red.gif Xwww/icons/generic.sec.gif Xwww/icons/hand.right.gif Xwww/icons/hand.up.gif Xwww/icons/icon.sheet.gif Xwww/icons/image1.gif Xwww/icons/image2.gif Xwww/icons/image3.gif Xwww/icons/index.gif Xwww/icons/layout.gif Xwww/icons/left.gif Xwww/icons/link.gif Xwww/icons/movie.gif Xwww/icons/p.gif Xwww/icons/patch.gif Xwww/icons/pdf.gif Xwww/icons/pie0.gif Xwww/icons/pie1.gif Xwww/icons/pie2.gif Xwww/icons/pie3.gif Xwww/icons/pie4.gif Xwww/icons/pie5.gif Xwww/icons/pie6.gif Xwww/icons/pie7.gif Xwww/icons/pie8.gif Xwww/icons/portal.gif Xwww/icons/ps.gif Xwww/icons/quill.gif Xwww/icons/right.gif Xwww/icons/screw1.gif Xwww/icons/screw2.gif Xwww/icons/script.gif Xwww/icons/small/README.txt Xwww/icons/small/back.gif Xwww/icons/small/binary.gif Xwww/icons/small/binhex.gif Xwww/icons/small/blank.gif Xwww/icons/small/broken.gif Xwww/icons/small/burst.gif Xwww/icons/small/comp1.gif Xwww/icons/small/comp2.gif Xwww/icons/small/compressed.gif Xwww/icons/small/continued.gif Xwww/icons/small/dir.gif Xwww/icons/small/dir2.gif Xwww/icons/small/doc.gif Xwww/icons/small/forward.gif Xwww/icons/small/generic.gif Xwww/icons/small/generic2.gif Xwww/icons/small/generic3.gif Xwww/icons/small/image.gif Xwww/icons/small/image2.gif Xwww/icons/small/index.gif Xwww/icons/small/key.gif Xwww/icons/small/movie.gif Xwww/icons/small/patch.gif Xwww/icons/small/ps.gif Xwww/icons/small/rainbow.gif Xwww/icons/small/sound.gif Xwww/icons/small/sound2.gif Xwww/icons/small/tar.gif Xwww/icons/small/text.gif Xwww/icons/small/transfer.gif Xwww/icons/small/unknown.gif Xwww/icons/small/uu.gif Xwww/icons/sound1.gif Xwww/icons/sound2.gif Xwww/icons/sphere1.gif Xwww/icons/sphere2.gif Xwww/icons/tar.gif Xwww/icons/tex.gif Xwww/icons/text.gif Xwww/icons/transfer.gif Xwww/icons/unknown.gif Xwww/icons/up.gif Xwww/icons/uu.gif Xwww/icons/uuencoded.gif Xwww/icons/world1.gif Xwww/icons/world2.gif X@exec mkdir -p %D/www/proxy X@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi X@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi X@exec cd %D/etc/apache/ssl.crt && make >/dev/null 2>&1 X@unexec rm -f %D/etc/apache/ssl.crt/[0-9a-fA-F]*.[0-9]* X@dirrm etc/apache/ssl.crl X@dirrm etc/apache/ssl.crt X@dirrm etc/apache/ssl.csr X@dirrm etc/apache/ssl.key X@dirrm etc/apache/ssl.prm X@dirrm etc/apache/tables/czech X@dirrm etc/apache/tables/russian X@dirrm etc/apache/tables/russian2 X@dirrm etc/apache/tables/ukrainian X@dirrm etc/apache/tables/ukrainian2 X@dirrm etc/apache/tables X@dirrm etc/apache X@dirrm include/apache/xml X@dirrm include/apache X@dirrm libexec/apache X@dirrm share/doc/apache/manual/images X@dirrm share/doc/apache/manual/misc X@dirrm share/doc/apache/manual/mod/mod_ssl X@dirrm share/doc/apache/manual/mod X@dirrm share/doc/apache/manual/search X@dirrm share/doc/apache/manual/vhosts X@dirrm share/doc/apache/manual X@dirrm share/doc/apache X@dirrm www/cgi-bin.default X@dirrm www/icons/small X@dirrm www/icons X@dirrm www/proxy X@dirrm www END-of-./pkg/PLIST echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: Russian Apache + mod_ssl X# Date created: 7 July 2000 1:05 MSD X# Whom: Dmitry Sivachenko X# X# $FreeBSD: $ X# X XPORTNAME= apache+mod_ssl XPORTVERSION= ${VERSION_APACHE}+${RA_VERSION}+${VERSION_MODSSL} XCATEGORIES= russian www security XMASTER_SITES= ftp://ftp.lexa.ru/pub/apache-rus/ \ X ftp://ftp.lexa.ru/pub/apache-rus/old-versions/ \ X http://www.modssl.org/source/ \ X ftp://ftp.modssl.org/source/ \ X ftp://ftp.pca.dfn.de/pub/tools/net/mod_ssl/ \ X ftp://ftp.ecrc.net/pub/security/mod_ssl/ \ X ftp://ftp.nvg.ntnu.no/pub/unix/mod_ssl/ \ X ftp://ftp.ulpgc.es/pub/mod_ssl/ \ X ftp://glock.missouri.edu/pub/mod_ssl/ \ X ftp://ftp.fu-berlin.de/unix/security/mod_ssl/ \ X ftp://ftp.ntrl.net/pub/mirror/ralfsw/mod_ssl/ XDISTNAME= apache_${VERSION_APACHE}rusPL${RA_VERSION} XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ X mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE}${EXTRACT_SUFX} X XMAINTAINER= dima@Chg.RU X XBUILD_DEPENDS= mm-config:${PORTSDIR}/devel/mm \ X ${LOCALBASE}/lib/libmm.a:${PORTSDIR}/devel/mm X XUSE_OPENSSL= RSA X X.include X XVERSION_APACHE= 1.3.12 XVERSION_MODSSL= 2.6.5 XRA_VERSION= 29.4 X XUSE_PERL5= yes XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --prefix=${PREFIX} \ X --server-gid=nogroup \ X --with-perl=${PERL} \ X --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ X --without-confadjust \ X --enable-module=ssl \ X --enable-module=most \ X --enable-module=auth_db \ X --disable-module=auth_dbm \ X --enable-shared=max X XOPTIM= -DHARD_SERVER_LIMIT=512 \ X -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ X -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" X Xpre-extract: X.if defined(WITH_SUEXEC) X @${ECHO} "Be sure to edit suexec specific arguments to configure in the Makefile." XCONFIGURE_ARGS+=--enable-suexec \ X --suexec-caller=nobody \ X --suexec-docroot=${PREFIX}/www/data \ X --suexec-logfile=/var/log/suexec.log \ X --suexec-uidmin=50000 \ X --suexec-gidmin=60000 XMAN8+= suexec.8 XPLIST_SUB= SUEXEC=sbin/suexec X.else X @${ECHO} "Define WITH_SUEXEC to build with suexec support." XPLIST_SUB= SUEXEC= X.endif X X.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES XOPTIM+= -DBUFFERED_LOGS -DFD_SETSIZE=1024 XCFLAGS+= -O6 -funroll-loops -fstrength-reduce -fomit-frame-pointer \ X -fexpensive-optimizations -ffast-math X.endif X XCONFIGURE_ENV= CFLAGS='${CFLAGS}' \ X OPTIM='${OPTIM}' \ X SSL_BASE='SYSTEM' \ X EAPI_MM='SYSTEM' \ X PATH="${PREFIX}/bin:${PATH}" X XINSTALL_TARGET= install-quiet X XMAN1= dbmmanage.1 htdigest.1 htpasswd.1 XMAN8+= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 X XTYPE= test XCRT= XKEY= X Xpre-patch: X @cd ${WRKDIR}/mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE} \ X && ${ECHO_MSG} "===> Applying mod_ssl-${VERSION_MODSSL} extension" \ X && ./configure --with-apache=../${DISTNAME} --expert X Xpost-patch: X @cd ${WRKSRC} \ X && find . -type f -name "*.orig" -print | xargs ${RM} -f X Xpost-build: X @cd ${WRKSRC} \ X && ${ECHO_MSG} "===> Creating Dummy Certificate for Server (SnakeOil)" \ X && ${ECHO_MSG} " [use 'make certificate' to create a real one]" \ X && ${MAKE} certificate TYPE=dummy >/dev/null 2>&1 X Xcertificate: X @cd ${WRKSRC} \ X && ${ECHO_MSG} "===> Creating Test Certificate for Server" \ X && ${MAKE} certificate TYPE=${TYPE} CRT=${CRT} KEY=${KEY} X Xpost-install: X @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ X ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ X ${SED} -e "s#!!PREFIX!!#${PREFIX}#g" < ${FILESDIR}/rc.apache.sh > ${PREFIX}/etc/rc.d/apache.sh; \ X ${CHMOD} 751 ${PREFIX}/etc/rc.d/apache.sh; \ X fi X X.include END-of-./Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message