aboutsummaryrefslogtreecommitdiffstats
path: root/www/oops/files/patch-aa
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-09-17 22:36:32 +0000
committerWill Andrews <will@FreeBSD.org>2000-09-17 22:36:32 +0000
commit97ff1a477e8631a785ea28b6eba0025287fc73c7 (patch)
tree1e541446a678cd649cc8d4fceefe4ebe75d68507 /www/oops/files/patch-aa
parentd24350b748151e2d5021020d7d3d14feadcfc85c (diff)
Add oops 1.4.16, a www proxy server similar to squid but easier to configure,
threadsafe (can use more than one CPU), and faster (uses large files rather than many files). PR: 21318 Submitted by: Sergey Oskin <oZZ@FreeBSD.org.ru>
Diffstat (limited to 'www/oops/files/patch-aa')
-rw-r--r--www/oops/files/patch-aa73
1 files changed, 73 insertions, 0 deletions
diff --git a/www/oops/files/patch-aa b/www/oops/files/patch-aa
new file mode 100644
index 000000000000..2c325128e526
--- /dev/null
+++ b/www/oops/files/patch-aa
@@ -0,0 +1,73 @@
+--- src/Makefile.in.orig Thu Sep 14 13:19:39 2000
++++ src/Makefile.in Thu Sep 14 13:25:53 2000
+@@ -43,7 +43,7 @@
+ ${OOPSPATH}/DB \
+ ${OOPSPATH}/storages \
+ ${OOPS_SYSCONFDIR}/tables \
+- ${OOPS_LIBDIR}/modules
++ ${OOPS_LIBDIR}
+
+ if [ "X@OOPS_USER@" != "X" ]; then\
+ ${CHOWN} @OOPS_USER@ ${OOPSPATH};\
+@@ -51,51 +51,19 @@
+ ${CHOWN} @OOPS_USER@ ${OOPSPATH}/DB;\
+ ${CHOWN} @OOPS_USER@ ${OOPSPATH}/storages;\
+ ${CHOWN} @OOPS_USER@ ${OOPS_SYSCONFDIR}/tables;\
+- ${CHOWN} @OOPS_USER@ ${OOPS_LIBDIR}/modules;\
++ ${CHOWN} @OOPS_USER@ ${OOPS_LIBDIR};\
+ fi
+
+ install: all mkinstalldirs
+- $(INSTALL) oops ${OOPSPATH}
+- if [ -f ${OOPS_SYSCONFDIR}/oops.cfg ]; then\
+- $(INSTALL_DATA) oops.cfg ${OOPS_SYSCONFDIR}/oops.cfg.sample ;\
+- else\
+- $(INSTALL_DATA) oops.cfg ${OOPS_SYSCONFDIR}/oops.cfg ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/err_template.html ]; then\
+- $(INSTALL_DATA) err_template.html ${OOPS_SYSCONFDIR}/err_template.html.sample ;\
+- else\
+- $(INSTALL_DATA) err_template.html ${OOPS_SYSCONFDIR}/err_template.html ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/auth_template.html ]; then\
+- $(INSTALL_DATA) auth_template.html ${OOPS_SYSCONFDIR}/auth_template.html.sample ;\
+- else\
+- $(INSTALL_DATA) auth_template.html ${OOPS_SYSCONFDIR}/auth_template.html;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/passwd ]; then\
+- $(INSTALL_DATA) passwd ${OOPS_SYSCONFDIR}/passwd.sample ;\
+- else\
+- $(INSTALL_DATA) passwd ${OOPS_SYSCONFDIR}/passwd ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/redir_rules ]; then\
+- $(INSTALL_DATA) redir_rules ${OOPS_SYSCONFDIR}/redir_rules.sample ;\
+- else\
+- $(INSTALL_DATA) redir_rules ${OOPS_SYSCONFDIR}/redir_rules ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/redir_template.html ]; then\
+- $(INSTALL_DATA) redir_template.html ${OOPS_SYSCONFDIR}/redir_template.html.sample ;\
+- else\
+- $(INSTALL_DATA) redir_template.html ${OOPS_SYSCONFDIR}/redir_template.html ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/accel_maps ]; then\
+- $(INSTALL_DATA) accel_maps ${OOPS_SYSCONFDIR}/accel_maps.sample ;\
+- else\
+- $(INSTALL_DATA) accel_maps ${OOPS_SYSCONFDIR}/accel_maps ;\
+- fi
+- if [ -f ${OOPS_SYSCONFDIR}/acl_local_networks ]; then\
+- $(INSTALL_DATA) acl_local_networks ${OOPS_SYSCONFDIR}/acl_local_networks.sample ;\
+- else\
+- $(INSTALL_DATA) acl_local_networks ${OOPS_SYSCONFDIR}/acl_local_networks ;\
+- fi
++ $(INSTALL) oops ${OOPS_SBINDIR}
++ $(INSTALL_DATA) oops.cfg ${OOPS_SYSCONFDIR}/oops.cfg.sample
++ $(INSTALL_DATA) err_template.html ${OOPS_SYSCONFDIR}/err_template.html.sample
++ $(INSTALL_DATA) auth_template.html ${OOPS_SYSCONFDIR}/auth_template.html.sample
++ $(INSTALL_DATA) passwd ${OOPS_SYSCONFDIR}/passwd.sample
++ $(INSTALL_DATA) redir_rules ${OOPS_SYSCONFDIR}/redir_rules.sample
++ $(INSTALL_DATA) redir_template.html ${OOPS_SYSCONFDIR}/redir_template.html.sample
++ $(INSTALL_DATA) accel_maps ${OOPS_SYSCONFDIR}/accel_maps.sample
++ $(INSTALL_DATA) acl_local_networks ${OOPS_SYSCONFDIR}/acl_local_networks.sample
+ if test "X@SOFLAGS@" != "X"; then \
+ for m in modules/*so ; do \
+ $(INSTALL) $$m ${OOPS_LIBDIR} ; \