Date: Sun, 3 Mar 2019 11:58:46 +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: r494503 - in head/x11: . j4-dmenu-desktop Message-ID: <201903031158.x23BwkJZ090864@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: 0mp Date: Sun Mar 3 11:58:46 2019 New Revision: 494503 URL: https://svnweb.freebsd.org/changeset/ports/494503 Log: New port: x11/j4-dmenu-dekstop: Fast desktop menu (i3-dmenu-desktop replacement) j4-dmenu-desktop is a replacement for i3-dmenu-desktop. It's purpose is to find .desktop files and offer you a menu to start an application using dmenu. Since r2.7 j4-dmenu-desktop doesn't require i3wm anymore and should work just fine on about any desktop environment. You can also execute shell commands using it. WWW: https://github.com/enkore/j4-dmenu-desktop Reviewed by: mat Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D18911 Added: head/x11/j4-dmenu-desktop/ head/x11/j4-dmenu-desktop/Makefile (contents, props changed) head/x11/j4-dmenu-desktop/distinfo (contents, props changed) head/x11/j4-dmenu-desktop/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sun Mar 3 11:57:19 2019 (r494502) +++ head/x11/Makefile Sun Mar 3 11:58:46 2019 (r494503) @@ -110,6 +110,7 @@ SUBDIR += imwheel SUBDIR += innerspace SUBDIR += ipager + SUBDIR += j4-dmenu-desktop SUBDIR += kb2mb2 SUBDIR += kde-baseapps SUBDIR += kde5 Added: head/x11/j4-dmenu-desktop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/j4-dmenu-desktop/Makefile Sun Mar 3 11:58:46 2019 (r494503) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= j4-dmenu-desktop +DISTVERSIONPREFIX= r +DISTVERSION= 2.17 +CATEGORIES= x11 + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Fast desktop menu (i3-dmenu-desktop replacement) + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= enkore + +CMAKE_OFF= WITH_TESTS + +PLIST_FILES= bin/j4-dmenu-desktop \ + man/man1/j4-dmenu-desktop.1.gz +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install: + ${INSTALL_MAN} ${WRKSRC}/j4-dmenu-desktop.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/x11/j4-dmenu-desktop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/j4-dmenu-desktop/distinfo Sun Mar 3 11:58:46 2019 (r494503) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551283499 +SHA256 (enkore-j4-dmenu-desktop-r2.17_GH0.tar.gz) = 78f6e5a534d8b675ee9fcdd4d5a61f18125089af2b094306fdaca72795ba5f49 +SIZE (enkore-j4-dmenu-desktop-r2.17_GH0.tar.gz) = 33531 Added: head/x11/j4-dmenu-desktop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/j4-dmenu-desktop/pkg-descr Sun Mar 3 11:58:46 2019 (r494503) @@ -0,0 +1,8 @@ +j4-dmenu-desktop is a replacement for i3-dmenu-desktop. It's purpose is to find +.desktop files and offer you a menu to start an application using dmenu. Since +r2.7 j4-dmenu-desktop doesn't require i3wm anymore and should work just fine on +about any desktop environment. + +You can also execute shell commands using it. + +WWW: https://github.com/enkore/j4-dmenu-desktop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903031158.x23BwkJZ090864>