svn commit: r491126 - in head/net: . microsocks

Tobias Kortkamp tobik at FreeBSD.org
Fri Jan 25 07:08:11 UTC 2019


Author: tobik
Date: Fri Jan 25 07:08:09 2019
New Revision: 491126
URL: https://svnweb.freebsd.org/changeset/ports/491126

Log:
  New port: net/microsocks
  
  MicroSocks is a SOCKS5 service that you can run on your remote boxes
  to tunnel connections through them, if for some reason SSH does not
  cut it for you.
  
  WWW: https://github.com/rofl0r/microsocks
  
  PR:		233941
  Submitted by:	neel at neelc.org

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Jan 25 00:57:19 2019	(r491125)
+++ head/net/Makefile	Fri Jan 25 07:08:09 2019	(r491126)
@@ -456,6 +456,7 @@
     SUBDIR += mgen
     SUBDIR += micro_inetd
     SUBDIR += micro_proxy
+    SUBDIR += microsocks
     SUBDIR += minidlna
     SUBDIR += mininet
     SUBDIR += minisapserver

Added: head/net/microsocks/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/microsocks/Makefile	Fri Jan 25 07:08:09 2019	(r491126)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	microsocks
+PORTVERSION=	1.0.1
+CATEGORIES=	net
+MASTER_SITES=	http://ftp.barfooze.de/pub/sabotage/tarballs/
+
+MAINTAINER=	neel at neelc.org
+COMMENT=	Multithreaded, small, efficient SOCKS5 server
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		tar:xz
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/net/microsocks/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/microsocks/distinfo	Fri Jan 25 07:08:09 2019	(r491126)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1548399778
+SHA256 (microsocks-1.0.1.tar.xz) = 389f60fb1851601236017acda78f8650b278d2cdcd91e7843416f0f1ad521c70
+SIZE (microsocks-1.0.1.tar.xz) = 8056

Added: head/net/microsocks/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/microsocks/pkg-descr	Fri Jan 25 07:08:09 2019	(r491126)
@@ -0,0 +1,5 @@
+MicroSocks is a SOCKS5 service that you can run on your remote boxes
+to tunnel connections through them, if for some reason SSH does not
+cut it for you.
+
+WWW: https://github.com/rofl0r/microsocks


More information about the svn-ports-head mailing list