Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Mar 2016 12:49:11 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411158 - in head/net: . socketw
Message-ID:  <201603151249.u2FCnBCu021587@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue Mar 15 12:49:11 2016
New Revision: 411158
URL: https://svnweb.freebsd.org/changeset/ports/411158

Log:
  SocketW is a cross platform (Linux/FreeBSD/Unix/Win32) streaming socket C++
  library designed to be easy to use. It supports Unix sockets and TCP/IP sockets
  with optional SSL/TLS (OpenSSL) support. SocketW allows you to write portable
  and secure network applications quickly without needing to spend time learning
  low-level system functions or reading OpenSSL manuals.
  
  WWW: https://github.com/RigsOfRods/socketw
  
  PR:		206496
  Submitted by:	Thibault Payet <monwarez@mailoo.org>

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Mar 15 12:37:33 2016	(r411157)
+++ head/net/Makefile	Tue Mar 15 12:49:11 2016	(r411158)
@@ -1209,6 +1209,7 @@
     SUBDIR += socat
     SUBDIR += socketbind
     SUBDIR += socketpipe
+    SUBDIR += socketw
     SUBDIR += sofia-sip
     SUBDIR += spideroak
     SUBDIR += splatd

Added: head/net/socketw/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/socketw/Makefile	Tue Mar 15 12:49:11 2016	(r411158)
@@ -0,0 +1,19 @@
+# Created by: Thibault Payet <monwarez@mailoo.org>
+# $FreeBSD$
+
+PORTNAME=	socketw
+PORTVERSION=	1.0.0.20151501
+CATEGORIES=	net
+
+MAINTAINER=	monwarez@mailoo.org
+COMMENT=	SocketW is a cross platform streaming socket C++
+
+LICENSE=	GPLv2+
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	RigsOfRods
+GH_TAGNAME=	6a05e12
+
+USES=		cmake
+
+.include <bsd.port.mk>

Added: head/net/socketw/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/socketw/distinfo	Tue Mar 15 12:49:11 2016	(r411158)
@@ -0,0 +1,2 @@
+SHA256 (RigsOfRods-socketw-1.0.0.20151501-6a05e12_GH0.tar.gz) = bc5873854e283e3d33673c8d8db00a6b2a99f8f802b4ac628822c4257eac860a
+SIZE (RigsOfRods-socketw-1.0.0.20151501-6a05e12_GH0.tar.gz) = 48483

Added: head/net/socketw/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/socketw/pkg-descr	Tue Mar 15 12:49:11 2016	(r411158)
@@ -0,0 +1,7 @@
+SocketW is a cross platform (Linux/FreeBSD/Unix/Win32) streaming socket C++
+library designed to be easy to use. It supports Unix sockets and TCP/IP sockets
+with optional SSL/TLS (OpenSSL) support. SocketW allows you to write portable
+and secure network applications quickly without needing to spend time learning
+low-level system functions or reading OpenSSL manuals.
+
+WWW: https://github.com/RigsOfRods/socketw

Added: head/net/socketw/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/socketw/pkg-plist	Tue Mar 15 12:49:11 2016	(r411158)
@@ -0,0 +1,8 @@
+include/SocketW.h
+include/sw_base.h
+include/sw_config.h
+include/sw_inet.h
+include/sw_internal.h
+include/sw_ssl.h
+include/sw_unix.h
+lib/libSocketW.a



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