From owner-svn-ports-all@freebsd.org Wed Nov 23 12:44: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 3451FC4F7CB; Wed, 23 Nov 2016 12:44:40 +0000 (UTC) (envelope-from bapt@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 DB3111E0E; Wed, 23 Nov 2016 12:44:39 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANCidOV027436; Wed, 23 Nov 2016 12:44:39 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANCicO7027432; Wed, 23 Nov 2016 12:44:38 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201611231244.uANCicO7027432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 23 Nov 2016 12:44:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426907 - in head/sysutils: . ttyd 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: Wed, 23 Nov 2016 12:44:40 -0000 Author: bapt Date: Wed Nov 23 12:44:38 2016 New Revision: 426907 URL: https://svnweb.freebsd.org/changeset/ports/426907 Log: Add ttyd: ttyd is a simple command-line tool for sharing terminal over the web, inspired by GoTTY. WWW: https://www.github.com/tsl0922/ttyd PR: 213503 Submitted by: Neel Chauhan Added: head/sysutils/ttyd/ head/sysutils/ttyd/Makefile (contents, props changed) head/sysutils/ttyd/distinfo (contents, props changed) head/sysutils/ttyd/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Nov 23 12:43:49 2016 (r426906) +++ head/sysutils/Makefile Wed Nov 23 12:44:38 2016 (r426907) @@ -1116,6 +1116,7 @@ SUBDIR += tren SUBDIR += ts SUBDIR += tss + SUBDIR += ttyd SUBDIR += tty-clock SUBDIR += ttyload SUBDIR += tuptime Added: head/sysutils/ttyd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ttyd/Makefile Wed Nov 23 12:44:38 2016 (r426907) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= ttyd +PORTVERSION= 1.2.0 +CATEGORIES= sysutils + +MAINTAINER= neel@neelc.org +COMMENT= Program to share your terminal over the web + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= xxd:editors/vim-lite +LIB_DEPENDS= libjson-c.so:devel/json-c \ + libwebsockets.so:net/libwebsockets + +USE_GITHUB= yes +GH_ACCOUNT= tsl0922 + +USES= cmake pkgconfig ssl +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ttyd ${STAGEDIR}${PREFIX}/bin + +.include Added: head/sysutils/ttyd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ttyd/distinfo Wed Nov 23 12:44:38 2016 (r426907) @@ -0,0 +1,3 @@ +TIMESTAMP = 1479470581 +SHA256 (tsl0922-ttyd-1.2.0_GH0.tar.gz) = 00f8399a1045057a55a5a5dd2540bfbf39df972ad0c1c2a9e3bc94574514c9bd +SIZE (tsl0922-ttyd-1.2.0_GH0.tar.gz) = 177550 Added: head/sysutils/ttyd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ttyd/pkg-descr Wed Nov 23 12:44:38 2016 (r426907) @@ -0,0 +1,4 @@ +ttyd is a simple command-line tool for sharing terminal over the web, inspired +by GoTTY. + +WWW: https://www.github.com/tsl0922/ttyd