From owner-svn-ports-all@FreeBSD.ORG Sat Dec 20 13:17:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 749102D9; Sat, 20 Dec 2014 13:17:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 558DC1F0A; Sat, 20 Dec 2014 13:17:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBKDHFFe013508; Sat, 20 Dec 2014 13:17:15 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBKDHEsS013503; Sat, 20 Dec 2014 13:17:14 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412201317.sBKDHEsS013503@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 20 Dec 2014 13:17:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375002 - in head/x11: . sxhkd sxhkd/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 13:17:15 -0000 Author: pawel Date: Sat Dec 20 13:17:13 2014 New Revision: 375002 URL: https://svnweb.freebsd.org/changeset/ports/375002 QAT: https://qat.redports.org/buildarchive/r375002/ Log: sxhkd is a simple X hotkey daemon with a powerful and compact configuration syntax. WWW: https://github.com/baskerville/sxhkd PR: 196128 Submitted by: Anton Tornqvist Added: head/x11/sxhkd/ head/x11/sxhkd/Makefile (contents, props changed) head/x11/sxhkd/distinfo (contents, props changed) head/x11/sxhkd/files/ head/x11/sxhkd/files/patch-Makefile (contents, props changed) head/x11/sxhkd/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sat Dec 20 13:00:59 2014 (r375001) +++ head/x11/Makefile Sat Dec 20 13:17:13 2014 (r375002) @@ -268,6 +268,7 @@ SUBDIR += sterm SUBDIR += stjerm SUBDIR += swarp + SUBDIR += sxhkd SUBDIR += sxpc SUBDIR += tabbed SUBDIR += temperature.app Added: head/x11/sxhkd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sxhkd/Makefile Sat Dec 20 13:17:13 2014 (r375002) @@ -0,0 +1,22 @@ +# Created by: Anton Törnqvist +# $FreeBSD$ + +PORTNAME= sxhkd +PORTVERSION= 0.5.4 +CATEGORIES= x11 + +MAINTAINER= antont@inbox.lv +COMMENT= Simple X hotkey daemon + +LIB_DEPENDS= libxcb-keysyms.so:${PORTSDIR}/x11/xcb-util-keysyms + +USE_GITHUB= yes +GH_ACCOUNT= baskerville +GH_COMMIT= eaf83e9 + +USES= gmake + +PLIST_FILES= bin/sxhkd \ + man/man1/sxhkd.1.gz + +.include Added: head/x11/sxhkd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sxhkd/distinfo Sat Dec 20 13:17:13 2014 (r375002) @@ -0,0 +1,2 @@ +SHA256 (sxhkd-0.5.4.tar.gz) = 7eabe0e41549b26ddf9ba41d18c63f3192a888633e4115a1b693f3f785042466 +SIZE (sxhkd-0.5.4.tar.gz) = 34565 Added: head/x11/sxhkd/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sxhkd/files/patch-Makefile Sat Dec 20 13:17:13 2014 (r375002) @@ -0,0 +1,11 @@ +--- Makefile.orig 2014-12-15 21:21:15 UTC ++++ Makefile +@@ -9,7 +9,7 @@ LDFLAGS += -L$(PREFIX)/lib + + PREFIX ?= /usr/local + BINPREFIX = $(PREFIX)/bin +-MANPREFIX = $(PREFIX)/share/man ++MANPREFIX = $(PREFIX)/man + + SRC = $(wildcard *.c) + OBJ = $(SRC:.c=.o) Added: head/x11/sxhkd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sxhkd/pkg-descr Sat Dec 20 13:17:13 2014 (r375002) @@ -0,0 +1,4 @@ +sxhkd is a simple X hotkey daemon with a powerful and compact +configuration syntax. + +WWW: https://github.com/baskerville/sxhkd