Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Aug 2016 18:11:19 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r420990 - in head/net: . sbm
Message-ID:  <201608271811.u7RIBJ7B067660@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sat Aug 27 18:11:18 2016
New Revision: 420990
URL: https://svnweb.freebsd.org/changeset/ports/420990

Log:
  New port: net/sbm
  
  sbm is a simple bandwidth monitor.
  
  Besides the basic bandwith monitor it comes with two scripts.
  sbm-rt-plot can be used for realtime bandwidth graphs and sbm-plot can
  be used to generate static graphs for bandwith usage over a period of
  time.
  
  WWW: http://git.2f30.org/sbm/
  
  PR:		211595
  Submitted by:	Tobias Kortkamp <t@tobik.me>

Added:
  head/net/sbm/
  head/net/sbm/Makefile   (contents, props changed)
  head/net/sbm/distinfo   (contents, props changed)
  head/net/sbm/pkg-descr   (contents, props changed)
  head/net/sbm/pkg-message   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Aug 27 17:59:18 2016	(r420989)
+++ head/net/Makefile	Sat Aug 27 18:11:18 2016	(r420990)
@@ -1209,6 +1209,7 @@
     SUBDIR += samba44
     SUBDIR += samplicator
     SUBDIR += sbd
+    SUBDIR += sbm
     SUBDIR += scamper
     SUBDIR += scapy
     SUBDIR += scnc

Added: head/net/sbm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/sbm/Makefile	Sat Aug 27 18:11:18 2016	(r420990)
@@ -0,0 +1,28 @@
+# Created by: Tobias Kortkamp <t@tobik.me>
+# $FreeBSD$
+
+PORTNAME=	sbm
+PORTVERSION=	0.8
+CATEGORIES=	net
+MASTER_SITES=	http://dl.2f30.org/releases/
+
+MAINTAINER=	t@tobik.me
+COMMENT=	Simple bandwidth monitor
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+MAKE_ARGS=	CFLAGS="${CFLAGS}"
+
+PLIST_FILES=	bin/sbm \
+		bin/sbm-plot \
+		bin/sbm-rt-plot \
+		man/man1/sbm.1.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/sbm ${STAGEDIR}${PREFIX}/bin/
+	${INSTALL_SCRIPT} ${WRKSRC}/sbm-plot ${WRKSRC}/sbm-rt-plot \
+		${STAGEDIR}${PREFIX}/bin/
+	${INSTALL_MAN} ${WRKSRC}/sbm.1 ${STAGEDIR}${MANPREFIX}/man/man1/
+
+.include <bsd.port.mk>

Added: head/net/sbm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/sbm/distinfo	Sat Aug 27 18:11:18 2016	(r420990)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1470401983
+SHA256 (sbm-0.8.tar.gz) = c0963b0040db7966fd68a00432fadd4e8b823f3fd3da87319ee48fa7451a3b4c
+SIZE (sbm-0.8.tar.gz) = 5012

Added: head/net/sbm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/sbm/pkg-descr	Sat Aug 27 18:11:18 2016	(r420990)
@@ -0,0 +1,8 @@
+sbm is a simple bandwidth monitor.
+
+Besides the basic bandwith monitor it comes with two scripts.
+sbm-rt-plot can be used for realtime bandwidth graphs and sbm-plot can
+be used to generate static graphs for bandwith usage over a period of
+time.
+
+WWW: http://git.2f30.org/sbm/

Added: head/net/sbm/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/sbm/pkg-message	Sat Aug 27 18:11:18 2016	(r420990)
@@ -0,0 +1 @@
+Both sbm-plot and sbm-rt-plot require that math/gnuplot is installed.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608271811.u7RIBJ7B067660>