svn commit: r410205 - in head/net-mgmt: . bgpuma

Kurt Jaeger pi at FreeBSD.org
Sat Mar 5 19:57:25 UTC 2016


Author: pi
Date: Sat Mar  5 19:57:23 2016
New Revision: 410205
URL: https://svnweb.freebsd.org/changeset/ports/410205

Log:
  New port: net-mgmt/bgpuma
  
  bgpuma is a program for searching BGP update files created by MRT
  or Zebra/Quagga for CIDR blocks and/or Autonomous Systems.  Given
  a list of CIDR blocks, it looks for those CIDR blocks which match
  the list, are contained in the list, or are contained by the list.
  For Autonomous Systems, it looks for routes that are announced by
  the given system.
  
  It is based on the library created by RIPE called bgpdump and SiLK,
  created by CERT.
  
  WWW: https://github.com/cmu-sei/bgpuma

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

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Sat Mar  5 19:23:13 2016	(r410204)
+++ head/net-mgmt/Makefile	Sat Mar  5 19:57:23 2016	(r410205)
@@ -17,6 +17,7 @@
     SUBDIR += bandwidthd
     SUBDIR += bgpq
     SUBDIR += bgpq3
+    SUBDIR += bgpuma
     SUBDIR += bpft
     SUBDIR += braa
     SUBDIR += bsnmp-jails

Added: head/net-mgmt/bgpuma/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpuma/Makefile	Sat Mar  5 19:57:23 2016	(r410205)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	bgpuma
+PORTVERSION=	20151209
+CATEGORIES=	net-mgmt
+
+MAINTAINER=	pi at FreeBSD.org
+COMMENT=	Searching BGP update files
+
+LICENSE=	BSD
+
+LIB_DEPENDS=	libbgpdump.so:${PORTSDIR}/net/libbgpdump \
+		libsilk.so:${PORTSDIR}/security/silktools
+
+USES=		autoreconf libtool
+USE_GITHUB=	yes
+GH_ACCOUNT=	cmu-sei
+GH_TAGNAME=	a29b2a7
+GNU_CONFIGURE=	yes
+CFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+PLIST_FILES=	bin/bgpuma man/man1/bgpuma.1.gz
+
+.include <bsd.port.mk>

Added: head/net-mgmt/bgpuma/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpuma/distinfo	Sat Mar  5 19:57:23 2016	(r410205)
@@ -0,0 +1,2 @@
+SHA256 (cmu-sei-bgpuma-20151209-a29b2a7_GH0.tar.gz) = 77b8ae47fcae073d0600aa96d62a0a94bb61bf4a6ffb4743ca7ba067bcfb31d2
+SIZE (cmu-sei-bgpuma-20151209-a29b2a7_GH0.tar.gz) = 26516

Added: head/net-mgmt/bgpuma/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpuma/pkg-descr	Sat Mar  5 19:57:23 2016	(r410205)
@@ -0,0 +1,11 @@
+bgpuma is a program for searching BGP update files created by MRT
+or Zebra/Quagga for CIDR blocks and/or Autonomous Systems.  Given
+a list of CIDR blocks, it looks for those CIDR blocks which match
+the list, are contained in the list, or are contained by the list.
+For Autonomous Systems, it looks for routes that are announced by
+the given system.
+
+It is based on the library created by RIPE called bgpdump and SiLK,
+created by CERT.  
+
+WWW: https://github.com/cmu-sei/bgpuma


More information about the svn-ports-all mailing list