summaryrefslogtreecommitdiff
path: root/www/boa/files
diff options
context:
space:
mode:
Diffstat (limited to 'www/boa/files')
-rw-r--r--www/boa/files/boa.sh.sample20
-rw-r--r--www/boa/files/patch-Makefile.in11
-rw-r--r--www/boa/files/patch-docs__Makefile.in11
-rw-r--r--www/boa/files/patch-docs__boa.texi11
-rw-r--r--www/boa/files/patch-examples__boa.conf62
-rw-r--r--www/boa/files/patch-src__defines.h20
-rw-r--r--www/boa/files/pkg-message.in11
7 files changed, 0 insertions, 146 deletions
diff --git a/www/boa/files/boa.sh.sample b/www/boa/files/boa.sh.sample
deleted file mode 100644
index 8a4acd7395e2..000000000000
--- a/www/boa/files/boa.sh.sample
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case "$1" in
-start)
- [ -x ${PREFIX}/sbin/boa ] && ${PREFIX}/sbin/boa && echo -n ' boa'
- ;;
-stop)
- killall boa && echo -n ' boa'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0
diff --git a/www/boa/files/patch-Makefile.in b/www/boa/files/patch-Makefile.in
deleted file mode 100644
index e73840a98572..000000000000
--- a/www/boa/files/patch-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Mon Nov 25 18:39:27 2002
-+++ Makefile.in Mon Nov 25 18:40:07 2002
-@@ -4,7 +4,7 @@
-
- .PHONY: clean mrclean distclean boa docs
-
--all: boa
-+all: boa docs
-
- boa:
- (cd src && $(MAKE) $(MFLAGS))
diff --git a/www/boa/files/patch-docs__Makefile.in b/www/boa/files/patch-docs__Makefile.in
deleted file mode 100644
index e7856c6a9a2b..000000000000
--- a/www/boa/files/patch-docs__Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- docs/Makefile.in.orig Mon Nov 25 18:38:32 2002
-+++ docs/Makefile.in Mon Nov 25 18:38:42 2002
-@@ -3,7 +3,7 @@
- srcdir = @srcdir@
- VPATH = @srcdir@
-
--all: boa.html boa.dvi boa.info boa.txt
-+all: boa.html boa.info boa.txt
-
- boa.info: boa.texi
- makeinfo --number-sections @ALLSOURCES@
diff --git a/www/boa/files/patch-docs__boa.texi b/www/boa/files/patch-docs__boa.texi
deleted file mode 100644
index 598c1df5ecf4..000000000000
--- a/www/boa/files/patch-docs__boa.texi
+++ /dev/null
@@ -1,11 +0,0 @@
---- docs/boa.texi.orig Mon Nov 25 18:28:07 2002
-+++ docs/boa.texi Mon Nov 25 18:28:44 2002
-@@ -31,7 +31,7 @@
- @ifinfo
- @dircategory Networking
- @direntry
--* Boa: (boa). The Boa Webserver
-+* Boa: (boa). The Boa Webserver
- @end direntry
- @end ifinfo
-
diff --git a/www/boa/files/patch-examples__boa.conf b/www/boa/files/patch-examples__boa.conf
deleted file mode 100644
index e3e1b3176822..000000000000
--- a/www/boa/files/patch-examples__boa.conf
+++ /dev/null
@@ -1,62 +0,0 @@
---- examples/boa.conf.orig Mon Nov 25 18:27:13 2002
-+++ examples/boa.conf Mon Nov 25 18:33:40 2002
-@@ -45,8 +45,8 @@
- # User: The name or UID the server should run as.
- # Group: The group name or GID the server should run as.
-
--User nobody
--Group nogroup
-+User www
-+Group www
-
- # ServerAdmin: The email address where server problems should be sent.
- # Note: this is not currently used, except as an environment variable
-@@ -155,7 +155,7 @@
- # DocumentRoot: The root directory of the HTML documents.
- # Comment out to disable server non user files.
-
--DocumentRoot /var/www
-+DocumentRoot %%PREFIX%%/www/data
-
- # UserDir: The name of the directory which is appended onto a user's home
- # directory if a ~user request is recieved.
-@@ -174,7 +174,7 @@
- # DirectoryIndex are commented out, accessing a directory will give
- # an error (though accessing files in the directory are still ok).
-
--DirectoryMaker /usr/lib/boa/boa_indexer
-+DirectoryMaker %%PREFIX%%/sbin/boa_indexer
-
- # DirectoryCache: If DirectoryIndex doesn't exist, and DirectoryMaker
- # has been commented out, the the on-the-fly indexing of Boa can be used
-@@ -199,7 +199,7 @@
- # Set to /dev/null if you do not want to load a mime types file.
- # Do *not* comment out (better use AddType!)
-
--MimeTypes /etc/mime.types
-+MimeTypes %%PREFIX%%/etc/mime.types
-
- # DefaultType: MIME type used if the file extension is unknown, or there
- # is no file extension.
-@@ -208,7 +208,7 @@
-
- # CGIPath: The value of the $PATH environment variable given to CGI progs.
-
--CGIPath /bin:/usr/bin:/usr/local/bin
-+CGIPath /bin:/usr/bin:%%PREFIX%%/bin
-
- # SinglePostLimit: The maximum allowable number of bytes in
- # a single POST. Default is normally 1MB.
-@@ -232,10 +232,10 @@
- # Aliases: Aliases one path to another.
- # Example: Alias /path1/bar /path2/foo
-
--Alias /doc /usr/doc
-+Alias /doc /usr/share/doc
-
- # ScriptAlias: Maps a virtual path to a directory for serving scripts
- # Example: ScriptAlias /htbin/ /www/htbin/
-
--ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
-+ScriptAlias /cgi-bin/ %%PREFIX%%/www/cgi-bin/
-
diff --git a/www/boa/files/patch-src__defines.h b/www/boa/files/patch-src__defines.h
deleted file mode 100644
index d5e8adbbd503..000000000000
--- a/www/boa/files/patch-src__defines.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/defines.h.orig Mon Nov 25 18:25:31 2002
-+++ src/defines.h Mon Nov 25 18:26:09 2002
-@@ -27,7 +27,7 @@
- /***** Change this, or use -c on the command line to specify it *****/
-
- #ifndef SERVER_ROOT
--#define SERVER_ROOT "/etc/boa"
-+#define SERVER_ROOT "%%PREFIX%%/etc"
- #endif
-
- /***** Change this via the CGIPath configuration value in boa.conf *****/
-@@ -53,7 +53,7 @@
-
- #define REQUEST_TIMEOUT 60
-
--#define MIME_TYPES_DEFAULT "/etc/mime.types"
-+#define MIME_TYPES_DEFAULT "%%PREFIX%%/etc/mime.types"
- #define CGI_MIME_TYPE "application/x-httpd-cgi"
-
- /***** CHANGE ANYTHING BELOW THIS LINE AT YOUR OWN PERIL *****/
diff --git a/www/boa/files/pkg-message.in b/www/boa/files/pkg-message.in
deleted file mode 100644
index 4515eebcc2d1..000000000000
--- a/www/boa/files/pkg-message.in
+++ /dev/null
@@ -1,11 +0,0 @@
-[
-{ type: install
- message: <<EOM
-You may wish to copy and edit the sample startup script
-
-%%PREFIX%%/etc/rc.d/boa.sh.sample
-
-according to your requirements.
-EOM
-}
-]