View | Details | Raw Unified | Return to bug 226867
Collapse All | Expand All

(-)www/Makefile (+1 lines)
Lines 2453-2458 Link Here
2453
    SUBDIR += webreport
2453
    SUBDIR += webreport
2454
    SUBDIR += webresolve
2454
    SUBDIR += webresolve
2455
    SUBDIR += websh
2455
    SUBDIR += websh
2456
    SUBDIR += websocketd
2456
    SUBDIR += webstats
2457
    SUBDIR += webstats
2457
    SUBDIR += webstone
2458
    SUBDIR += webstone
2458
    SUBDIR += webstone-ssl
2459
    SUBDIR += webstone-ssl
(-)www/websocketd/Makefile (+26 lines)
Line 0 Link Here
1
# Created by: Guangyuan Yang <ygy@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	websocketd
5
DISTVERSION=	0.3.0
6
CATEGORIES=	www
7
MASTER_SITES=	https://github.com/joewalnes/${PORTNAME}/releases/download/v${DISTVERSION}/
8
DISTNAME=	${PORTNAME}-${DISTVERSION}-freebsd_${ARCH:S/i386/386/:S/x86_64/amd64/}
9
10
MAINTAINER=	ygy@FreeBSD.org
11
COMMENT=	Access any command-line tool via a WebSocket
12
13
LICENSE=	BSD2CLAUSE
14
15
ONLY_FOR_ARCHS= amd64 i386
16
17
NO_WRKSUBDIR=	yes
18
PLIST_FILES=	bin/${PORTNAME}
19
20
NO_BUILD=	yes
21
USES=		zip
22
23
do-install:
24
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
25
26
.include <bsd.port.mk>
(-)www/websocketd/distinfo (+5 lines)
Line 0 Link Here
1
TIMESTAMP = 1521782495
2
SHA256 (websocketd-0.3.0-freebsd_amd64.zip) = 89e3c0b007a643c870c6b59eecb611cb0757780fcabe402bbb6cbb190ab478be
3
SIZE (websocketd-0.3.0-freebsd_amd64.zip) = 2555193
4
SHA256 (websocketd-0.3.0-freebsd_386.zip) = b5de6e70273ba0be28b9ee3c76491f6502045def69c8acdf0db5142502439f1e
5
SIZE (websocketd-0.3.0-freebsd_386.zip) = 2404543
(-)www/websocketd/pkg-descr (+8 lines)
Line 0 Link Here
1
websocketd is a small command-line tool that will wrap an existing command-line
2
interface program, and allow it to be accessed via a WebSocket.
3
4
WebSocket-capable applications can now be built very easily in any language. As
5
long as you can write an executable program that reads `STDIN` and writes to
6
`STDOUT`, you can build a WebSocket server.
7
8
WWW: http://websocketd.com/

Return to bug 226867