From owner-svn-ports-head@freebsd.org Sun Aug 18 11:31:11 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA206C46E8; Sun, 18 Aug 2019 11:31:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46BFHg5vHZz4RJW; Sun, 18 Aug 2019 11:31:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC4091528; Sun, 18 Aug 2019 11:31:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7IBVBLd001320; Sun, 18 Aug 2019 11:31:11 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7IBVAlW001315; Sun, 18 Aug 2019 11:31:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908181131.x7IBVAlW001315@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 18 Aug 2019 11:31:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509202 - in head/net: . socketapi X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net: . socketapi X-SVN-Commit-Revision: 509202 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 11:31:12 -0000 Author: pi Date: Sun Aug 18 11:31:10 2019 New Revision: 509202 URL: https://svnweb.freebsd.org/changeset/ports/509202 Log: New port: net/socketapi SocketAPI is the socket API library for the SCTPLIB user-space SCTP implementation. WWW: https://www.uni-due.de/~be0001/sctplib/ PR: 239848 Submitted by: Thomas Dreibholz Added: head/net/socketapi/ head/net/socketapi/Makefile (contents, props changed) head/net/socketapi/distinfo (contents, props changed) head/net/socketapi/pkg-descr (contents, props changed) head/net/socketapi/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 18 11:11:21 2019 (r509201) +++ head/net/Makefile Sun Aug 18 11:31:10 2019 (r509202) @@ -1383,6 +1383,7 @@ SUBDIR += sobby SUBDIR += socat SUBDIR += sock + SUBDIR += socketapi SUBDIR += socketbind SUBDIR += socketpipe SUBDIR += socketw Added: head/net/socketapi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketapi/Makefile Sun Aug 18 11:31:10 2019 (r509202) @@ -0,0 +1,26 @@ +# Created by: Thomas Dreibholz +# $FreeBSD$ + +PORTNAME= socketapi +PORTVERSION= 2.2.16 +CATEGORIES= net +MASTER_SITES= https://www.uni-due.de/~be0001/sctplib/download/ + +MAINTAINER= dreibh@iem.uni-due.de +COMMENT= Socket API library for the SCTPLIB user-space SCTP implementation + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libsctplib.so:net/sctplib + +USES= gnome libtool pkgconfig +USE_LDCONFIG= yes +USE_GNOME= glib20 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-sctp-over-udp +LDFLAGS+= -L${LOCALBASE}/lib -lsctplib +INSTALL_TARGET= install-strip + +.include Added: head/net/socketapi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketapi/distinfo Sun Aug 18 11:31:10 2019 (r509202) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565784291 +SHA256 (socketapi-2.2.16.tar.gz) = f29d324e1b7b2743d80d4c493c56d56eebdd1166ae55426dca2829cc9381e4a8 +SIZE (socketapi-2.2.16.tar.gz) = 572446 Added: head/net/socketapi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketapi/pkg-descr Sun Aug 18 11:31:10 2019 (r509202) @@ -0,0 +1,4 @@ +SocketAPI is the socket API library for the SCTPLIB user-space +SCTP implementation. + +WWW: https://www.uni-due.de/~be0001/sctplib/ Added: head/net/socketapi/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketapi/pkg-plist Sun Aug 18 11:31:10 2019 (r509202) @@ -0,0 +1,42 @@ +include/cppsocketapi/breakdetector.h +include/cppsocketapi/condition.h +include/cppsocketapi/condition.icc +include/cppsocketapi/internetaddress.h +include/cppsocketapi/internetaddress.icc +include/cppsocketapi/internetflow.h +include/cppsocketapi/internetflow.icc +include/cppsocketapi/multitimerthread.h +include/cppsocketapi/multitimerthread.icc +include/cppsocketapi/portableaddress.h +include/cppsocketapi/portableaddress.icc +include/cppsocketapi/randomizer.h +include/cppsocketapi/randomizer.icc +include/cppsocketapi/socketaddress.h +include/cppsocketapi/socketaddress.icc +include/cppsocketapi/synchronizable.h +include/cppsocketapi/synchronizable.icc +include/cppsocketapi/tdin6.h +include/cppsocketapi/tdmessage.h +include/cppsocketapi/tdmessage.icc +include/cppsocketapi/tdsocket.h +include/cppsocketapi/tdsocket.icc +include/cppsocketapi/tdstrings.h +include/cppsocketapi/tdstrings.icc +include/cppsocketapi/tdsystem.h +include/cppsocketapi/thread.h +include/cppsocketapi/thread.icc +include/cppsocketapi/timedthread.h +include/cppsocketapi/timedthread.icc +include/cppsocketapi/tools.h +include/cppsocketapi/tools.icc +include/cppsocketapi/unixaddress.h +include/cppsocketapi/unixaddress.icc +include/ext_socket.h +lib/libcppsocketapi.a +lib/libcppsocketapi.so +lib/libcppsocketapi.so.2 +lib/libcppsocketapi.so.2.0.2 +lib/libsctpsocket.a +lib/libsctpsocket.so +lib/libsctpsocket.so.2 +lib/libsctpsocket.so.2.0.2