Date: Sun, 31 Jul 2016 19:19:49 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419409 - in head/x11: . xbanish Message-ID: <201607311919.u6VJJnAk006392@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Sun Jul 31 19:19:49 2016 New Revision: 419409 URL: https://svnweb.freebsd.org/changeset/ports/419409 Log: xbanish hides the mouse cursor when you start typing, and shows it again when the mouse cursor moves or a mouse button is pressed. This is similar to xterm's pointerMode setting, but xbanish works globally in the X11 session. WWW: https://github.com/jcs/xbanish/ PR: 211325 Submitted by: Tobias Kortkamp <t@tobik.me> Added: head/x11/xbanish/ head/x11/xbanish/Makefile (contents, props changed) head/x11/xbanish/distinfo (contents, props changed) head/x11/xbanish/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sun Jul 31 19:13:26 2016 (r419408) +++ head/x11/Makefile Sun Jul 31 19:19:49 2016 (r419409) @@ -320,6 +320,7 @@ SUBDIR += xautomation SUBDIR += xbacklight SUBDIR += xballoon + SUBDIR += xbanish SUBDIR += xbanner SUBDIR += xbelld SUBDIR += xbiff Added: head/x11/xbanish/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xbanish/Makefile Sun Jul 31 19:19:49 2016 (r419409) @@ -0,0 +1,24 @@ +# Created by: Tobias Kortkamp <t@tobik.me> +# $FreeBSD$ + +PORTNAME= xbanish +PORTVERSION= 1.4 +DISTVERSIONPREFIX= v +CATEGORIES= x11 + +MAINTAINER= t@tobik.me +COMMENT= Banish the mouse cursor when typing + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= jcs + +USE_XORG= x11 xfixes xi xt + +MAKE_ARGS= X11BASE="${PREFIX}" + +PLIST_FILES= bin/xbanish \ + man/man1/xbanish.1.gz + +.include <bsd.port.mk> Added: head/x11/xbanish/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xbanish/distinfo Sun Jul 31 19:19:49 2016 (r419409) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469336573 +SHA256 (jcs-xbanish-v1.4_GH0.tar.gz) = df90d1fe2c2215e0bdfd3b6a3151ac29553248abd293f428760f8015e82d8c64 +SIZE (jcs-xbanish-v1.4_GH0.tar.gz) = 5407 Added: head/x11/xbanish/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xbanish/pkg-descr Sun Jul 31 19:19:49 2016 (r419409) @@ -0,0 +1,6 @@ +xbanish hides the mouse cursor when you start typing, and shows it +again when the mouse cursor moves or a mouse button is pressed. This +is similar to xterm's pointerMode setting, but xbanish works globally +in the X11 session. + +WWW: https://github.com/jcs/xbanish/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607311919.u6VJJnAk006392>