freebsd-ports/www/oops/files/patch-src::Makefile.in
Sergey A. Osokin 3e20d6b4c0 Do not grab ${PREFIX}/sbin owhership.
Remove FORBIDDEN, bump PORTREVISION.

Notify from:	kris via bento
2004-01-30 10:19:16 +00:00

66 lines
2.9 KiB
Text

--- src/Makefile.in.orig Fri Oct 24 10:05:04 2003
+++ src/Makefile.in Fri Jan 30 13:11:28 2004
@@ -61,53 +61,17 @@
fi
install: all mkinstalldirs
- $(INSTALL) -d ${OOPS_SBINDIR}
+# $(INSTALL) -d ${OOPS_SBINDIR}
$(INSTALL) oops ${OOPS_SBINDIR}
- 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}/select.sql ]; then\
- $(INSTALL_DATA) select.sql ${OOPS_SYSCONFDIR}/select.sql.sample ;\
- else\
- $(INSTALL_DATA) select.sql ${OOPS_SYSCONFDIR}/select.sql ;\
- 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_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) select.sql ${OOPS_SYSCONFDIR}/select.sql.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} ; \