summaryrefslogtreecommitdiff
path: root/www/apache13-modssl/files
diff options
context:
space:
mode:
authorPatrick Li <pat@FreeBSD.org>2002-06-22 17:48:46 +0000
committerPatrick Li <pat@FreeBSD.org>2002-06-22 17:48:46 +0000
commita66c2cea7bb420cab5ab37345a25eca60bc1645a (patch)
treee6eaf4cf812a2fa6717c27444feba3ba92ead5e9 /www/apache13-modssl/files
parentReplace ${PERL} with ${REINPLACE_CMD} (diff)
- Sync with www/apache13 a bit
- Fix clobbering ${PREFIX}/www on install and warnings coughing up on deinstall when ${PREFIX}/www is not empty - Remove pkg-deinstall PR: ports/39645, ports/36804 Submitted by: Charles Sprickman <freebsd@fasttrackmonkey.com>, Peter C. Lai <sirmoo@cowbert.2y.net>
Notes
Notes: svn path=/head/; revision=61745
Diffstat (limited to 'www/apache13-modssl/files')
-rw-r--r--www/apache13-modssl/files/patch-ab71
1 files changed, 41 insertions, 30 deletions
diff --git a/www/apache13-modssl/files/patch-ab b/www/apache13-modssl/files/patch-ab
index 73a754755efe..1fcc20ce0610 100644
--- a/www/apache13-modssl/files/patch-ab
+++ b/www/apache13-modssl/files/patch-ab
@@ -1,21 +1,19 @@
---- Makefile.tmpl.orig Thu Feb 7 23:46:03 2002
-+++ Makefile.tmpl Thu Feb 7 23:47:53 2002
-@@ -329,10 +329,12 @@
+--- Makefile.tmpl.orig Sat Jun 22 12:55:54 2002
++++ Makefile.tmpl Sat Jun 22 12:59:10 2002
+@@ -329,10 +329,10 @@
$(MKDIR) $(root)$(sysconfdir)/ssl.csr
$(MKDIR) $(root)$(sysconfdir)/ssl.key
$(MKDIR) $(root)$(sysconfdir)/ssl.prm
- $(MKDIR) $(root)$(htdocsdir)
-+ $(RM) -rf $(root)$(htdocsdir).default
-+ $(MKDIR) $(root)$(htdocsdir).default
++ $(MKDIR) $(root)$(htdocsdir)-dist
$(MKDIR) $(root)$(manualdir)
$(MKDIR) $(root)$(iconsdir)
- $(MKDIR) $(root)$(cgidir)
-+ $(RM) -rf $(root)$(cgidir).default
-+ $(MKDIR) $(root)$(cgidir).default
++ $(MKDIR) $(root)$(cgidir)-dist
$(MKDIR) $(root)$(includedir)
$(MKDIR) $(root)$(includedir)/xml
$(MKDIR) $(root)$(runtimedir)
-@@ -533,33 +535,40 @@
+@@ -533,33 +533,29 @@
# icons and distributed CGI scripts.
install-data:
@echo "===> [data: Installing initial data files]"
@@ -23,55 +21,46 @@
- 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)$(htdocsdir).default/"; \
++ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)-dist/"; \
(cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - index* apache_pb.* ) |\
- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \
- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \
- 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 \
++ (cd $(root)$(htdocsdir)-dist/ && $(TAR) -xf -); \
++ find $(root)$(htdocsdir)-dist/ -type d -exec chmod a+rx {} \; ; \
++ find $(root)$(htdocsdir)-dist/ -type f -print | xargs chmod a+r ;
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
+- find $(root)$(manualdir)/ -type f -print | xargs chmod a+r ; \
++ find $(root)$(manualdir)/ -type f -print | xargs chmod a+r ;
+ if [ ! -d $(root)$(htdocsdir)/ ]; then \
-+ $(LN) -sf $(root)$(htdocsdir).default $(root)$(htdocsdir); \
++ $(LN) -sf $(root)$(htdocsdir)-dist $(root)$(htdocsdir); \
fi
- -@if [ -f $(root)$(cgidir)/printenv ]; then \
- echo "[PRESERVING EXISTING CGI SUBDIR: $(root)$(cgidir)/]"; \
- else \
-+# -@if [ -f $(root)$(cgidir)/printenv ]; then \
-+# echo "[PRESERVING EXISTING CGI SUBDIR: $(root)$(cgidir)/]"; \
-+# else \
for script in printenv test-cgi; do \
cat $(TOP)/cgi-bin/$${script} |\
sed -e 's;^#!/.*perl;#!$(PERL);' \
> $(TOP)/$(SRC)/.apaci.install.tmp; \
- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \
- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \
-+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \
-+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \
- done; \
+- done; \
- fi
-+# fi
++ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)-dist/$${script}"; \
++ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)-dist/$${script}; \
++ done;
+ if [ ! -d $(root)$(cgidir)/ ]; then \
-+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \
++ $(LN) -sf $(root)$(cgidir)-dist $(root)$(cgidir); \
+ fi
@echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \
(cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\
(cd $(root)$(iconsdir)/ && $(TAR) -xf -); \
-@@ -607,10 +616,10 @@
+@@ -607,10 +603,10 @@
-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 +75,25 @@
-e 's;conf/magic;$(sysconfdir)/magic;' \
-e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \
-e 's;User nobody;User $(conf_user);' \
+@@ -623,8 +619,8 @@
+ -e 's;ServerName new.host.name;ServerName $(conf_servername);' \
+ -e 's;VirtualHost _default_:443;VirtualHost _default_:$(conf_port_ssl);' \
+ > $(TOP)/$(SRC)/.apaci.install.tmp && \
+- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(sysconfdir)/$${target_conf}.default"; \
+- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sysconfdir)/$${target_conf}.default; \
++ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(sysconfdir)/$${target_conf}-dist"; \
++ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sysconfdir)/$${target_conf}-dist; \
+ if [ ! -f "$(root)$(sysconfdir)/$${target_conf}" ]; then \
+ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf}-dist[*] $(root)$(sysconfdir)/$${target_conf}"; \
+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sysconfdir)/$${target_conf}; \
+@@ -633,8 +629,8 @@
+ fi; \
+ done
+ -@for conf in mime.types magic; do \
+- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}.default"; \
+- $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}.default; \
++ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}-dist"; \
++ $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}-dist; \
+ if [ ! -f "$(root)$(sysconfdir)/$${conf}" ]; then \
+ echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}"; \
+ $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}; \