svn commit: r555431 - in head/x11: . wtype

Jan Beich jbeich at FreeBSD.org
Sun Nov 15 20:29:53 UTC 2020


Author: jbeich
Date: Sun Nov 15 20:29:52 2020
New Revision: 555431
URL: https://svnweb.freebsd.org/changeset/ports/555431

Log:
  x11/wtype: add new port
  
  Programatically (or manually) simulate keyboard input using
  virtual-keyboard Wayland protocol.
  
  WWW: https://github.com/atx/wtype

Added:
  head/x11/wtype/
  head/x11/wtype/Makefile   (contents, props changed)
  head/x11/wtype/distinfo   (contents, props changed)
  head/x11/wtype/pkg-descr   (contents, props changed)
Modified:
  head/x11/Makefile   (contents, props changed)

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Sun Nov 15 19:52:38 2020	(r555430)
+++ head/x11/Makefile	Sun Nov 15 20:29:52 2020	(r555431)
@@ -363,6 +363,7 @@
     SUBDIR += wofi
     SUBDIR += workrave
     SUBDIR += wshowkeys
+    SUBDIR += wtype
     SUBDIR += x11perf
     SUBDIR += x3270
     SUBDIR += xantfarm

Added: head/x11/wtype/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wtype/Makefile	Sun Nov 15 20:29:52 2020	(r555431)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	wtype
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2
+CATEGORIES=	x11
+
+PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
+PATCHFILES+=	bc262ff93e55.patch:-p1 # https://github.com/atx/wtype/issues/16
+
+MAINTAINER=	jbeich at FreeBSD.org
+COMMENT=	Programmatically simulate keyboard input on Wayland
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libwayland-client.so:graphics/wayland \
+		libxkbcommon.so:x11/libxkbcommon
+
+USES=		compiler:c11 meson pkgconfig
+USE_GITHUB=	yes
+GH_ACCOUNT=	atx
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/x11/wtype/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wtype/distinfo	Sun Nov 15 20:29:52 2020	(r555431)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1603562272
+SHA256 (atx-wtype-v0.2_GH0.tar.gz) = 14eef1c7a51c8c90ccf005443e2e52a164dbb49fabf75953ed1d021a1184acd6
+SIZE (atx-wtype-v0.2_GH0.tar.gz) = 7623
+SHA256 (bc262ff93e55.patch) = cf058178aacec784fb186538b2272335e701626b4e42e571d3398d1e5adf2895
+SIZE (bc262ff93e55.patch) = 1364

Added: head/x11/wtype/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wtype/pkg-descr	Sun Nov 15 20:29:52 2020	(r555431)
@@ -0,0 +1,4 @@
+Programatically (or manually) simulate keyboard input using
+virtual-keyboard Wayland protocol.
+
+WWW: https://github.com/atx/wtype


More information about the svn-ports-all mailing list