1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/sysutils/nut/files/patch-aa
Boris Popov e905d01c4c New port for 'nut' package. It supports wide variety of UPS hardware
(including Smart and Back UPS for APPC), has ability to shutdown
multiple hosts without additional hardware and provides CGI
scripts to monitor UPS status via WEB interface.
2000-01-11 11:55:48 +00:00

55 lines
1.3 KiB
Plaintext

--- clients/Makefile.in.org Wed Nov 10 01:36:44 1999
+++ clients/Makefile.in Mon Jan 10 16:43:44 2000
@@ -53,8 +53,8 @@
install: all
@for p in $(PROGS) ; do \
- echo cp $$p $(BASEPATH)/bin; \
- cp $$p $(BASEPATH)/bin; \
+ echo cp $$p $(BASEPATH)/sbin; \
+ cp $$p $(BASEPATH)/sbin; \
done
install-cgi: cgi
--- conf/Makefile.in.org Mon Oct 18 03:56:11 1999
+++ conf/Makefile.in Tue Jan 11 16:57:15 2000
@@ -9,10 +9,6 @@
install:
@for f in $(CONFFILES) ; do \
- if [ -f $(CONFPATH)/$$f ]; then \
- echo "Preserving existing config file: $$f"; \
- else \
- echo cp $$f $(CONFPATH); \
- cp $$f $(CONFPATH); \
- fi; \
+ echo cp $$f $(CONFPATH)/$$f.sample; \
+ cp $$f $(CONFPATH)/$$f.sample; \
done
--- server/Makefile.in.org Wed Nov 10 01:37:01 1999
+++ server/Makefile.in Mon Jan 10 16:41:55 2000
@@ -21,6 +21,6 @@
install: all
@for p in $(PROGS) ; do \
- echo cp $$p $(BASEPATH)/bin ; \
- cp $$p $(BASEPATH)/bin; \
+ echo cp $$p $(BASEPATH)/sbin ; \
+ cp $$p $(BASEPATH)/sbin; \
done
--- models/Makefile.in.org Wed Nov 10 01:36:44 1999
+++ models/Makefile.in Mon Jan 10 16:43:44 2000
@@ -35,6 +35,6 @@
install: all
@for p in $(PROGS) ; do \
- echo cp $$p $(BASEPATH)/bin; \
- cp $$p $(BASEPATH)/bin; \
+ echo cp $$p $(BASEPATH)/sbin; \
+ cp $$p $(BASEPATH)/sbin; \
done