mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
02b27f2b4f
Changelog: Oct-18-2013: 3.30 - exit if printf() fails. Important for detecting streaming errors. Thanks to Nick Hilliard. - add tunnel structures (http://sflow.org/sflow_tunnels.txt) PR: ports/183218 Submitted by: Nick Hilliard <nick@foobar.org>
29 lines
736 B
Makefile
29 lines
736 B
Makefile
# Created by: Gregory Edigarov <greg@bestnet.kharkov.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sflowtool
|
|
PORTVERSION= 3.30
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.inmon.com/bin/
|
|
|
|
MAINTAINER= ohauer@FreeBSD.org
|
|
COMMENT= sFlow capture and sFlow-to-NetFlow conversion tool
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/sflowtool
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= README ipTopTalkers ipTrafficMatrix sflowRRDChart.cgi \
|
|
sflowRRDLoad sflowenable
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/scripts/|} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|