Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jan 2020 21:16:28 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523172 - in head/net: . neatvnc wayvnc
Message-ID:  <202001152116.00FLGS1c063491@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Jan 15 21:16:28 2020
New Revision: 523172
URL: https://svnweb.freebsd.org/changeset/ports/523172

Log:
  net/wayvnc: add new port
  
  This is a VNC server for wlroots based Wayland compositors.
  
  https://github.com/any1/wayvnc

Added:
  head/net/neatvnc/
  head/net/neatvnc/Makefile   (contents, props changed)
  head/net/neatvnc/distinfo   (contents, props changed)
  head/net/neatvnc/pkg-descr   (contents, props changed)
  head/net/neatvnc/pkg-plist   (contents, props changed)
  head/net/wayvnc/
  head/net/wayvnc/Makefile   (contents, props changed)
  head/net/wayvnc/distinfo   (contents, props changed)
  head/net/wayvnc/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile   (contents, props changed)

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Wed Jan 15 21:15:55 2020	(r523171)
+++ head/net/Makefile	Wed Jan 15 21:16:28 2020	(r523172)
@@ -482,6 +482,7 @@
     SUBDIR += ndisc6
     SUBDIR += ndpi
     SUBDIR += ndproxy
+    SUBDIR += neatvnc
     SUBDIR += nepenthes
     SUBDIR += net6
     SUBDIR += netatalk3
@@ -1517,6 +1518,7 @@
     SUBDIR += wackamole
     SUBDIR += wakeonlan
     SUBDIR += waypipe
+    SUBDIR += wayvnc
     SUBDIR += whois
     SUBDIR += widentd
     SUBDIR += wireguard

Added: head/net/neatvnc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/neatvnc/Makefile	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	neatvnc
+PORTVERSION=	s20200113
+CATEGORIES=	net
+
+MAINTAINER=	jbeich@FreeBSD.org
+COMMENT=	Liberally licensed VNC server library
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	${LOCALBASE}/include/libdrm/drm_fourcc.h:graphics/libdrm
+LIB_DEPENDS=	libuv.so:devel/libuv
+
+USES=		compiler:c11 meson pkgconfig xorg
+USE_GITHUB=	yes
+USE_XORG=	pixman
+USE_LDCONFIG=	yes
+GH_ACCOUNT=	any1
+GH_TAGNAME=	6bb3362
+
+OPTIONS_DEFINE=	JPEG
+OPTIONS_DEFAULT=JPEG
+
+JPEG_LIB_DEPENDS=	libturbojpeg.so:graphics/libjpeg-turbo
+JPEG_MESON_ENABLED=	tight-encoding
+
+.include <bsd.port.mk>

Added: head/net/neatvnc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/neatvnc/distinfo	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578911972
+SHA256 (any1-neatvnc-s20200113-6bb3362_GH0.tar.gz) = a5cffd98ffbcc36c77aaa1cfdc9dc3dd575120cfeb629305d27af801b7d514d7
+SIZE (any1-neatvnc-s20200113-6bb3362_GH0.tar.gz) = 623811

Added: head/net/neatvnc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/neatvnc/pkg-descr	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,4 @@
+This is a liberally licensed VNC server library that's intended to be
+fast and neat.
+
+WWW: https://github.com/any1/neatvnc

Added: head/net/neatvnc/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/neatvnc/pkg-plist	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,5 @@
+include/neatvnc.h
+lib/libneatvnc.so
+lib/libneatvnc.so.0
+lib/libneatvnc.so.0.0.0
+libdata/pkgconfig/neatvnc.pc

Added: head/net/wayvnc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wayvnc/Makefile	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	wayvnc
+PORTVERSION=	s20200115
+CATEGORIES=	net
+
+MAINTAINER=	jbeich@FreeBSD.org
+COMMENT=	VNC server for wlroots-based compositors
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	evdev-proto>0:devel/evdev-proto
+LIB_DEPENDS=	libuv.so:devel/libuv \
+		libwayland-client.so:graphics/wayland \
+		libneatvnc.so:net/neatvnc \
+		libxkbcommon.so:x11/libxkbcommon
+
+USES=		compiler:c11 meson pkgconfig xorg
+USE_GITHUB=	yes
+USE_XORG=	pixman
+USE_GL=		egl glesv2
+USE_LDCONFIG=	yes
+GH_ACCOUNT=	any1
+GH_TAGNAME=	e2079a7
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/net/wayvnc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wayvnc/distinfo	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1579120496
+SHA256 (any1-wayvnc-s20200115-e2079a7_GH0.tar.gz) = 59218b7dcad9e67ee1c00dde05743e2322faea545e6828ac758859addf07a117
+SIZE (any1-wayvnc-s20200115-e2079a7_GH0.tar.gz) = 24474

Added: head/net/wayvnc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/wayvnc/pkg-descr	Wed Jan 15 21:16:28 2020	(r523172)
@@ -0,0 +1,3 @@
+This is a VNC server for wlroots based Wayland compositors.
+
+WWW: https://github.com/any1/wayvnc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001152116.00FLGS1c063491>