diff options
author | ache <ache@FreeBSD.org> | 2001-10-21 19:27:12 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-10-21 19:27:12 +0000 |
commit | c0d9987ec8962fa375b74c08e94e16426ce54095 (patch) | |
tree | 2781a2637db6f1c60b830dc28347b1bee651c4c7 /www/apache13 | |
parent | 82a72198309dec5440d851505b241ef5d1fd40b3 (diff) | |
download | FreeBSD-ports-c0d9987ec8962fa375b74c08e94e16426ce54095.zip FreeBSD-ports-c0d9987ec8962fa375b74c08e94e16426ce54095.tar.gz |
Fix Group replacing in httpd.conf
Diffstat (limited to 'www/apache13')
-rw-r--r-- | www/apache13/Makefile | 2 | ||||
-rw-r--r-- | www/apache13/files/patch-ab | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/www/apache13/Makefile b/www/apache13/Makefile index ef352b6..9918ba2 100644 --- a/www/apache13/Makefile +++ b/www/apache13/Makefile @@ -7,7 +7,7 @@ PORTNAME= apache PORTVERSION= 1.3.22 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://httpd.apache.org/dist/httpd/ \ ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/httpd/ \ diff --git a/www/apache13/files/patch-ab b/www/apache13/files/patch-ab index 094541a..8e4daa3 100644 --- a/www/apache13/files/patch-ab +++ b/www/apache13/files/patch-ab @@ -1,5 +1,5 @@ --- Makefile.tmpl.orig Sun Oct 7 02:01:09 2001 -+++ Makefile.tmpl Wed Oct 17 06:50:16 2001 ++++ Makefile.tmpl Sun Oct 21 23:17:01 2001 @@ -270,10 +270,12 @@ $(MKDIR) $(root)$(mandir)/man1 $(MKDIR) $(root)$(mandir)/man8 @@ -71,7 +71,7 @@ @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ (cd $(root)$(iconsdir)/ && $(TAR) -xf -); \ -@@ -522,10 +531,10 @@ +@@ -522,14 +531,14 @@ -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;' \ @@ -86,3 +86,8 @@ -e 's;conf/magic;$(sysconfdir)/magic;' \ -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ -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;ServerAdmin you@your.address;ServerAdmin $(conf_serveradmin);' \ + -e 's;ServerName new.host.name;ServerName $(conf_servername);' \ |