# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{9..11} ) inherit python-r1 DESCRIPTION="Generic Colouriser beautifies your logfiles or output of commands" HOMEPAGE="http://kassiopeia.juls.savba.sk/~garabik/software/grc.html" SRC_URI="https://github.com/garabik/grc/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS}" BDEPEND="${RDEPEND}" DOCS=( README.markdown INSTALL TODO debian/changelog CREDITS Regexp.txt ) src_prepare() { sed \ -e 's:#! :#!:g' \ -e 's:3$::g' \ -i grc grcat || die default } src_install() { python_foreach_impl python_doscript grc grcat einstalldocs insinto /usr/share/grc doins \ contrib/mrsmith/conf.* \ colourfiles/conf.* \ grc.sh \ grc.fish \ grc.zsh insinto /etc doins grc.conf doman *.1 } pkg_postinst() { elog elog "Shell specific configurations can be found in ${EROOT}/usr/share/grc" elog "Be sure to symlink one to use grc globally:" elog elog " ln -s ${EROOT}/usr/share/grc/grc.SHELL ${EROOT}/etc/profile.d/grc.sh" elog elog "Replace 'SHELL' in the above command with one of: bashrc, fish, zsh." elog "Afterwards, use '. ${EROOT}/etc/profile' to activate grc in existing" elog "shell sessions." elog }