Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Oct 2020 06:12:13 +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: r553319 - in head/x11: . wlrctl
Message-ID:  <202010260612.09Q6CDYC000829@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Oct 26 06:12:13 2020
New Revision: 553319
URL: https://svnweb.freebsd.org/changeset/ports/553319

Log:
  x11/wlrctl: add new port
  
  wlrctl is a command line utility for miscellaneous wlroots Wayland extensions.
  
  At this time, wlrctl supports the foreign-toplevel-mangement (window/toplevel command),
  virtual-keyboard (keyboard command), and virtual-pointer (pointer command) protocols.
  
  https://git.sr.ht/~brocellous/wlrctl

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

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Mon Oct 26 05:53:32 2020	(r553318)
+++ head/x11/Makefile	Mon Oct 26 06:12:13 2020	(r553319)
@@ -346,6 +346,7 @@
     SUBDIR += wf-shell
     SUBDIR += wl-clipboard
     SUBDIR += wlogout
+    SUBDIR += wlrctl
     SUBDIR += wmappl
     SUBDIR += wmblob
     SUBDIR += wmbutton

Added: head/x11/wlrctl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wlrctl/Makefile	Mon Oct 26 06:12:13 2020	(r553319)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME=	wlrctl
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.1
+CATEGORIES=	x11
+MASTER_SITES=	https://git.sr.ht/~brocellous/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
+
+PATCH_SITES=	https://git.sr.ht/~brocellous/${PORTNAME}/commit/
+PATCHFILES+=	a9f5699256c9.patch:-p1
+
+MAINTAINER=	jbeich@FreeBSD.org
+COMMENT=	Utility for miscellaneous wlroots extensions
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	evdev-proto>0:devel/evdev-proto
+LIB_DEPENDS=	libwayland-client.so:graphics/wayland \
+		libxkbcommon.so:x11/libxkbcommon
+
+USES=		compiler:c11 meson pkgconfig
+PLIST_FILES=	bin/${PORTNAME} \
+		share/zsh/site-functions/_${PORTNAME}
+
+OPTIONS_DEFINE=	MANPAGES
+OPTIONS_DEFAULT=MANPAGES
+
+MANPAGES_BUILD_DEPENDS=	scdoc:textproc/scdoc
+MANPAGES_MESON_ENABLED=	man-pages
+MANPAGES_PLIST_FILES=	man/man1/${PORTNAME}.1.gz
+
+.include <bsd.port.mk>

Added: head/x11/wlrctl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wlrctl/distinfo	Mon Oct 26 06:12:13 2020	(r553319)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1596702887
+SHA256 (wlrctl-v0.2.1.tar.gz) = 844ac533134efa4dd6a0e1c284a264113b9a469c4542fef5f5007cb43afb106b
+SIZE (wlrctl-v0.2.1.tar.gz) = 18413
+SHA256 (a9f5699256c9.patch) = 269fc826096ba3817b7fe457f513e9f081ec0318f5970ef03e35942c29073b6c
+SIZE (a9f5699256c9.patch) = 1487

Added: head/x11/wlrctl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/wlrctl/pkg-descr	Mon Oct 26 06:12:13 2020	(r553319)
@@ -0,0 +1,6 @@
+wlrctl is a command line utility for miscellaneous wlroots Wayland extensions.
+
+At this time, wlrctl supports the foreign-toplevel-mangement (window/toplevel command),
+virtual-keyboard (keyboard command), and virtual-pointer (pointer command) protocols.
+
+WWW: https://git.sr.ht/~brocellous/wlrctl



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