diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2019-08-18 10:50:13 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2019-08-18 10:50:13 +0000 |
commit | 80a9e9324960519f13a0e44159e11d6006d3aae4 (patch) | |
tree | 4aaa70ca838bf06219718a2903e286681393215a | |
parent | 4e3233bbc83a0fbd4f41a38365bcbabfe8594ce1 (diff) | |
download | freebsd-ports-80a9e9324960519f13a0e44159e11d6006d3aae4.zip |
New port: net/tsctp
TSCTP is an SCTP test tool. Its purpose is to perform basic SCTP
functionality tests to check implementations interoperability and
to verify that the SCTP stack is working.
WWW: https://www.uni-due.de/~be0001/tsctp/
PR: 239846
Submitted by: dreibh@iem.uni-due.de
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/tsctp/Makefile | 20 | ||||
-rw-r--r-- | net/tsctp/distinfo | 3 | ||||
-rw-r--r-- | net/tsctp/pkg-descr | 5 |
4 files changed, 29 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index dd9167c3e3ed..c55b65e53297 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1460,6 +1460,7 @@ SUBDIR += tramp SUBDIR += trickle SUBDIR += tsclient + SUBDIR += tsctp SUBDIR += tshark SUBDIR += tshark-lite SUBDIR += tsocks diff --git a/net/tsctp/Makefile b/net/tsctp/Makefile new file mode 100644 index 000000000000..53cdd8d816fe --- /dev/null +++ b/net/tsctp/Makefile @@ -0,0 +1,20 @@ +# Created by: Thomas Dreibholz <dreibh@iem.uni-due.de> +# $FreeBSD$ + +PORTNAME= tsctp +PORTVERSION= 0.7.3 +CATEGORIES= net +MASTER_SITES= https://www.uni-due.de/~be0001/tsctp/download/ + +MAINTAINER= dreibh@iem.uni-due.de +COMMENT= SCTP Test Tool + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:xz cmake + +PLIST_FILES= bin/tsctp man/man1/tsctp.1.gz +CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man + +.include <bsd.port.mk> diff --git a/net/tsctp/distinfo b/net/tsctp/distinfo new file mode 100644 index 000000000000..7ae1f9ba0a9b --- /dev/null +++ b/net/tsctp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1565194937 +SHA256 (tsctp-0.7.3.tar.xz) = 2084beb0f6fb8ae166b0044751f3b9b7feda5a87bd9446d5657560d2c72e6160 +SIZE (tsctp-0.7.3.tar.xz) = 49536 diff --git a/net/tsctp/pkg-descr b/net/tsctp/pkg-descr new file mode 100644 index 000000000000..b7a17f701dd6 --- /dev/null +++ b/net/tsctp/pkg-descr @@ -0,0 +1,5 @@ +TSCTP is an SCTP test tool. Its purpose is to perform basic SCTP +functionality tests to check implementations interoperability and +to verify that the SCTP stack is working. + +WWW: https://www.uni-due.de/~be0001/tsctp/ |