1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/net/icmpinfo/Makefile
Dmitry Marakasov 5c4f03ab8a - Add LICENSE
- Fix manpage installation
- Switch to options helpers
2015-12-31 10:57:53 +00:00

31 lines
705 B
Makefile

# Created by: David O'Brien (obrien@FreeBSD.org)
# $FreeBSD$
PORTNAME= icmpinfo
PORTVERSION= 1.11
PORTREVISION= 1
CATEGORIES= net sysutils
MASTER_SITES= SUNSITE/system/network/admin
MAINTAINER= ports@FreeBSD.org
COMMENT= Looks at the icmp messages received by the host
LICENSE= MIT
ALL_TARGET= # empty
PLIST_FILES= "@(,,4555) bin/icmpinfo" \
man/man1/icmpinfo.1.gz
PORTDOCS= README
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/icmpinfo ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/icmpinfo.man ${STAGEDIR}${MAN1PREFIX}/man/man1/icmpinfo.1
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>