From owner-svn-ports-head@freebsd.org Wed Aug 3 20:40:42 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11FA1BAED10; Wed, 3 Aug 2016 20:40:42 +0000 (UTC) (envelope-from pawel@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 mx1.freebsd.org (Postfix) with ESMTPS id CBA841238; Wed, 3 Aug 2016 20:40:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u73KefOR059388; Wed, 3 Aug 2016 20:40:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u73KeekV059384; Wed, 3 Aug 2016 20:40:40 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201608032040.u73KeekV059384@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 3 Aug 2016 20:40:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419552 - in head/x11: . simplestroke X-SVN-Group: ports-head 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.22 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: Wed, 03 Aug 2016 20:40:42 -0000 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 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 +# $FreeBSD$ + +PORTNAME= simplestroke +PORTVERSION= 1.0 +DISTVERSIONPREFIX= v +CATEGORIES= x11 + +MAINTAINER= t@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 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/