commit: be874ce096ac78ea42957973a604a94cc8457e6b Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> AuthorDate: Sat Nov 18 21:20:24 2023 +0000 Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> CommitDate: Sat Nov 18 21:20:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be874ce0
gui-apps/nwg-shell: revbump, install scripts Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de> gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild new file mode 100644 index 0000000000..b86ccbc904 --- /dev/null +++ b/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +SRC_URI="https://github.com/nwg-piotr/nwg-shell/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="meta-package for the nwg-shell project" +HOMEPAGE="https://github.com/nwg-piotr/nwg-shell" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-misc/gopsuinfo + app-misc/nwg-look + gui-apps/azote + gui-apps/nwg-bar + gui-apps/nwg-displays + || ( gui-apps/nwg-dock gui-apps/nwg-dock-hyprland ) + gui-apps/nwg-drawer + gui-apps/nwg-menu + gui-apps/nwg-panel + gui-apps/nwg-shell-config +" +DEPEND="${RDEPEND}" + +src_install() { + default + dobin scripts/* +} + +pkg_postinst() { + elog "To install nwg-shell for the current user, run" + elog "nwg-shell-installer -w (for sway) or" + elog "nwg-shell-installer -w -hypr (for hyprland)" +}