mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
5e2f02b7c3
PR: ports/17139 Submitted by: maintainer
180 lines
8.4 KiB
Plaintext
180 lines
8.4 KiB
Plaintext
--- Makefile.tmpl.orig Tue Jan 11 13:47:41 2000
|
|
+++ Makefile.tmpl Thu Mar 2 23:00:19 2000
|
|
@@ -123,6 +123,7 @@
|
|
runtimedir = @runtimedir@
|
|
logfiledir = @logfiledir@
|
|
proxycachedir = @proxycachedir@
|
|
+doc_prefix = $(prefix)/share/doc/apache
|
|
|
|
libexecdir_relative = @libexecdir_relative@
|
|
|
|
@@ -266,9 +267,9 @@
|
|
$(MKDIR) $(root)$(mandir)/man1
|
|
$(MKDIR) $(root)$(mandir)/man8
|
|
$(MKDIR) $(root)$(sysconfdir)
|
|
- $(MKDIR) $(root)$(htdocsdir)
|
|
+ $(MKDIR) $(root)$(doc_prefix)
|
|
$(MKDIR) $(root)$(iconsdir)
|
|
- $(MKDIR) $(root)$(cgidir)
|
|
+ $(MKDIR) $(root)$(cgidir).default
|
|
$(MKDIR) $(root)$(includedir)
|
|
$(MKDIR) $(root)$(includedir)/xml
|
|
$(MKDIR) $(root)$(runtimedir)
|
|
@@ -324,19 +325,34 @@
|
|
echo "$(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}"; \
|
|
$(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}; \
|
|
name=`$(TOP)/$(AUX)/fmn.sh $(TOP)/$(SRC)/$${mod}`; \
|
|
+ if [ ".$$name" = .frontpage_module ]; then \
|
|
+ echo "<IfDefine MOD_FP>" >>$(SRC)/.apaci.install.conf; \
|
|
+ fi; \
|
|
echo dummy | awk '{ printf("LoadModule %-18s %s\n", modname, modpath); }' \
|
|
modname="$${name}" modpath="$(libexecdir_relative)$${file}" >>$(SRC)/.apaci.install.conf; \
|
|
+ if [ ".$$name" = .frontpage_module ]; then \
|
|
+ echo "</IfDefine>" >>$(SRC)/.apaci.install.conf; \
|
|
+ fi; \
|
|
done; \
|
|
echo "" >>$(SRC)/.apaci.install.conf; \
|
|
echo "# Reconstruction of the complete module list from all available modules" >>$(SRC)/.apaci.install.conf; \
|
|
echo "# (static and shared ones) to achieve correct module execution order." >>$(SRC)/.apaci.install.conf; \
|
|
echo "# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]" >>$(SRC)/.apaci.install.conf; \
|
|
echo "ClearModuleList" >>$(SRC)/.apaci.install.conf; \
|
|
- egrep "^[ ]*(Add|Shared)Module" $(SRC)/Configuration.apaci |\
|
|
- sed -e 's:SharedModule:AddModule:' \
|
|
- -e 's:modules/[^/]*/::' \
|
|
- -e 's:[ ]lib: mod_:' \
|
|
- -e 's:\.[soam].*$$:.c:' >>$(SRC)/.apaci.install.conf; \
|
|
+ for mod in `egrep "^[ ]*(Add|Shared)Module" $(SRC)/Configuration.apaci |\
|
|
+ sed -e 's:[ ]*SharedModule::' \
|
|
+ -e 's:[ ]*AddModule::' \
|
|
+ -e 's:modules/[^/]*/::' \
|
|
+ -e 's:[ ]lib: mod_:' \
|
|
+ -e 's:\.[soam].*$$:.c:'`; do \
|
|
+ if [ ".$$mod" = .mod_frontpage.c ]; then \
|
|
+ echo "<IfDefine MOD_FP>" >>$(SRC)/.apaci.install.conf; \
|
|
+ fi; \
|
|
+ echo "AddModule $$mod" >>$(SRC)/.apaci.install.conf; \
|
|
+ if [ ".$$mod" = .mod_frontpage.c ]; then \
|
|
+ echo "</IfDefine>" >>$(SRC)/.apaci.install.conf; \
|
|
+ fi; \
|
|
+ done; \
|
|
fi
|
|
@echo "<=== [programs]"
|
|
|
|
@@ -405,6 +421,7 @@
|
|
echo "$(INSTALL_SCRIPT) $(TOP)/$(SRC)/support/apachectl[*] $(root)$(sbindir)/$${apachectl}"; \
|
|
sed -e 's;PIDFILE=.*;PIDFILE=$(runtimedir)/$(TARGET).pid;' \
|
|
-e 's;HTTPD=.*;HTTPD=$(sbindir)/$(TARGET);' \
|
|
+ -e 's;LD_LIBRARY_PATH=.*;LD_LIBRARY_PATH=/usr/lib\:$(prefix)/lib;' \
|
|
< $(TOP)/$(SRC)/support/apachectl > $(TOP)/$(SRC)/.apaci.install.tmp && \
|
|
$(INSTALL_SCRIPT) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sbindir)/$${apachectl}; \
|
|
echo "$(INSTALL_DATA) $(TOP)/$(SRC)/support/apachectl.8 $(root)$(mandir)/man8/$${apachectl}.8"; \
|
|
@@ -452,26 +469,30 @@
|
|
# icons and distributed CGI scripts.
|
|
install-data:
|
|
@echo "===> [data: Installing initial data files]"
|
|
- -@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)/"; \
|
|
+# -@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)$(doc_prefix)/"; \
|
|
(cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\
|
|
- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \
|
|
- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \
|
|
- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \
|
|
- fi
|
|
- -@if [ -f $(root)$(cgidir)/printenv ]; then \
|
|
- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \
|
|
- else \
|
|
+ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \
|
|
+ for lang in ca cz de dk ee en es fr it ja.jis lu nl po.iso-pl pt pt-br se; do \
|
|
+ mv $(root)$(doc_prefix)/index.html.$${lang} \
|
|
+ $(root)$(doc_prefix)/index.html.$${lang}-dist ; \
|
|
+ done; \
|
|
+ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \
|
|
+ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \
|
|
+# fi
|
|
+# -@if [ -f $(root)$(cgidir)/printenv ]; then \
|
|
+# echo "[PRESERVING EXISTING DATA 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; \
|
|
- fi
|
|
+# fi
|
|
@echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \
|
|
(cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\
|
|
(cd $(root)$(iconsdir)/ && $(TAR) -xf -); \
|
|
@@ -504,42 +525,47 @@
|
|
-e 's;@@ServerRoot@@/icons;$(iconsdir);' \
|
|
-e 's;@@ServerRoot@@/cgi-bin;$(cgidir);' \
|
|
-e 's;@@ServerRoot@@/proxy;$(proxycachedir);' \
|
|
+ -e 's;@@ServerRoot@@/srm.conf;/dev/null;' \
|
|
+ -e 's;@@ServerRoot@@/access.conf;/dev/null;' \
|
|
-e 's;@@ServerRoot@@;$(prefix);g' \
|
|
-e 's;httpd\.conf;$(TARGET).conf;' \
|
|
-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;' \
|
|
- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \
|
|
- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \
|
|
- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \
|
|
- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \
|
|
+ -e "s;logs/access_log;$(logfiledir)/httpd-access.log;" \
|
|
+ -e "s;logs/error_log;$(logfiledir)/httpd-error.log;" \
|
|
+ -e "s;logs/referer_log;$(logfiledir)/httpd-referer.log;" \
|
|
+ -e "s;logs/agent_log;$(logfiledir)/httpd-agent.log;" \
|
|
-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;Port 80;Port $(conf_port);' \
|
|
+ -e 's;@@MANUAL@@;$(doc_prefix);' \
|
|
-e 's;ServerAdmin you@your.address;ServerAdmin $(conf_serveradmin);' \
|
|
-e 's;ServerName new.host.name;ServerName $(conf_servername);' \
|
|
> $(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; \
|
|
- 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}; \
|
|
- else \
|
|
- echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${target_conf}]"; \
|
|
- fi; \
|
|
done
|
|
+# 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}; \
|
|
+# else \
|
|
+# echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${target_conf}]"; \
|
|
+# 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; \
|
|
- if [ ! -f "$(root)$(sysconfdir)/$${conf}" ]; then \
|
|
- echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}"; \
|
|
- $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}; \
|
|
- else \
|
|
- echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${conf}]"; \
|
|
- fi; \
|
|
done
|
|
+# if [ ! -f "$(root)$(sysconfdir)/$${conf}" ]; then \
|
|
+# echo "$(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}"; \
|
|
+# $(INSTALL_DATA) $(TOP)/conf/$${conf} $(root)$(sysconfdir)/$${conf}; \
|
|
+# else \
|
|
+# echo "[PRESERVING EXISTING CONFIG FILE: $(root)$(sysconfdir)/$${conf}]"; \
|
|
+# fi; \
|
|
+# done
|
|
@echo "<=== [config]"
|
|
|
|
|