diff options
author | Sebastian Pipping <sping@gentoo.org> | 2013-05-09 01:09:20 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2013-05-09 01:09:20 +0000 |
commit | 998efafa8e420b307350129cd33530c5c163b713 (patch) | |
tree | 8b942060146c513157f53c42ff6413035ee11ec3 /app-portage | |
parent | Remove obsolete patches. (diff) | |
download | gentoo-2-998efafa8e420b307350129cd33530c5c163b713.tar.gz gentoo-2-998efafa8e420b307350129cd33530c5c163b713.tar.bz2 gentoo-2-998efafa8e420b307350129cd33530c5c163b713.zip |
app-portage/elogv: 0.7.6.1 (bug #467084)
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/elogv/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/elogv/elogv-0.7.6.1.ebuild | 75 |
2 files changed, 82 insertions, 1 deletions
diff --git a/app-portage/elogv/ChangeLog b/app-portage/elogv/ChangeLog index 7fda97cc3d7a..02de7254b7cc 100644 --- a/app-portage/elogv/ChangeLog +++ b/app-portage/elogv/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/elogv # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.72 2013/05/02 21:43:45 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.73 2013/05/09 01:09:20 sping Exp $ + +*elogv-0.7.6.1 (09 May 2013) + + 09 May 2013; Sebastian Pipping <sping@gentoo.org> +elogv-0.7.6.1.ebuild: + Bump to 0.7.6.1 including hasufell's patch for supporting compressed log + files (bug #467084) *elogv-0.7.5-r2 (02 May 2013) diff --git a/app-portage/elogv/elogv-0.7.6.1.ebuild b/app-portage/elogv/elogv-0.7.6.1.ebuild new file mode 100644 index 000000000000..c56673d0f3fe --- /dev/null +++ b/app-portage/elogv/elogv-0.7.6.1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/elogv-0.7.6.1.ebuild,v 1.1 2013/05/09 01:09:20 sping Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +PYTHON_USE_WITH="ncurses" + +inherit distutils eutils prefix + +DESCRIPTION="Curses based utility to parse the contents of elogs created by Portage" +HOMEPAGE="https://github.com/gentoo/elogv" +SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="linguas_de linguas_es linguas_it linguas_pl" + +DEPEND="" +RDEPEND="" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + distutils_src_prepare +} + +src_install() { + distutils_src_install + dodoc README || die + + # Remove unused man pages/LC_MESSAGES according to the linguas flags + if ! use linguas_de ; then + rm -rf "${ED}"/usr/share/locale/de + rm -rf "${ED}"/usr/share/man/de + fi + + if ! use linguas_es ; then + rm -rf "${ED}"/usr/share/locale/es + rm -rf "${ED}"/usr/share/man/es + fi + + if ! use linguas_it ; then + rm -rf "${ED}"/usr/share/locale/it + rm -rf "${ED}"/usr/share/man/it + fi + + if ! use linguas_pl ; then + rm -rf "${ED}"/usr/share/locale/pl + rm -rf "${ED}"/usr/share/man/pl + fi +} + +pkg_postinst() { + distutils_pkg_postinst + + elog + elog "In order to use this software, you need to activate" + elog "Portage's elog features. Required is" + elog " PORTAGE_ELOG_SYSTEM=\"save\" " + elog "and at least one out of " + elog " PORTAGE_ELOG_CLASSES=\"warn error info log qa\"" + elog "More information on the elog system can be found" + elog "in ${EPREFIX}/etc/make.conf.example" + elog + elog "To operate properly this software needs the directory" + elog "${PORT_LOGDIR:-${EPREFIX}/var/log/portage}/elog created, belonging to group portage." + elog "To start the software as a user, add yourself to the portage" + elog "group." + elog +} |