1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Nepim stands for network pipemeter, a tool for measuring available bandwidth

between hosts. nepim is also useful to generate network traffic for testing
purposes.  Nepim operates in client/server mode, is able to handle multiple
parallel traffic streams, reports periodic partial statistics along the
testing, and supports IPv6.

PR:		ports/86349
Submitted by:	Marcin Jessa <yazzy@yazzy.org>
This commit is contained in:
Pav Lucistnik 2005-09-22 09:17:21 +00:00
parent 9b8b9c60e2
commit c5379e9cc6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=143336
5 changed files with 56 additions and 0 deletions

View File

@ -419,6 +419,7 @@
SUBDIR += ncp
SUBDIR += ncplib
SUBDIR += nemesis
SUBDIR += nepim
SUBDIR += net-http
SUBDIR += netatalk
SUBDIR += netboot

26
net/nepim/Makefile Normal file
View File

@ -0,0 +1,26 @@
# New ports collection makefile for: nepim
# Date created: 19th September 2005
# Whom: Marcin Jessa <yazzy@yazzy.org>
# $FreeBSD$
PORTNAME= nepim
PORTVERSION= 0.13
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SAVANNAH} \
http://www.yazzy.org/ports/
MASTER_SITE_SUBDIR= nepim
MAINTAINER= yazzy@yazzy.org
COMMENT= Tool for measuring available bandwidth between hosts
LIB_DEPENDS= oop.4:${PORTSDIR}/devel/liboop
USE_GMAKE= yes
ALL_TARGET= default
WRKSRC= ${WRKDIR}/${DISTNAME}/src
PLIST_FILES= bin/nepim
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/nepim ${PREFIX}/bin
.include <bsd.port.mk>

2
net/nepim/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (nepim-0.13.tar.gz) = 532bf7067619771ecf3f12a33bf860c6
SIZE (nepim-0.13.tar.gz) = 39917

View File

@ -0,0 +1,17 @@
--- Makefile.orig Tue Sep 13 01:41:41 2005
+++ Makefile Thu Sep 22 11:00:05 2005
@@ -2,12 +2,12 @@
# $Id: Makefile,v 1.18 2005/09/12 23:41:41 evertonm Exp $
#
-OOP_BASE = /usr/local/oop
+OOP_BASE = ${LOCALBASE}
OOP_INC = $(OOP_BASE)/include
OOP_LIB = $(OOP_BASE)/lib
CC = gcc
-CFLAGS = -Wall -g -ggdb -I$(OOP_INC) -DHAVE_IPV6_MREQ
+CFLAGS += -Wall -I$(OOP_INC) -DHAVE_IPV6_MREQ
LDFLAGS = -L$(OOP_LIB) -loop
PLATFORM=$(shell uname)

10
net/nepim/pkg-descr Normal file
View File

@ -0,0 +1,10 @@
Nepim stands for network pipemeter, a tool for measuring available bandwidth
between hosts. nepim is also useful to generate network traffic for testing
purposes. Nepim operates in client/server mode, is able to handle multiple
parallel traffic streams, reports periodic partial statistics along the
testing, and supports IPv6.
WWW: http://www.nongnu.org/nepim/
- Marcin Jessa
yazzy@yazzy.org