diff options
author | clive <clive@FreeBSD.org> | 2001-10-20 22:09:31 +0800 |
---|---|---|
committer | clive <clive@FreeBSD.org> | 2001-10-20 22:09:31 +0800 |
commit | e839202c9fac65925ee821abde01c8ff7fe1a2ea (patch) | |
tree | c87f4adcc641f8f1e869f094b7d467703b57eed4 /www/apache13-fp/pkg-install | |
parent | 00cf65c8635c0b1cdac4fbbbd96279eafcb77f5c (diff) | |
download | freebsd-ports-gnome-e839202c9fac65925ee821abde01c8ff7fe1a2ea.tar.gz freebsd-ports-gnome-e839202c9fac65925ee821abde01c8ff7fe1a2ea.tar.zst freebsd-ports-gnome-e839202c9fac65925ee821abde01c8ff7fe1a2ea.zip |
Upgrade to Apache 1.3.22, and
* fix libdescrypt detection: libdescrypt is only needed for
OSVERSION < 430001 or OSVERSION > 499999 and OSVERSION < 500014,
due to libdescrypt has been combined into the libcrypt library
on recent FreeBSD versions.
* default to using the FreeBSD Frontpage Extentions on i386.
There maybe problems with fpsrvadm.exe when it creates passwords
on a system that by default uses MD5 passwords. May need to set
roots passwd_format to des and change the password, before
installing (login.conf). BSDi FrontPage Extentions can be used
by defining WANT_BSDI_EXT.
* Added dependacy on misc/compat3x for the FreeBSD FP Exts.
* Moved execfilename to the end of the request_rec structure
in httpd.h, so that it would stop breaking binary compatiblity
with other pre-compiled Apache modules. This should allow
compiled modules build for www/apache13 to also work on
www/apache13-fp without needing to recompile them.
* Removed the Virtual host on port 8080 from httpd.conf, due to
the manual directory is now exported using an Alias, which
assigns it to a location on the main document root.
* Moved the Frontpage documents from manual/mod/mod_frontpage to
manual/frontpage. (Avoids patching manual/mod/index.html*)
PR: ports/31361
Submitted by: Scot W. Hetzel <hetzels@westbend.net> (MAINTAINER)
Diffstat (limited to 'www/apache13-fp/pkg-install')
-rw-r--r-- | www/apache13-fp/pkg-install | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/www/apache13-fp/pkg-install b/www/apache13-fp/pkg-install index 3a82a11244b3..2d671c7cc250 100644 --- a/www/apache13-fp/pkg-install +++ b/www/apache13-fp/pkg-install @@ -18,7 +18,7 @@ AP_SHARE=${PKG_PREFIX}/share/doc/apache FPINSTALL=${PKG_PREFIX}/frontpage/version4.0/fp_install.sh CHANGESERVER=${PKG_PREFIX}/frontpage/version4.0/change_server.sh -FPDOCDIR=${AP_SHARE}/manual/mod/mod_frontpage +FPDOCDIR=${AP_SHARE}/manual/frontpage IMAGES_DIR=${AP_SHARE}/manual/images IMAGES_VTI=${PKG_PREFIX}/www/data/images/_vti_cnf @@ -67,13 +67,6 @@ create_user() fi } -create_apache_lang_doc () -{ - /bin/cat ${AP_SHARE}/index.html.en-dist | \ - /usr/bin/sed -e 's;@@HOSTNAME@@;'${HOST_NAME}';' \ - > ${AP_SHARE}/index.html.en -} - create_apache_doc_root () { if [ ! -d ${AP_CGI} ]; then @@ -145,7 +138,6 @@ case $2 in POST-INSTALL) # If we are not in batch mode then run the FP install script. if [ "${PKG_BATCH}" = "NO" ]; then - create_apache_lang_doc create_apache_doc_root fix_frontpage_scripts fix_httpd_conf |