diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2011-08-07 16:48:07 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2011-08-07 16:48:07 +0000 |
commit | 16151cf689fe94ad2aeec022e374f07638b9f386 (patch) | |
tree | 3c5e739186396a8b0ccbdc16b70974b5e694d11d /sys-apps/magneto-core | |
parent | version bump (diff) | |
download | gentoo-2-16151cf689fe94ad2aeec022e374f07638b9f386.tar.gz gentoo-2-16151cf689fe94ad2aeec022e374f07638b9f386.tar.bz2 gentoo-2-16151cf689fe94ad2aeec022e374f07638b9f386.zip |
version bump
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/magneto-core')
-rw-r--r-- | sys-apps/magneto-core/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/magneto-core/magneto-core-1.0_rc34.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/sys-apps/magneto-core/ChangeLog b/sys-apps/magneto-core/ChangeLog index 8607c26a811a..c8a04a31df96 100644 --- a/sys-apps/magneto-core/ChangeLog +++ b/sys-apps/magneto-core/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/magneto-core # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/magneto-core/ChangeLog,v 1.2 2011/08/02 16:56:17 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/magneto-core/ChangeLog,v 1.3 2011/08/07 16:48:07 lxnay Exp $ + +*magneto-core-1.0_rc34 (07 Aug 2011) + + 07 Aug 2011; Fabio Erculiani <lxnay@gentoo.org> + +magneto-core-1.0_rc34.ebuild: + version bump *magneto-core-1.0_rc29 (02 Aug 2011) diff --git a/sys-apps/magneto-core/magneto-core-1.0_rc34.ebuild b/sys-apps/magneto-core/magneto-core-1.0_rc34.ebuild new file mode 100644 index 000000000000..f8ae1e91cce9 --- /dev/null +++ b/sys-apps/magneto-core/magneto-core-1.0_rc34.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/magneto-core/magneto-core-1.0_rc34.ebuild,v 1.1 2011/08/07 16:48:07 lxnay Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +inherit eutils python multilib + +DESCRIPTION="Entropy Package Manager notification applet library" +HOMEPAGE="http://www.sabayon.org" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +SRC_URI="mirror://sabayon/sys-apps/entropy-${PV}.tar.bz2" +S="${WORKDIR}/entropy-${PV}/magneto" + +DEPEND=">=sys-apps/entropy-client-services-${PV}" +RDEPEND="${DEPEND} + x11-misc/xdg-utils" + +src_compile() { + einfo "nothing to compile" +} + +src_install() { + emake DESTDIR="${D}" LIBDIR="usr/$(get_libdir)" magneto-core-install || die "make install failed" +} + +pkg_postinst() { + python_mod_optimize "/usr/$(get_libdir)/entropy/magneto" +} + +pkg_postrm() { + python_mod_cleanup "/usr/$(get_libdir)/entropy/magneto" +} |