From owner-svn-ports-head@freebsd.org Fri Sep 25 19:44:50 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D0B773E2739; Fri, 25 Sep 2020 19:44:50 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Byj6p57f3z4Vb1; Fri, 25 Sep 2020 19:44:50 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9386A186AF; Fri, 25 Sep 2020 19:44:50 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08PJio5w054413; Fri, 25 Sep 2020 19:44:50 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08PJinwe054410; Fri, 25 Sep 2020 19:44:49 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <202009251944.08PJinwe054410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Fri, 25 Sep 2020 19:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550075 - in head/deskutils: . clipmenu X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/deskutils: . clipmenu X-SVN-Commit-Revision: 550075 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Sep 2020 19:44:50 -0000 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 +# $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 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