From owner-svn-ports-all@freebsd.org Thu Oct 13 14:31:40 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DD88C10C0D; Thu, 13 Oct 2016 14:31:40 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E556D3EF; Thu, 13 Oct 2016 14:31:39 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9DEVd6I079536; Thu, 13 Oct 2016 14:31:39 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9DEVcA7079532; Thu, 13 Oct 2016 14:31:38 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201610131431.u9DEVcA7079532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Thu, 13 Oct 2016 14:31:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423922 - in head/security: . ngrok X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Oct 2016 14:31:40 -0000 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 +# $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 + +.if ${ARCH} == "i386" +NGROK_ARCH= 386 +.endif +.if ${ARCH} == "amd64" +NGROK_ARCH= amd64 +.endif + +.include + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include 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