From owner-svn-ports-head@freebsd.org Fri Nov 24 22:12:53 2017 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 C2E57DF2D43; Fri, 24 Nov 2017 22:12:53 +0000 (UTC) (envelope-from yuri@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 9A79266B6C; Fri, 24 Nov 2017 22:12:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAOMCqsN048029; Fri, 24 Nov 2017 22:12:52 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAOMCqqr048025; Fri, 24 Nov 2017 22:12:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711242212.vAOMCqqr048025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 24 Nov 2017 22:12:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454853 - in head/x11: . xcape X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/x11: . xcape X-SVN-Commit-Revision: 454853 X-SVN-Commit-Repository: ports 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.25 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: Fri, 24 Nov 2017 22:12:53 -0000 Author: yuri Date: Fri Nov 24 22:12:52 2017 New Revision: 454853 URL: https://svnweb.freebsd.org/changeset/ports/454853 Log: New port: x11/xcape: Configure modifier keys to act as other keys when pressed on their own PR: 222602 Submitted by: Greg V Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13165 Added: head/x11/xcape/ head/x11/xcape/Makefile (contents, props changed) head/x11/xcape/distinfo (contents, props changed) head/x11/xcape/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Fri Nov 24 22:00:39 2017 (r454852) +++ head/x11/Makefile Fri Nov 24 22:12:52 2017 (r454853) @@ -368,6 +368,7 @@ SUBDIR += xbrightness SUBDIR += xcalc SUBDIR += xcalib + SUBDIR += xcape SUBDIR += xcb SUBDIR += xcb-proto SUBDIR += xcb-util Added: head/x11/xcape/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcape/Makefile Fri Nov 24 22:12:52 2017 (r454853) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= xcape +DISTVERSIONPREFIX= v +DISTVERSION= 1.2-9 +DISTVERSIONSUFFIX= -g6ded5b4 +CATEGORIES= x11 + +MAINTAINER= greg@unrelenting.technology +COMMENT= Configure modifier keys to act as other keys when pressed on their own + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= alols + +USES= pkgconfig +USE_XORG= x11 xtst + +MAKE_ARGS= PREFIX=${PREFIX} MANDIR=/man/man1 + +PLIST_FILES= bin/xcape man/man1/xcape.1.gz + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xcape + +.include Added: head/x11/xcape/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcape/distinfo Fri Nov 24 22:12:52 2017 (r454853) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511147599 +SHA256 (alols-xcape-v1.2-9-g6ded5b4_GH0.tar.gz) = 81793950033972a799d8701e6cc579ad75b22a02fe00db603170caa874a1e80c +SIZE (alols-xcape-v1.2-9-g6ded5b4_GH0.tar.gz) = 18904 Added: head/x11/xcape/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcape/pkg-descr Fri Nov 24 22:12:52 2017 (r454853) @@ -0,0 +1,5 @@ +xcape allows you to use a modifier key as another key when pressed and released +on its own. The default behaviour is to generate the Escape key when Left +Control is pressed and released on its own. + +WWW: https://github.com/alols/xcape