Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Oct 2020 11:33:29 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551574 - in head/x11: . xclickroot
Message-ID:  <202010061133.096BXTJ5039406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Tue Oct  6 11:33:29 2020
New Revision: 551574
URL: https://svnweb.freebsd.org/changeset/ports/551574

Log:
  Add x11/xclickroot
  
  xclickroot runs a command every time a given mouse button is pressed
  on the root window.
  
  WWW: https://github.com/phillbush/xclickroot

Added:
  head/x11/xclickroot/
  head/x11/xclickroot/Makefile   (contents, props changed)
  head/x11/xclickroot/distinfo   (contents, props changed)
  head/x11/xclickroot/pkg-descr   (contents, props changed)
Modified:
  head/x11/Makefile

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Tue Oct  6 11:24:59 2020	(r551573)
+++ head/x11/Makefile	Tue Oct  6 11:33:29 2020	(r551574)
@@ -389,6 +389,7 @@
     SUBDIR += xcb-util-wm
     SUBDIR += xcb-util-xrm
     SUBDIR += xcbautolock
+    SUBDIR += xclickroot
     SUBDIR += xclip
     SUBDIR += xclipboard
     SUBDIR += xcm

Added: head/x11/xclickroot/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/xclickroot/Makefile	Tue Oct  6 11:33:29 2020	(r551574)
@@ -0,0 +1,34 @@
+# $FreeBSD$
+
+PORTNAME=	xclickroot
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.1
+CATEGORIES=	x11
+PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/pull/
+PATCHFILES=	1.patch:-p1
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Run a command every time a given mouse button is pressed on the root window
+
+LICENSE=	PD
+LICENSE_FILE=	${WRKSRC}/README
+
+USES=		localbase:ldflags xorg
+USE_GITHUB=	yes
+GH_ACCOUNT=	phillbush
+USE_XORG=	x11
+
+MAKE_ARGS=	CC="${CC}" \
+		CFLAGS="${CFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS} -lX11" \
+		LIBS="${LIBS}" \
+		PREFIX="${PREFIX}"
+
+PLIST_FILES=	bin/${PORTNAME} \
+		share/man/man1/${PORTNAME}.1.gz
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/x11/xclickroot/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/xclickroot/distinfo	Tue Oct  6 11:33:29 2020	(r551574)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1601981388
+SHA256 (phillbush-xclickroot-v1.1_GH0.tar.gz) = 289e96b5aad2bf2c9cb2d6aa79c1f0f1e4679e4aa2bc69a9522f14af1b78fc62
+SIZE (phillbush-xclickroot-v1.1_GH0.tar.gz) = 2250
+SHA256 (1.patch) = ab78b9b7c7eb7380d4d53aa7a774df918bbe53dbb672a9ea5904f5e45064610f
+SIZE (1.patch) = 939

Added: head/x11/xclickroot/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/xclickroot/pkg-descr	Tue Oct  6 11:33:29 2020	(r551574)
@@ -0,0 +1,4 @@
+xclickroot runs a command every time a given mouse button is pressed
+on the root window.
+
+WWW: https://github.com/phillbush/xclickroot



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010061133.096BXTJ5039406>