svn commit: r411158 - in head/net: . socketw
Mark Felder
feld at FreeBSD.org
Tue Mar 15 15:19:47 UTC 2016
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 at 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 at mailoo.org>
+# $FreeBSD$
+
+PORTNAME= socketw
+PORTVERSION= 1.0.0.20151501
+CATEGORIES= net
+
+MAINTAINER= monwarez at 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
More information about the svn-ports-all
mailing list