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-07-29 13:10:24 +00:00
parent 6e26a04fb3
commit c11c0ad9f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=363313
3 changed files with 35 additions and 6 deletions

View File

@ -13,11 +13,7 @@ COMMENT= Bandwidth analysis tool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=/var
MAN5= ipfm.conf.5
MAN8= ipfm.8
NO_STAGE= yes
post-install:
@${STRIP_CMD} ${PREFIX}/sbin/ipfm
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/ipfm
.include <bsd.port.mk>

View File

@ -0,0 +1,31 @@
--- Makefile.in.orig 2014-07-29 21:06:10.045210973 +0800
+++ Makefile.in 2014-07-29 21:07:11.227205493 +0800
@@ -15,17 +15,17 @@ docs: Makefile doc/Makefile
@cd doc && $(MAKE) && cd ..
install: all
- $(INSTALL) -d -m 755 $(SBINDIR)
- $(INSTALL) -m 555 source/ipfm $(SBINDIR)/ipfm
- $(INSTALL) -d -m 755 $(ETCDIR)
- [ -f $(CONFIGFILE) ] || \
- $(INSTALL) -m 644 ipfm.conf.sample $(CONFIGFILE)
- $(INSTALL) -d -m 755 $(MANDIR)/man5
- $(INSTALL) -d -m 755 $(MANDIR)/man8
- $(INSTALL) -m 444 doc/ipfm.conf.5 $(MANDIR)/man5/ipfm.conf.5
- $(INSTALL) -m 444 doc/ipfm.8 $(MANDIR)/man8/ipfm.8
- $(INSTALL) -d -m 755 $(LOGDIR)/ipfm
- $(INSTALL) -d -m 755 $(VARRUNDIR)
+ $(INSTALL) -d -m 755 $(DESTDIR)$(SBINDIR)
+ $(INSTALL) -m 555 source/ipfm $(DESTDIR)$(SBINDIR)/ipfm
+ $(INSTALL) -d -m 755 $(DESTDIR)$(ETCDIR)
+ [ -f $(DESTDIR)$(CONFIGFILE) ] || \
+ $(INSTALL) -m 644 ipfm.conf.sample $(DESTDIR)$(CONFIGFILE)
+ $(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man5
+ $(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man8
+ $(INSTALL) -m 444 doc/ipfm.conf.5 $(DESTDIR)$(MANDIR)/man5/ipfm.conf.5
+ $(INSTALL) -m 444 doc/ipfm.8 $(DESTDIR)$(MANDIR)/man8/ipfm.8
+ $(INSTALL) -d -m 755 $(DESTDIR)$(LOGDIR)/ipfm
+ $(INSTALL) -d -m 755 $(DESTDIR)$(VARRUNDIR)
clean:
@cd source && $(MAKE) clean && cd .. && \

View File

@ -1,4 +1,6 @@
sbin/ipfm
etc/ipfm.conf
man/man5/ipfm.conf.5.gz
man/man8/ipfm.8.gz
sbin/ipfm
@exec mkdir -p /var/log/ipfm
@unexec rmdir /var/log/ipfm 2>/dev/null || echo "The logs will be left in /var/log/ipfm after the port is deinstalled."