diff options
author | Sam James <sam@gentoo.org> | 2020-12-31 23:25:18 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-01 00:00:36 +0000 |
commit | 8558e3c8f373126516caeeb6865a3f0bcc5c2ba2 (patch) | |
tree | 0f3fc26e747f820b72a5131673288a851257c176 /app-misc/byobu/byobu-5.133.ebuild | |
parent | Happy new year 2021! (diff) | |
download | gentoo-8558e3c8f373126516caeeb6865a3f0bcc5c2ba2.tar.gz gentoo-8558e3c8f373126516caeeb6865a3f0bcc5c2ba2.tar.bz2 gentoo-8558e3c8f373126516caeeb6865a3f0bcc5c2ba2.zip |
app-misc/byobu: bump to 5.133
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/byobu/byobu-5.133.ebuild')
-rw-r--r-- | app-misc/byobu/byobu-5.133.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-misc/byobu/byobu-5.133.ebuild b/app-misc/byobu/byobu-5.133.ebuild new file mode 100644 index 000000000000..f3913e0aafd0 --- /dev/null +++ b/app-misc/byobu/byobu-5.133.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) + +inherit python-single-r1 + +DESCRIPTION="A set of profiles for the GNU Screen console window manager (app-misc/screen)" +HOMEPAGE="https://byobu.org" +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="screen" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + $(python_gen_cond_dep 'dev-libs/newt[${PYTHON_MULTI_USEDEP}]') + screen? ( app-misc/screen ) + !screen? ( app-misc/tmux )" + +src_prepare() { + default + + python_fix_shebang . + + # Set default system backend to screen + if use screen ; then + sed -i -e 's/#\(BYOBU_BACKEND\).*/\1="screen"/' etc/byobu/backend || die + fi +} + +src_install() { + default + + # It's easier than forcing autoconf + mv "${ED}/usr/share/doc/${PN}/"* "${ED}/usr/share/doc/${PF}/" || die + rmdir "${ED}/usr/share/doc/${PN}" || die + + # Create symlinks for backends + dosym ${PN} /usr/bin/${PN}-screen + dosym ${PN} /usr/bin/${PN}-tmux + + docompress -x /usr/share/doc/${PN} +} |