diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-08-11 17:38:05 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-08-11 17:38:05 +0000 |
commit | 7257596e98858c33b6ef25a362542765eca1eef7 (patch) | |
tree | dc2506aff47ccce9ff320d79d94b38ea712dea90 /net-mgmt/ehnt/Makefile | |
parent | Remove NO_LATEST_LINK, this is stable version now (diff) |
New port: net/ehnt - A simple Cisco NetFlow data collector
This is a lightweight but well-featured tool for collecting
NetFlow version 5 packets from Cisco routers.
The implementation includes a simple UDP-to-TCP converting server,
which may be used to replicate NetFlow data to multiple clients.
WWW: http://ehnt.sourceforge.net/
PR: ports/29459
Submitted by: Dmitry Morozovsky <marck@rinet.ru>
Diffstat (limited to 'net-mgmt/ehnt/Makefile')
-rw-r--r-- | net-mgmt/ehnt/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net-mgmt/ehnt/Makefile b/net-mgmt/ehnt/Makefile new file mode 100644 index 000000000000..e8d40aa8285b --- /dev/null +++ b/net-mgmt/ehnt/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: ehnt +# Date created: 2 August 2001 +# Whom: marck@rinet.ru +# +# $FreeBSD$ +# + +PORTNAME= ehnt +PORTVERSION= 0.2.3 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}_data-${PORTVERSION}${EXTRACT_SUFX} + +MAINTAINER= marck@rinet.ru + +MAN1= ehnt.1 +MAN8= ehntserv.8 + +do-install: + ${MKDIR} ${PREFIX}/share/ehnt + ${MKDIR} ${PREFIX}/share/doc/ehnt + ${INSTALL_PROGRAM} ${WRKSRC}/ehnt ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/ehntserv ${PREFIX}/sbin/ + ${INSTALL_SCRIPT} ${FILESDIR}/ehntserv.sh.sample ${PREFIX}/etc/rc.d/ + ${INSTALL_DATA} ${WRKSRC}/asnc.txt ${PREFIX}/share/ehnt/ + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ehnt/ + ${INSTALL_MAN} ${FILESDIR}/ehnt.1 ${PREFIX}/man/man1/ + ${INSTALL_MAN} ${FILESDIR}/ehntserv.8 ${PREFIX}/man/man8/ + +.include <bsd.port.mk> |