From owner-svn-ports-head@freebsd.org Fri May 27 19:58:44 2016 Return-Path: Delivered-To: svn-ports-head@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 6A792B4C339; Fri, 27 May 2016 19:58:44 +0000 (UTC) (envelope-from swills@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 45C231F23; Fri, 27 May 2016 19:58:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4RJwhbl028468; Fri, 27 May 2016 19:58:43 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4RJwgeF028462; Fri, 27 May 2016 19:58:42 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201605271958.u4RJwgeF028462@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 27 May 2016 19:58:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415962 - in head/sysutils: . tmate-slave tmate-slave/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2016 19:58:44 -0000 Author: swills Date: Fri May 27 19:58:42 2016 New Revision: 415962 URL: https://svnweb.freebsd.org/changeset/ports/415962 Log: sysutils/tmate-slave: create port Instant terminal sharing - server WWW: https://tmate.io/ Added: head/sysutils/tmate-slave/ head/sysutils/tmate-slave/Makefile (contents, props changed) head/sysutils/tmate-slave/distinfo (contents, props changed) head/sysutils/tmate-slave/files/ head/sysutils/tmate-slave/files/patch-tmate-proxy.c (contents, props changed) head/sysutils/tmate-slave/files/patch-tmate-ssh-server.c (contents, props changed) head/sysutils/tmate-slave/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri May 27 19:56:49 2016 (r415961) +++ head/sysutils/Makefile Fri May 27 19:58:42 2016 (r415962) @@ -1066,6 +1066,7 @@ SUBDIR += tlsdate SUBDIR += tm SUBDIR += tmate + SUBDIR += tmate-slave SUBDIR += tmpreaper SUBDIR += tmpwatch SUBDIR += tmux Added: head/sysutils/tmate-slave/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tmate-slave/Makefile Fri May 27 19:58:42 2016 (r415962) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= tmate-slave +PORTVERSION= 0.0.0.2016051901 +CATEGORIES= sysutils + +MAINTAINER= swills@FreeBSD.org +COMMENT= Instant terminal sharing server + +LIB_DEPENDS= libevent.so:devel/libevent2 \ + libmsgpackc.so:devel/msgpack \ + libssh_threads.so:security/libssh + +USES= autoreconf pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= tmate-io +GH_TAGNAME= b3c85fa + +GNU_CONFIGURE= yes +INSTALL_ARGET= install-strip +USE_LDCONFIG= yes +LDFLAGS+= -lexecinfo + +PLIST_FILES= bin/tmate-slave + +BROKEN_FreeBSD_9= Does not build + +pre-configure: + @cd $(wrksrc} && ./autogen.sh + +.include Added: head/sysutils/tmate-slave/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tmate-slave/distinfo Fri May 27 19:58:42 2016 (r415962) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463705525 +SHA256 (tmate-io-tmate-slave-0.0.0.2016051901-b3c85fa_GH0.tar.gz) = cc8a078a4fc44662b83b8e10e43b320eb3820d697f6357cb2bb439b156e2d6df +SIZE (tmate-io-tmate-slave-0.0.0.2016051901-b3c85fa_GH0.tar.gz) = 618445 Added: head/sysutils/tmate-slave/files/patch-tmate-proxy.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tmate-slave/files/patch-tmate-proxy.c Fri May 27 19:58:42 2016 (r415962) @@ -0,0 +1,10 @@ +--- tmate-proxy.c.orig 2016-04-26 08:05:24 UTC ++++ tmate-proxy.c +@@ -2,6 +2,7 @@ + #include + #include + #include ++#include + + #include "tmate.h" + #include "tmate-protocol.h" Added: head/sysutils/tmate-slave/files/patch-tmate-ssh-server.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tmate-slave/files/patch-tmate-ssh-server.c Fri May 27 19:58:42 2016 (r415962) @@ -0,0 +1,11 @@ +--- tmate-ssh-server.c.orig 2016-04-26 08:05:24 UTC ++++ tmate-ssh-server.c +@@ -7,6 +7,8 @@ + #include + #include + #include ++#include ++#include + + #include "tmate.h" + Added: head/sysutils/tmate-slave/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tmate-slave/pkg-descr Fri May 27 19:58:42 2016 (r415962) @@ -0,0 +1,3 @@ +Instant terminal sharing - server + +WWW: https://tmate.io/