diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2013-08-22 11:12:11 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2013-08-22 11:12:11 +0000 |
commit | 088aaf218818cd239c12f05c5044e9bc2290a38d (patch) | |
tree | eaefd2e219b800b7bf93e3059be8af17fdc20125 /app-admin/equo | |
parent | version bump (diff) | |
download | gentoo-2-088aaf218818cd239c12f05c5044e9bc2290a38d.tar.gz gentoo-2-088aaf218818cd239c12f05c5044e9bc2290a38d.tar.bz2 gentoo-2-088aaf218818cd239c12f05c5044e9bc2290a38d.zip |
version bump
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-admin/equo')
-rw-r--r-- | app-admin/equo/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/equo/equo-216.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/app-admin/equo/ChangeLog b/app-admin/equo/ChangeLog index 2ac062ea6ba6..46d5394eb78b 100644 --- a/app-admin/equo/ChangeLog +++ b/app-admin/equo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/equo # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/equo/ChangeLog,v 1.25 2013/04/02 09:33:56 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/equo/ChangeLog,v 1.26 2013/08/22 11:12:11 lxnay Exp $ + +*equo-216 (22 Aug 2013) + + 22 Aug 2013; Fabio Erculiani <lxnay@gentoo.org> +equo-216.ebuild: + version bump *equo-189 (02 Apr 2013) diff --git a/app-admin/equo/equo-216.ebuild b/app-admin/equo/equo-216.ebuild new file mode 100644 index 000000000000..c931c749cdf4 --- /dev/null +++ b/app-admin/equo/equo-216.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/equo/equo-216.ebuild,v 1.1 2013/08/22 11:12:11 lxnay Exp $ + +EAPI=3 +PYTHON_DEPEND="2" +inherit eutils python bash-completion-r1 + +DESCRIPTION="Entropy Package Manager text-based client" +HOMEPAGE="http://www.sabayon.org" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" +SRC_URI="mirror://sabayon/sys-apps/entropy-${PV}.tar.bz2" + +S="${WORKDIR}/entropy-${PV}" + +DEPEND="~sys-apps/entropy-${PV}" +RDEPEND="${DEPEND} sys-apps/file[python]" + +src_compile() { + cd "${S}"/client || die + emake || die "make failed" +} + +src_install() { + cd "${S}"/client || die + emake DESTDIR="${D}" LIBDIR="usr/lib" install || die "make install failed" + newbashcomp "${S}/misc/equo-completion.bash" equo +} + +pkg_postinst() { + python_mod_optimize "/usr/lib/entropy/client" + echo + elog "If you would like to allow users in the 'entropy' group" + elog "to update available package repositories, please consider" + elog "to install sys-apps/rigo-daemon" + echo +} + +pkg_postrm() { + python_mod_cleanup "/usr/lib/entropy/client" +} |