svn commit: r419552 - in head/x11: . simplestroke

Pawel Pekala pawel at FreeBSD.org
Wed Aug 3 20:40:42 UTC 2016


Author: pawel
Date: Wed Aug  3 20:40:40 2016
New Revision: 419552
URL: https://svnweb.freebsd.org/changeset/ports/419552

Log:
  Simplestroke is a simple utility that detects mouse gestures.  It
  currently detects twelve pre-defined mouse gestures and prints the
  name of the detected gesture to stdout, if any.  The output can then
  e.g. be used in a simple shell script to execute commands.
  
  Example usages could include closing windows in i3 by drawing a Z over
  them or other window manipulations, or pausing your music player by
  drawing a left-to-right line.
  
  WWW: https://github.com/t6/simplestroke/
  
  PR:		211550
  Submitted by:	Tobias Kortkamp <t at tobik.me>

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

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Wed Aug  3 20:40:27 2016	(r419551)
+++ head/x11/Makefile	Wed Aug  3 20:40:40 2016	(r419552)
@@ -266,6 +266,7 @@
     SUBDIR += setlayout
     SUBDIR += setxkbmap
     SUBDIR += simdock
+    SUBDIR += simplestroke
     SUBDIR += sisctrl
     SUBDIR += slim
     SUBDIR += slock

Added: head/x11/simplestroke/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/simplestroke/Makefile	Wed Aug  3 20:40:40 2016	(r419552)
@@ -0,0 +1,24 @@
+# Created by: Tobias Kortkamp <t at tobik.me>
+# $FreeBSD$
+
+PORTNAME=	simplestroke
+PORTVERSION=	1.0
+DISTVERSIONPREFIX=	v
+CATEGORIES=	x11
+
+MAINTAINER=	t at tobik.me
+COMMENT=	Detect mouse gestures
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	t6
+
+USES=		pkgconfig
+USE_XORG=	x11 xtst
+
+PLIST_FILES=	bin/simplestroke \
+		man/man1/simplestroke.1.gz
+
+.include <bsd.port.mk>

Added: head/x11/simplestroke/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/simplestroke/distinfo	Wed Aug  3 20:40:40 2016	(r419552)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1470235134
+SHA256 (t6-simplestroke-v1.0_GH0.tar.gz) = 6213e3042ac87693d99d0093269b680f4d8ab1be9150dad887383876627e9c0a
+SIZE (t6-simplestroke-v1.0_GH0.tar.gz) = 7711

Added: head/x11/simplestroke/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/simplestroke/pkg-descr	Wed Aug  3 20:40:40 2016	(r419552)
@@ -0,0 +1,10 @@
+Simplestroke is a simple utility that detects mouse gestures.  It
+currently detects twelve pre-defined mouse gestures and prints the
+name of the detected gesture to stdout, if any.  The output can then
+e.g. be used in a simple shell script to execute commands.
+
+Example usages could include closing windows in i3 by drawing a Z over
+them or other window manipulations, or pausing your music player by
+drawing a left-to-right line.
+
+WWW: https://github.com/t6/simplestroke/


More information about the svn-ports-all mailing list