1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
This commit is contained in:
Vanilla I. Shu 2014-06-09 03:41:18 +00:00
parent 32607e06b7
commit 3decd9ae5c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=357095
2 changed files with 15 additions and 3 deletions

View File

@ -11,8 +11,6 @@ COMMENT= A multiple host icmp monitoring tool
GNU_CONFIGURE= YES
MAN1= icmpmonitor.1
PLIST_FILES= sbin/icmpmonitor
PLIST_FILES= man/man1/icmpmonitor.1.gz sbin/icmpmonitor
NO_STAGE= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,14 @@
--- Makefile.in.orig 2014-06-09 11:38:16.905011836 +0800
+++ Makefile.in 2014-06-09 11:38:39.412011484 +0800
@@ -36,7 +36,7 @@ tar: distclean
gzip -9 icmpmonitor-$(VERSION).tar)
install: icmpmonitor icmpmonitor.man
- $(top_srcdir)/mkinstalldirs $(sbindir)
- $(INSTALL) icmpmonitor $(sbindir)
- $(top_srcdir)/mkinstalldirs $(mandir)/man1
- $(INSTALL) icmpmonitor.man $(mandir)/man1/icmpmonitor.1
+ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
+ $(INSTALL) icmpmonitor $(DESTDIR)$(sbindir)
+ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
+ $(INSTALL) icmpmonitor.man $(DESTDIR)$(mandir)/man1/icmpmonitor.1