From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 68F551381F3 for ; Sat, 11 Jul 2020 15:59:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94632E07D7; Sat, 11 Jul 2020 15:59:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7ED2FE07D7 for ; Sat, 11 Jul 2020 15:59:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F1E434F747 for ; Sat, 11 Jul 2020 15:59:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5176D26 for ; Sat, 11 Jul 2020 15:59:46 +0000 (UTC) From: "Matthias Coppens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Coppens" Message-ID: <1594483171.4dfbbdfee30e5448e43bacc245ec83a68443f63e.coppens.matthias@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-launchers/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/nwg-launchers/metadata.xml gui-apps/nwg-launchers/nwg-launchers-9999.ebuild X-VCS-Directories: gui-apps/nwg-launchers/ X-VCS-Committer: coppens.matthias X-VCS-Committer-Name: Matthias Coppens X-VCS-Revision: 4dfbbdfee30e5448e43bacc245ec83a68443f63e X-VCS-Branch: dev Date: Sat, 11 Jul 2020 15:59:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dd2894ec-e757-4865-b36c-af383f382785 X-Archives-Hash: 0e658a95dcba18538935345289030b81 commit: 4dfbbdfee30e5448e43bacc245ec83a68443f63e Author: Matthias Coppens gmail com> AuthorDate: Sat Jul 11 15:58:26 2020 +0000 Commit: Matthias Coppens gmail com> CommitDate: Sat Jul 11 15:59:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4dfbbdfe gui-apps/nwg-launchers: New package Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Matthias Coppens gmail.com> gui-apps/nwg-launchers/metadata.xml | 16 ++++++++++++ gui-apps/nwg-launchers/nwg-launchers-9999.ebuild | 32 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/gui-apps/nwg-launchers/metadata.xml b/gui-apps/nwg-launchers/metadata.xml new file mode 100644 index 0000000..60f8909 --- /dev/null +++ b/gui-apps/nwg-launchers/metadata.xml @@ -0,0 +1,16 @@ + + + + + coppens.matthias.abc@gmail.com + Matthias Coppens + + + Installs nwgbar, + a horizontal or vertical button bar. + Installs nwgdmenu and nwgdmenu_run, + GTK dynamic menu windows. + Installs nwggrid, + a GNOME-like application grid. + + diff --git a/gui-apps/nwg-launchers/nwg-launchers-9999.ebuild b/gui-apps/nwg-launchers/nwg-launchers-9999.ebuild new file mode 100644 index 0000000..169b86e --- /dev/null +++ b/gui-apps/nwg-launchers/nwg-launchers-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://github.com/nwg-piotr/${PN}" +case "${PV}" in + 9999) + inherit git-r3 + ;; + *) + SRC_URI="${EGIT_REPO_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +esac +inherit meson + +DESCRIPTION="GTK+ launchers for sway, i3 and some other WMs" +HOMEPAGE="${EGIT_REPO_URI}" +LICENSE="GPL-3" + +SLOT="0" + +RDEPEND=" + x11-libs/gtk+:3 + dev-cpp/gtkmm:3.0 + dev-cpp/nlohmann_json" +DEPEND="${RDEPEND}" + +IUSE="+bar +dmenu +grid" + +src_configure() { + meson_src_configure $(meson_use bar) $(meson_use dmenu) $(meson_use grid) +}