svn commit: r415962 - in head/sysutils: . tmate-slave tmate-slave/files

Steve Wills swills at FreeBSD.org
Fri May 27 19:58:44 UTC 2016


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 at 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 <bsd.port.mk>

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 <netinet/tcp.h>
+ #include <fcntl.h>
+ #include <errno.h>
++#include <netinet/in.h>
+ 
+ #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 <stdio.h>
+ #include <event.h>
+ #include <arpa/inet.h>
++#include <netinet/in.h>
++#include <sys/signal.h>
+ 
+ #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/


More information about the svn-ports-all mailing list