diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-05-05 21:31:37 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-05-05 21:31:37 +0000 |
commit | a8ccfa6ad334f1f8f16c5900bdceb3209fcd25ac (patch) | |
tree | 05969928576cbb72f31bc57980e1bb1eacdee7ba /sysutils | |
parent | fdf1e857b15609e370f967ea40cda135186993e8 (diff) |
Fix a typo in the man page
PR: 96521
Submitted by: laa@laa.zp.ua <laa@laa.zp.ua>
Approved by: W. M. Shandruk <walt@erudition.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=161446
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/monitord/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sysutils/monitord/Makefile b/sysutils/monitord/Makefile index 02a0dea49306..b56e68657b9a 100644 --- a/sysutils/monitord/Makefile +++ b/sysutils/monitord/Makefile @@ -7,7 +7,7 @@ PORTNAME= monitord PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.erudition.net/pub/monitord/ @@ -16,7 +16,11 @@ COMMENT= Service that restarts other standalone services MAN8= monitord.8 +post-patch: + @${REINPLACE_CMD} -e 's|syslodg|syslogd|' ${WRKSRC}/${MAN8} + post-install: - @${INSTALL_DATA} ${WRKSRC}/monitord.conf.sample ${PREFIX}/etc/monitord.conf.sample + @${INSTALL_DATA} ${WRKSRC}/monitord.conf.sample \ + ${PREFIX}/etc/monitord.conf.sample .include <bsd.port.mk> |