From 7a50669a6433ae0fb8dfd0af7ccb3cc1bb0dc4f2 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 11 Mar 2023 11:01:11 +0100 Subject: [PATCH] gui-apps/tofi: add 0.8.1 Signed-off-by: Michael Mair-Keimberger --- gui-apps/tofi/Manifest | 1 + gui-apps/tofi/metadata.xml | 11 ++++++++ gui-apps/tofi/tofi-0.8.1.ebuild | 45 +++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 gui-apps/tofi/Manifest create mode 100644 gui-apps/tofi/metadata.xml create mode 100644 gui-apps/tofi/tofi-0.8.1.ebuild diff --git a/gui-apps/tofi/Manifest b/gui-apps/tofi/Manifest new file mode 100644 index 0000000000..0004959a6a --- /dev/null +++ b/gui-apps/tofi/Manifest @@ -0,0 +1 @@ +DIST tofi-0.8.1.tar.gz 352696 BLAKE2B c882f8915623188d7614f2bf06ed92fef358cf9acae2a1f1f2e34a812098bf3897a054428c5fbfa88231bc1153c02219611d7596e6e3dbc9148cd57359d79753 SHA512 61e7621ff7ee9dad44ebab9b49b2afc8eebe40f17eb3c8911443810b9e8efb108a96e63e2cbb459c584583ee3a7ef2a23308783ead0a184ebcb36eba31f52dce diff --git a/gui-apps/tofi/metadata.xml b/gui-apps/tofi/metadata.xml new file mode 100644 index 0000000000..1c0b49df83 --- /dev/null +++ b/gui-apps/tofi/metadata.xml @@ -0,0 +1,11 @@ + + + + + mmk@levelnine.at + Michael Mair-Keimberger + + + philj56/tofi + + diff --git a/gui-apps/tofi/tofi-0.8.1.ebuild b/gui-apps/tofi/tofi-0.8.1.ebuild new file mode 100644 index 0000000000..07aca8fdd0 --- /dev/null +++ b/gui-apps/tofi/tofi-0.8.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Fast and simple dmenu/rofi replacement for wlroots-based Wayland compositors" +HOMEPAGE="https://github.com/philj56/tofi" +SRC_URI="https://github.com/philj56/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+man" + +RDEPEND=" + dev-libs/glib + dev-libs/wayland + media-libs/freetype:2 + media-libs/harfbuzz + x11-libs/cairo + x11-libs/pango + x11-libs/libxkbcommon +" + +DEPEND=" + ${RDEPEND} + dev-libs/wayland-protocols + dev-util/wayland-scanner + elibc_musl? ( sys-libs/fts-standalone ) + " + +BDEPEND=" + virtual/pkgconfig + man? ( app-text/scdoc ) + " + +src_configure() { + local emesonargs=( + $(meson_feature man man-pages) + ) + meson_src_configure +}