From fd7e87a041dd46bee6b6e52a598b9ab72c7d9206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Thu, 10 Aug 2023 23:21:41 +0200 Subject: [PATCH] gui-apps/nwg-panel: revbump, install desktop files and icons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Jäger --- gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild | 56 +++++++++++++++++++ gui-apps/nwg-panel/nwg-panel-9999.ebuild | 23 +++++++- 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild diff --git a/gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild b/gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild new file mode 100644 index 0000000000..fb2abcd70b --- /dev/null +++ b/gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit desktop distutils-r1 systemd xdg-utils + +if [[ "${PV}" == 9999 ]] +then + inherit git-r3 + EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-panel.git" +else + SRC_URI="https://github.com/nwg-piotr/nwg-panel/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors" +HOMEPAGE="https://github.com/nwg-piotr/nwg-panel" +LICENSE="MIT" +IUSE="systemd" + +SLOT="0" + +RDEPEND=" + x11-libs/gtk+:3 + dev-python/pygobject[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/i3ipc[${PYTHON_USEDEP}] + dev-python/dasbus[${PYTHON_USEDEP}] + gui-apps/nwg-icon-picker + media-sound/playerctl + gui-libs/gtk-layer-shell +" +DEPEND="${RDEPEND}" + +python_install_all() { + distutils-r1_python_install_all + domenu nwg-panel-config.desktop + domenu nwg-processes.desktop + doicon nwg-panel.svg + doicon nwg-processes.svg + doicon nwg-shell.svg + if use systemd; then + systemd_dounit nwg-panel.service + fi +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} diff --git a/gui-apps/nwg-panel/nwg-panel-9999.ebuild b/gui-apps/nwg-panel/nwg-panel-9999.ebuild index 0319f9345c..fb2abcd70b 100644 --- a/gui-apps/nwg-panel/nwg-panel-9999.ebuild +++ b/gui-apps/nwg-panel/nwg-panel-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit desktop distutils-r1 systemd xdg-utils if [[ "${PV}" == 9999 ]] then @@ -19,6 +19,7 @@ fi DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors" HOMEPAGE="https://github.com/nwg-piotr/nwg-panel" LICENSE="MIT" +IUSE="systemd" SLOT="0" @@ -33,3 +34,23 @@ RDEPEND=" gui-libs/gtk-layer-shell " DEPEND="${RDEPEND}" + +python_install_all() { + distutils-r1_python_install_all + domenu nwg-panel-config.desktop + domenu nwg-processes.desktop + doicon nwg-panel.svg + doicon nwg-processes.svg + doicon nwg-shell.svg + if use systemd; then + systemd_dounit nwg-panel.service + fi +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}