This commit fixes a regression in the previous ebuild that was
installing grc.bashrc into /etc/profile.d unconditionally. The new
version installs them all to /usr/share/grc and lets the user decide how
to integrate it with their system.
Thanks to Torbjörn Lönnemark, poncho, Andreas Porteus.
Closes: https://bugs.gentoo.org/620138
Package-Manager: Portage-2.3.13, Repoman-2.3.4
insinto /usr/share/grc
doins \
contrib/mrsmith/conf.* \
- colourfiles/conf.*
- insinto /etc/profile.d
- newins grc.bashrc grc.sh
+ colourfiles/conf.* \
+ grc.bashrc \
+ grc.fish \
+ grc.zsh
insinto /etc
doins grc.conf
dodoc README.markdown INSTALL TODO debian/changelog CREDITS Regexp.txt
doman *.1
}
+
+pkg_postinst() {
+ elog
+ elog "Shell specific configurations can be found in ${ROOT}usr/share/grc"
+ elog "Be sure to symlink one to use grc globally:"
+ elog
+ elog " ln -s ${ROOT}usr/share/grc.SHELL ${ROOT}etc/profile.d/grc.sh"
+ elog
+ elog "Replace 'SHELL' in the above command with one of: bashrc, fish, zsh."
+ elog "Afterwards, use '. ${ROOT}etc/profile' to activate grc in existing"
+ elog "shell sessions."
+ elog
+}