Date: Thu, 13 Oct 2016 14:31:38 +0000 (UTC) From: Kris Moore <kmoore@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423922 - in head/security: . ngrok Message-ID: <201610131431.u9DEVcA7079532@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kmoore Date: Thu Oct 13 14:31:38 2016 New Revision: 423922 URL: https://svnweb.freebsd.org/changeset/ports/423922 Log: - Add new port security/ngrok Expose local servers behind NATs and firewalls to the public internet over secure tunnels. URL: https://ngrok.com PR: 212883 Submitted by: jhixson@gmail.com Added: head/security/ngrok/ head/security/ngrok/Makefile (contents, props changed) head/security/ngrok/distinfo (contents, props changed) head/security/ngrok/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Oct 13 14:28:48 2016 (r423921) +++ head/security/Makefile Thu Oct 13 14:31:38 2016 (r423922) @@ -383,6 +383,7 @@ SUBDIR += ncrypt SUBDIR += netpgp SUBDIR += nettle + SUBDIR += ngrok SUBDIR += nikto SUBDIR += nist-kat SUBDIR += nmap Added: head/security/ngrok/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ngrok/Makefile Thu Oct 13 14:31:38 2016 (r423922) @@ -0,0 +1,35 @@ +# Created by: John Hixson <jhixson@gmail.com> +# $FreeBSD$ + +PORTNAME= ngrok +PORTVERSION= 2.1.14 +CATEGORIES= security +MASTER_SITES= https://bin.equinox.io/c/4VmDzA7iaHb/ +DISTNAME= ${PORTNAME}-stable-freebsd-${NGROK_ARCH} + +MAINTAINER= jhixson@gmail.com +COMMENT= Secure tunnels to localhost + +ONLY_FOR_ARCHS= i386 amd64 + +NO_WRKSUBDIR= yes +PLIST_FILES= bin/ngrok + +NO_BUILD= yes +USES= zip + +.include <bsd.port.options.mk> + +.if ${ARCH} == "i386" +NGROK_ARCH= 386 +.endif +.if ${ARCH} == "amd64" +NGROK_ARCH= amd64 +.endif + +.include <bsd.port.pre.mk> + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.post.mk> Added: head/security/ngrok/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ngrok/distinfo Thu Oct 13 14:31:38 2016 (r423922) @@ -0,0 +1,5 @@ +TIMESTAMP = 1474389051 +SHA256 (ngrok-stable-freebsd-amd64.zip) = 38058306073a6d2e970bc8ad9e9febe80fea6e1a20d106a46fd7ac9887e70e2a +SIZE (ngrok-stable-freebsd-amd64.zip) = 4688635 +SHA256 (ngrok-stable-freebsd-386.zip) = 8202da2283cee9d62df26bced9f09dd6613ff712efd57599a02b79205c21f751 +SIZE (ngrok-stable-freebsd-386.zip) = 4541544 Added: head/security/ngrok/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ngrok/pkg-descr Thu Oct 13 14:31:38 2016 (r423922) @@ -0,0 +1,4 @@ +Expose local servers behind NATs and firewalls to the public internet +over secure tunnels. + +URL: https://ngrok.com
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610131431.u9DEVcA7079532>