Date: Wed, 23 Nov 2016 12:44:38 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426907 - in head/sysutils: . ttyd Message-ID: <201611231244.uANCicO7027432@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <neel@neelc.org> 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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611231244.uANCicO7027432>