mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
Original site is gone but code is still available on github. Changed WWW to point to github and also consumes source code from there. I've compared content of current github code and original tarball and it was just missing one function from xgetloadavg.c, now added using patch. While here, re-generate patches. PR: 270345 Reported by: diizzy
22 lines
1.2 KiB
Text
22 lines
1.2 KiB
Text
--- Makefile.in.orig 2012-05-09 16:03:17 UTC
|
|
+++ Makefile.in
|
|
@@ -77,16 +77,14 @@ install: build
|
|
for i in $(DAEMONDIR) $(BINDIR) $(MANDIR)/man5 $(MANDIR)/man8 ; do \
|
|
test -d $$i || mkdir -p $$i ; done
|
|
$(INSTALL_CMD) -m 755 xinetd/xinetd $(DAEMONDIR)
|
|
- $(INSTALL_CMD) -m 755 xinetd/itox $(DAEMONDIR)
|
|
- $(INSTALL_CMD) -m 755 $(SRCDIR)/xinetd/xconv.pl $(DAEMONDIR)
|
|
+ $(INSTALL_CMD) -m 755 $(SRCDIR)/xinetd/xconv.pl $(prefix)/bin/xconv
|
|
$(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/xinetd.conf.man $(MANDIR)/man5/xinetd.conf.5
|
|
$(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/xinetd.log.man $(MANDIR)/man8/xinetd.log.8
|
|
$(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/xinetd.man $(MANDIR)/man8/xinetd.8
|
|
- $(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/itox.8 $(MANDIR)/man8/itox.8
|
|
- $(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/xconv.pl.8 $(MANDIR)/man8/xconv.pl.8
|
|
+ $(INSTALL_CMD) -m 644 $(SRCDIR)/xinetd/xconv.pl.8 $(MANDIR)/man8/xconv.8
|
|
@echo "You must put your xinetd.conf in /etc/xinetd.conf"
|
|
@echo "There is a sample config file in xinetd/sample.conf and you can"
|
|
- @echo "use xconv.pl to convert your old inetd.conf file to an xinetd format"
|
|
+ @echo "use xconv to convert your old inetd.conf file to an xinetd format"
|
|
|
|
uninstall:
|
|
rm -f $(DAEMONDIR)/xinetd
|