Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Sep 2020 19:43:32 +0000 (UTC)
From:      Nicola Vitale <nivit@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r550074 - in head/deskutils: . clipnotify
Message-ID:  <202009251943.08PJhWAi054158@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nivit
Date: Fri Sep 25 19:43:32 2020
New Revision: 550074
URL: https://svnweb.freebsd.org/changeset/ports/550074

Log:
  clipnotify is a simple program that, using the XFIXES extension to X11,
  waits until a new selection is available and then exits.
  
  It was primarily designed for clipmenu, to avoid polling for new selections.
  
  WWW: https://github.com/cdown/clipnotify

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

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Fri Sep 25 19:38:18 2020	(r550073)
+++ head/deskutils/Makefile	Fri Sep 25 19:43:32 2020	(r550074)
@@ -31,6 +31,7 @@
     SUBDIR += charmtimetracker
     SUBDIR += chart
     SUBDIR += clipit
+    SUBDIR += clipnotify
     SUBDIR += conkyforecast
     SUBDIR += copyq
     SUBDIR += countdown

Added: head/deskutils/clipnotify/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipnotify/Makefile	Fri Sep 25 19:43:32 2020	(r550074)
@@ -0,0 +1,29 @@
+# Created by: Nicola Stanislao Vitale <nivit@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	clipnotify
+DISTVERSION=	1.0.2
+CATEGORIES=	deskutils
+
+MAINTAINER=	nivit@FreeBSD.org
+COMMENT=	Program to notify on new X clipboard events
+
+LICENSE=	PD
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		xorg
+
+PLIST_FILES=	bin/${PORTNAME}
+
+USE_XORG=	x11 xfixes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	cdown
+
+post-extract:
+	@${REINPLACE_CMD} -e 's,/usr/X11R6,$${LOCALBASE},g' ${WRKSRC}/Makefile
+
+do-install:
+	@cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/deskutils/clipnotify/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipnotify/distinfo	Fri Sep 25 19:43:32 2020	(r550074)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1601047662
+SHA256 (cdown-clipnotify-1.0.2_GH0.tar.gz) = 949125472e8b7d8718ade926812ae99676b86c2f95c54f7bf47ab00ac8edc93c
+SIZE (cdown-clipnotify-1.0.2_GH0.tar.gz) = 1318

Added: head/deskutils/clipnotify/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipnotify/pkg-descr	Fri Sep 25 19:43:32 2020	(r550074)
@@ -0,0 +1,6 @@
+clipnotify is a simple program that, using the XFIXES extension to X11,
+waits until a new selection is available and then exits.
+
+It was primarily designed for clipmenu, to avoid polling for new selections.
+
+WWW: https://github.com/cdown/clipnotify



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