From owner-svn-ports-head@freebsd.org Sat Mar 5 15:02:59 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 CC1F5A1367D; Sat, 5 Mar 2016 15:02:59 +0000 (UTC) (envelope-from bapt@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 80A3169E; Sat, 5 Mar 2016 15:02:59 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u25F2wNO054495; Sat, 5 Mar 2016 15:02:58 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u25F2wqH054491; Sat, 5 Mar 2016 15:02:58 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201603051502.u25F2wqH054491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 5 Mar 2016 15:02:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410183 - in head/x11: . xcbautolock 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.21 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: Sat, 05 Mar 2016 15:02:59 -0000 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 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