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 4B09E138359 for ; Sun, 12 Jul 2020 11:57:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FEA5E07A7; Sun, 12 Jul 2020 11:57:43 +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 09DB3E07A7 for ; Sun, 12 Jul 2020 11:57:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CE2F934FB10 for ; Sun, 12 Jul 2020 11:57:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2E142D7 for ; Sun, 12 Jul 2020 11:57:36 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1594483171.4dfbbdfee30e5448e43bacc245ec83a68443f63e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 4dfbbdfee30e5448e43bacc245ec83a68443f63e X-VCS-Branch: master Date: Sun, 12 Jul 2020 11:57:36 +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: d3f75985-ffd3-4a4b-8683-56e5c9bcac6a X-Archives-Hash: 4f49c5db0cf635c782a78a2724a1f985 commit: 4dfbbdfee30e5448e43bacc245ec83a68443f63e Author: Matthias Coppens gmail com> AuthorDate: Sat Jul 11 15:58:26 2020 +0000 Commit: Andrew Ammerlaan riseup net> 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) +}