Skip to content

Instantly share code, notes, and snippets.

@attilaolah
Last active December 10, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save attilaolah/4504170 to your computer and use it in GitHub Desktop.
Save attilaolah/4504170 to your computer and use it in GitHub Desktop.
Ebuild for Byobu version 5.25
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
PYTHON_DEPEND="2"
inherit python
DESCRIPTION="A set of profiles for the GNU Screen console window manager (app-misc/screen)"
HOMEPAGE="https://launchpad.net/byobu"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="screen"
RDEPEND="screen? ( app-misc/screen )
!screen? ( app-misc/tmux )
dev-libs/newt"
src_prepare() {
python_convert_shebangs -r 2 .
# 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() {
emake DESTDIR="${D}" install
# Create symlinks for backends
dosym ${PN} /usr/bin/${PN}-screen
dosym ${PN} /usr/bin/${PN}-tmux
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment