Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Sep 2020 19:44:49 +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: r550075 - in head/deskutils: . clipmenu
Message-ID:  <202009251944.08PJinwe054410@repo.freebsd.org>

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

Log:
  clipmenu is a simple clipboard manager using dmenu (or rofi with
  CM_LAUNCHER=rofi) and xsel.
  
  WWW: https://github.com/cdown/clipmenu

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

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Fri Sep 25 19:43:32 2020	(r550074)
+++ head/deskutils/Makefile	Fri Sep 25 19:44:49 2020	(r550075)
@@ -31,6 +31,7 @@
     SUBDIR += charmtimetracker
     SUBDIR += chart
     SUBDIR += clipit
+    SUBDIR += clipmenu
     SUBDIR += clipnotify
     SUBDIR += conkyforecast
     SUBDIR += copyq

Added: head/deskutils/clipmenu/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipmenu/Makefile	Fri Sep 25 19:44:49 2020	(r550075)
@@ -0,0 +1,49 @@
+# Created by: Nicola Stanislao Vitale <nivit@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	clipmenu
+DISTVERSION=	6.1.0
+CATEGORIES=	deskutils
+
+MAINTAINER=	nivit@FreeBSD.org
+COMMENT=	Clipboard management using dmenu, rofi or fzf
+
+LICENSE=	PD
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	bash:shells/bash \
+		clipnotify:deskutils/clipnotify \
+		xsel:x11/xsel-conrad
+
+USES=		xorg
+
+PLIST_FILES=	bin/clipctl bin/clipdel bin/clipfsck bin/clipmenu bin/clipmenud
+
+OPTIONS_DEFAULT=	DMENU
+OPTIONS_SINGLE=	LAUNCHER
+OPTIONS_SINGLE_LAUNCHER=	DMENU FZF ROFI
+
+DMENU_DESC=	Use dmenu to show clipboard selections
+FZF_DESC=	Use fzf to manage clipboard selections
+ROFI_DESC=	Use rofi to show clipboard selections
+
+DMENU_RUN_DEPENDS=	dmenu:x11/dmenu
+FZF_RUN_DEPENDS=	fzf:textproc/fzf
+ROFI_RUN_DEPENDS=	rofi:x11/rofi
+
+USE_XORG=	x11 xfixes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	cdown
+
+post-extract:
+	@${REINPLACE_CMD} -e '3s,dmenu,${SELECTED_OPTIONS:tl},1' ${WRKSRC}/clipmenu
+
+do-build:
+	${DO_NADA}
+
+do-install:
+	@cd ${WRKSRC} && ${INSTALL_SCRIPT} clipctl clipdel clipfsck clipmenu clipmenud \
+		${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/deskutils/clipmenu/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipmenu/distinfo	Fri Sep 25 19:44:49 2020	(r550075)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1601050352
+SHA256 (cdown-clipmenu-6.1.0_GH0.tar.gz) = 1b5da22fac3bbee254267f9274746f747019c5f9a1f53cde0ddc1591053d2342
+SIZE (cdown-clipmenu-6.1.0_GH0.tar.gz) = 8711

Added: head/deskutils/clipmenu/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/clipmenu/pkg-descr	Fri Sep 25 19:44:49 2020	(r550075)
@@ -0,0 +1,4 @@
+clipmenu is a simple clipboard manager using dmenu (or rofi with
+CM_LAUNCHER=rofi) and xsel.
+
+WWW: https://github.com/cdown/clipmenu



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