Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Nov 2020 08:06:18 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554346 - in head/net: . gsocket
Message-ID:  <202011070806.0A786IGA067516@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Sat Nov  7 08:06:18 2020
New Revision: 554346
URL: https://svnweb.freebsd.org/changeset/ports/554346

Log:
  Add net/gsocket
  
  Allows two users behind NAT/Firewall to establish a TCP connection.
  
  PR:		250917
  Submitted by:	Andrew Reiter <arr@watson.org>

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Nov  7 07:29:33 2020	(r554345)
+++ head/net/Makefile	Sat Nov  7 08:06:18 2020	(r554346)
@@ -206,6 +206,7 @@
     SUBDIR += grsync
     SUBDIR += gscloud
     SUBDIR += gsk
+    SUBDIR += gsocket
     SUBDIR += gspoof
     SUBDIR += gssdp
     SUBDIR += gstreamer-plugins-libmms

Added: head/net/gsocket/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gsocket/Makefile	Sat Nov  7 08:06:18 2020	(r554346)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	gsocket
+PORTVERSION=	1.4.22
+CATEGORIES=	net
+
+MAINTAINER=	arr@watson.org
+COMMENT=	Allows two users behind NAT/Firewall to establish a TCP connection
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		autoreconf shebangfix ssl
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	hackerschoice
+GH_TAGNAME=	v${PORTVERSION}
+
+GNU_CONFIGURE=	yes
+
+INSTALL_TARGET=	install-strip
+
+SHEBANG_FILES=	${WRKSRC}/tools/blitz \
+		${WRKSRC}/tools/gs_funcs \
+		${WRKSRC}/tools/gs-mount \
+		${WRKSRC}/tools/gs-sftp
+
+.include <bsd.port.mk>

Added: head/net/gsocket/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gsocket/distinfo	Sat Nov  7 08:06:18 2020	(r554346)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1604583578
+SHA256 (hackerschoice-gsocket-1.4.22-v1.4.22_GH0.tar.gz) = b900a98e05eac2f5bde7256624263555f5e3c62530172f3338bbd2331986bf40
+SIZE (hackerschoice-gsocket-1.4.22-v1.4.22_GH0.tar.gz) = 81816

Added: head/net/gsocket/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gsocket/pkg-descr	Sat Nov  7 08:06:18 2020	(r554346)
@@ -0,0 +1,7 @@
+Global Socket allows two users behind NAT/Firewall to establish a TCP
+connection with each other. Securely. Abandon the thinking that an IP Address
+is needed to communicate with somebody. Instead start thinking that two users
+should be able to communicate with each other as long as they know the same
+secret (key/password). The Global Socket library handles the rest.
+
+WWW: https://github.com/hackerschoice/gsocket

Added: head/net/gsocket/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gsocket/pkg-plist	Sat Nov  7 08:06:18 2020	(r554346)
@@ -0,0 +1,10 @@
+bin/blitz
+bin/gs_funcs
+bin/gs_uchroot_so
+bin/gs-mount
+bin/gs-netcat
+bin/gs-sftp
+man/man1/blitz.1.gz
+man/man1/gs-mount.1.gz
+man/man1/gs-netcat.1.gz
+man/man1/gs-sftp.1.gz



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