From owner-svn-ports-head@freebsd.org Sat Jul 18 01:20:26 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 273A7374EC4; Sat, 18 Jul 2020 01:20:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B7qtL0Gqxz4nqc; Sat, 18 Jul 2020 01:20:26 +0000 (UTC) (envelope-from jbeich@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C6D2122694; Sat, 18 Jul 2020 01:20:25 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06I1KPB4043123; Sat, 18 Jul 2020 01:20:25 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06I1KPL1043119; Sat, 18 Jul 2020 01:20:25 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202007180120.06I1KPL1043119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 18 Jul 2020 01:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542462 - in head/net: . wlvncc X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/net: . wlvncc X-SVN-Commit-Revision: 542462 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jul 2020 01:20:26 -0000 Author: jbeich Date: Sat Jul 18 01:20:24 2020 New Revision: 542462 URL: https://svnweb.freebsd.org/changeset/ports/542462 Log: net/wlvncc: add new port This is a work-in-progress implementation of a Wayland native VNC client. Expect bugs and missing features. https://github.com/any1/wlvncc Added: head/net/wlvncc/ head/net/wlvncc/Makefile (contents, props changed) head/net/wlvncc/distinfo (contents, props changed) head/net/wlvncc/pkg-descr (contents, props changed) Modified: head/net/Makefile (contents, props changed) Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Jul 18 00:54:40 2020 (r542461) +++ head/net/Makefile Sat Jul 18 01:20:24 2020 (r542462) @@ -1519,6 +1519,7 @@ SUBDIR += wireshark SUBDIR += wireshark-lite SUBDIR += wlan2eth + SUBDIR += wlvncc SUBDIR += wmnd SUBDIR += wmnet SUBDIR += wmping Added: head/net/wlvncc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlvncc/Makefile Sat Jul 18 01:20:24 2020 (r542462) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= wlvncc +PORTVERSION= s20200714 +CATEGORIES= net + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Wayland Native VNC Client + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto +LIB_DEPENDS= libaml.so:devel/aml \ + libwayland-client.so:graphics/wayland \ + libvncclient.so:net/libvncserver \ + libxkbcommon.so:x11/libxkbcommon + +USES= compiler:c11 meson pkgconfig xorg +USE_GITHUB= yes +USE_XORG= pixman +GH_ACCOUNT= any1 +GH_TAGNAME= e7a1460 +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/net/wlvncc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlvncc/distinfo Sat Jul 18 01:20:24 2020 (r542462) @@ -0,0 +1,3 @@ +TIMESTAMP = 1594761456 +SHA256 (any1-wlvncc-s20200714-e7a1460_GH0.tar.gz) = 5b68c6e074d20d387fbb4d821c477607dd1e8568a820bd76e3dbe3917336c208 +SIZE (any1-wlvncc-s20200714-e7a1460_GH0.tar.gz) = 25591 Added: head/net/wlvncc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlvncc/pkg-descr Sat Jul 18 01:20:24 2020 (r542462) @@ -0,0 +1,4 @@ +This is a work-in-progress implementation of a Wayland native VNC +client. Expect bugs and missing features. + +WWW: https://github.com/any1/wlvncc