From cb99d6c056cf3ec07cfa924b03054779cff40f72 Mon Sep 17 00:00:00 2001 From: will Date: Tue, 17 Apr 2001 18:06:49 +0000 Subject: Add ipcad 2.0, IP accounting daemon simulating Cisco ip accounting. PR: 26585 Submitted by: vlm@spelio.net.ru --- net-mgmt/ipcad/Makefile | 22 ++++++++++++++++++++++ net-mgmt/ipcad/distinfo | 1 + net-mgmt/ipcad/pkg-comment | 1 + net-mgmt/ipcad/pkg-descr | 12 ++++++++++++ net-mgmt/ipcad/pkg-plist | 4 ++++ net/Makefile | 1 + net/ipcad/Makefile | 22 ++++++++++++++++++++++ net/ipcad/distinfo | 1 + net/ipcad/pkg-comment | 1 + net/ipcad/pkg-descr | 12 ++++++++++++ net/ipcad/pkg-plist | 4 ++++ 11 files changed, 81 insertions(+) create mode 100644 net-mgmt/ipcad/Makefile create mode 100644 net-mgmt/ipcad/distinfo create mode 100644 net-mgmt/ipcad/pkg-comment create mode 100644 net-mgmt/ipcad/pkg-descr create mode 100644 net-mgmt/ipcad/pkg-plist create mode 100644 net/ipcad/Makefile create mode 100644 net/ipcad/distinfo create mode 100644 net/ipcad/pkg-comment create mode 100644 net/ipcad/pkg-descr create mode 100644 net/ipcad/pkg-plist diff --git a/net-mgmt/ipcad/Makefile b/net-mgmt/ipcad/Makefile new file mode 100644 index 0000000..480d6c1 --- /dev/null +++ b/net-mgmt/ipcad/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: ipcad +# Date created: 15 April 2001 +# Whom: vlm@spelio.net.ru +# +# $FreeBSD$ +# + +PORTNAME= ipcad +PORTVERSION= 2.0 +CATEGORIES= net +MASTER_SITES= http://www.spelio.net.ru/soft/ + +MAINTAINER= vlm@spelio.net.ru + +post-install: + strip ${PREFIX}/bin/ipcad +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ipcad + ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/ipcad +.endif + +.include diff --git a/net-mgmt/ipcad/distinfo b/net-mgmt/ipcad/distinfo new file mode 100644 index 0000000..4023e82 --- /dev/null +++ b/net-mgmt/ipcad/distinfo @@ -0,0 +1 @@ +MD5 (ipcad-2.0.tar.gz) = fe1bbed928e89b78e46e4595cf47ff3b diff --git a/net-mgmt/ipcad/pkg-comment b/net-mgmt/ipcad/pkg-comment new file mode 100644 index 0000000..ac6ad94 --- /dev/null +++ b/net-mgmt/ipcad/pkg-comment @@ -0,0 +1 @@ +IP accounting daemon simulating Cisco ip accounting diff --git a/net-mgmt/ipcad/pkg-descr b/net-mgmt/ipcad/pkg-descr new file mode 100644 index 0000000..0d5d1a0 --- /dev/null +++ b/net-mgmt/ipcad/pkg-descr @@ -0,0 +1,12 @@ +IPCAD is an ip accounting daemon. It uses bpf or pcap to access interfaces +and gather ip statistics. Gathered numbers are arranged to form a +address-to-address flow pairs and than can be accessed via rsh in Cisco +fashion. + +See README file for details. + +WWW: http://www.spelio.net.ru/soft/ + +-- +Lev Walkin +vlm@spelio.net.ru diff --git a/net-mgmt/ipcad/pkg-plist b/net-mgmt/ipcad/pkg-plist new file mode 100644 index 0000000..3ac015c --- /dev/null +++ b/net-mgmt/ipcad/pkg-plist @@ -0,0 +1,4 @@ +bin/ipcad +etc/ipcad.conf.sample +%%PORTDOCS%%share/doc/ipcad/README +@dirrm share/doc/ipcad diff --git a/net/Makefile b/net/Makefile index 50c3200..ba66139 100644 --- a/net/Makefile +++ b/net/Makefile @@ -133,6 +133,7 @@ SUBDIR += icqlib0 SUBDIR += icqnix SUBDIR += ip-tun + SUBDIR += ipcad SUBDIR += ipcheck SUBDIR += ipfm SUBDIR += iplog diff --git a/net/ipcad/Makefile b/net/ipcad/Makefile new file mode 100644 index 0000000..480d6c1 --- /dev/null +++ b/net/ipcad/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: ipcad +# Date created: 15 April 2001 +# Whom: vlm@spelio.net.ru +# +# $FreeBSD$ +# + +PORTNAME= ipcad +PORTVERSION= 2.0 +CATEGORIES= net +MASTER_SITES= http://www.spelio.net.ru/soft/ + +MAINTAINER= vlm@spelio.net.ru + +post-install: + strip ${PREFIX}/bin/ipcad +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ipcad + ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/ipcad +.endif + +.include diff --git a/net/ipcad/distinfo b/net/ipcad/distinfo new file mode 100644 index 0000000..4023e82 --- /dev/null +++ b/net/ipcad/distinfo @@ -0,0 +1 @@ +MD5 (ipcad-2.0.tar.gz) = fe1bbed928e89b78e46e4595cf47ff3b diff --git a/net/ipcad/pkg-comment b/net/ipcad/pkg-comment new file mode 100644 index 0000000..ac6ad94 --- /dev/null +++ b/net/ipcad/pkg-comment @@ -0,0 +1 @@ +IP accounting daemon simulating Cisco ip accounting diff --git a/net/ipcad/pkg-descr b/net/ipcad/pkg-descr new file mode 100644 index 0000000..0d5d1a0 --- /dev/null +++ b/net/ipcad/pkg-descr @@ -0,0 +1,12 @@ +IPCAD is an ip accounting daemon. It uses bpf or pcap to access interfaces +and gather ip statistics. Gathered numbers are arranged to form a +address-to-address flow pairs and than can be accessed via rsh in Cisco +fashion. + +See README file for details. + +WWW: http://www.spelio.net.ru/soft/ + +-- +Lev Walkin +vlm@spelio.net.ru diff --git a/net/ipcad/pkg-plist b/net/ipcad/pkg-plist new file mode 100644 index 0000000..3ac015c --- /dev/null +++ b/net/ipcad/pkg-plist @@ -0,0 +1,4 @@ +bin/ipcad +etc/ipcad.conf.sample +%%PORTDOCS%%share/doc/ipcad/README +@dirrm share/doc/ipcad -- cgit v1.1