svn commit: r551574 - in head/x11: . xclickroot
Mateusz Piotrowski
0mp at FreeBSD.org
Tue Oct 6 11:33:31 UTC 2020
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 at 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
More information about the svn-ports-all
mailing list