Date: Sat, 5 Mar 2016 15:02:58 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410183 - in head/x11: . xcbautolock Message-ID: <201603051502.u25F2wqH054491@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sat Mar 5 15:02:58 2016 New Revision: 410183 URL: https://svnweb.freebsd.org/changeset/ports/410183 Log: New xcbautolock. Minimalistic XCB base utility that monitors users activity for a user defined period of time (granularity up to the second) and fires up a user define program once the duration is reached without any activity. Added: head/x11/xcbautolock/ head/x11/xcbautolock/Makefile (contents, props changed) head/x11/xcbautolock/distinfo (contents, props changed) head/x11/xcbautolock/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sat Mar 5 13:57:10 2016 (r410182) +++ head/x11/Makefile Sat Mar 5 15:02:58 2016 (r410183) @@ -335,6 +335,7 @@ SUBDIR += xcb-util-keysyms SUBDIR += xcb-util-renderutil SUBDIR += xcb-util-wm + SUBDIR += xcbautolock SUBDIR += xclick SUBDIR += xclip SUBDIR += xclipboard Added: head/x11/xcbautolock/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcbautolock/Makefile Sat Mar 5 15:02:58 2016 (r410183) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= xcbautolock +PORTVERSION= 0.1 +CATEGORIES= x11 + +MAINTAINER= bapt@FreeBSD.org +COMMENT= XCB base autolocker + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= bapt + +LIB_DEPENDS= libxcb-screensaver.so:${PORTSDIR}/x11/libxcb + +PLIST_FILES= bin/xcbautolock \ + man/man1/xcbautolock.1.gz + +.include <bsd.port.mk> Added: head/x11/xcbautolock/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcbautolock/distinfo Sat Mar 5 15:02:58 2016 (r410183) @@ -0,0 +1,2 @@ +SHA256 (bapt-xcbautolock-0.1_GH0.tar.gz) = 60da8ac58ad6c22e4195f8b83f2f094f0bddaf3893206708f0318b38b018b283 +SIZE (bapt-xcbautolock-0.1_GH0.tar.gz) = 3255 Added: head/x11/xcbautolock/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcbautolock/pkg-descr Sat Mar 5 15:02:58 2016 (r410183) @@ -0,0 +1,5 @@ +XCB base user activity monitor. It fires up a progam if nothing happens during a +user configurabel period of time. It respects the screensaver settings +(enable/disable). + +WWW: https://github.com/bapt/xcbautolock
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603051502.u25F2wqH054491>