diff options
author | 2024-08-30 17:16:38 +0200 | |
---|---|---|
committer | 2024-08-30 17:16:38 +0200 | |
commit | b10114ffadc3e77221982f2b2adc134743113c8e (patch) | |
tree | 81c260b5b5d615ed38fecc4369196e4758de4d9c /x11-misc | |
parent | x11-wm/i3: update EAPI 7 -> 8 (diff) | |
download | gentoo-b10114ffadc3e77221982f2b2adc134743113c8e.tar.gz gentoo-b10114ffadc3e77221982f2b2adc134743113c8e.tar.bz2 gentoo-b10114ffadc3e77221982f2b2adc134743113c8e.zip |
x11-misc/i3blocks: update EAPI 7 -> 8
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/i3blocks/i3blocks-1.5-r2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild b/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild new file mode 100644 index 000000000000..416be1d800fd --- /dev/null +++ b/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools bash-completion-r1 + +DESCRIPTION="highly flexible status line for the i3 window manager" +HOMEPAGE="https://github.com/vivien/i3blocks" +SRC_URI="https://github.com/vivien/i3blocks/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+contrib" + +PDEPEND="contrib? ( x11-misc/i3blocks-contrib )" + +PATCHES=( "${FILESDIR}"/${PN}-disable-bash-completion.patch ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + newbashcomp bash-completion ${PN} +} |