Date: Fri, 17 Apr 2020 07:08:02 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531909 - in head/x11: . dmenu-wayland Message-ID: <202004170708.03H782aY005398@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Apr 17 07:08:02 2020 New Revision: 531909 URL: https://svnweb.freebsd.org/changeset/ports/531909 Log: New port x11/dmenu-wayland dmenu-wayland is a minimalistic Wayland menu. It reads a newline separated list of items from stdin and shows them as a menu on the top of the screen. When the user selects one item or types any text and presses Enter, their choice is printed to stdout. dmenu-wayland is inspired by https://tools.suckless.org/dmenu WWW: https://github.com/nyyManni/dmenu-wayland Added: head/x11/dmenu-wayland/ head/x11/dmenu-wayland/Makefile (contents, props changed) head/x11/dmenu-wayland/distinfo (contents, props changed) head/x11/dmenu-wayland/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Fri Apr 17 06:59:19 2020 (r531908) +++ head/x11/Makefile Fri Apr 17 07:08:02 2020 (r531909) @@ -52,6 +52,7 @@ SUBDIR += deskpaint SUBDIR += dmenu SUBDIR += dmenu2 + SUBDIR += dmenu-wayland SUBDIR += docker-tray SUBDIR += dsbautostart SUBDIR += dxpc Added: head/x11/dmenu-wayland/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dmenu-wayland/Makefile Fri Apr 17 07:08:02 2020 (r531909) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= dmenu-wayland +PORTVERSION= 0.1 +DISTVERSIONPREFIX= v +CATEGORIES= x11 + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Efficient dynamic menu for wayland + +LICENSE= MIT +LICENSE_FILES= ${WRKSRC}/LICENSE + +USES= gnome meson pkgconfig + +LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libxkbcommon.so:x11/libxkbcommon + +USE_GITHUB= yes +GH_ACCOUNT= nyyManni + +USE_GNOME= cairo glib20 pango + +PLIST_FILES= bin/dmenu-wl \ + bin/dmenu-wl_path \ + bin/dmenu-wl_run \ + man/man1/dmenu-wl.1.gz + +.include <bsd.port.mk> Added: head/x11/dmenu-wayland/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dmenu-wayland/distinfo Fri Apr 17 07:08:02 2020 (r531909) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587086116 +SHA256 (nyyManni-dmenu-wayland-v0.1_GH0.tar.gz) = dcbc70156e138b2bb8788aeebf75af14f75e188ed78865840e341b5375ed6614 +SIZE (nyyManni-dmenu-wayland-v0.1_GH0.tar.gz) = 18436 Added: head/x11/dmenu-wayland/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dmenu-wayland/pkg-descr Fri Apr 17 07:08:02 2020 (r531909) @@ -0,0 +1,8 @@ +dmenu-wayland is a minimalistic Wayland menu. It reads a newline separated list +of items from stdin and shows them as a menu on the top of the screen. +When the user selects one item or types any text and presses Enter, their choice +is printed to stdout. + +dmenu-wayland is inspired by https://tools.suckless.org/dmenu + +WWW: https://github.com/nyyManni/dmenu-wayland
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004170708.03H782aY005398>