diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2013-04-02 09:35:52 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2013-04-02 09:35:52 +0000 |
commit | 62833658eec70c1fa8307ac5ae03ac399d2d81d1 (patch) | |
tree | 2e381051fb8025dba48a79c651e1901c3db0ef7b /sys-apps | |
parent | version bump (diff) | |
download | gentoo-2-62833658eec70c1fa8307ac5ae03ac399d2d81d1.tar.gz gentoo-2-62833658eec70c1fa8307ac5ae03ac399d2d81d1.tar.bz2 gentoo-2-62833658eec70c1fa8307ac5ae03ac399d2d81d1.zip |
version bump
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key ADC916E5)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/rigo-daemon/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/rigo-daemon/rigo-daemon-189.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/sys-apps/rigo-daemon/ChangeLog b/sys-apps/rigo-daemon/ChangeLog index d1429c219563..169863def511 100644 --- a/sys-apps/rigo-daemon/ChangeLog +++ b/sys-apps/rigo-daemon/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/rigo-daemon # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/rigo-daemon/ChangeLog,v 1.5 2013/03/14 18:24:35 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/rigo-daemon/ChangeLog,v 1.6 2013/04/02 09:35:52 lxnay Exp $ + +*rigo-daemon-189 (02 Apr 2013) + + 02 Apr 2013; Fabio Erculiani <lxnay@gentoo.org> +rigo-daemon-189.ebuild: + version bump *rigo-daemon-183 (14 Mar 2013) diff --git a/sys-apps/rigo-daemon/rigo-daemon-189.ebuild b/sys-apps/rigo-daemon/rigo-daemon-189.ebuild new file mode 100644 index 000000000000..6ef94d07a3b0 --- /dev/null +++ b/sys-apps/rigo-daemon/rigo-daemon-189.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/rigo-daemon/rigo-daemon-189.ebuild,v 1.1 2013/04/02 09:35:52 lxnay Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +inherit eutils python + +MY_PN="RigoDaemon" +DESCRIPTION="Entropy Client DBus Services, aka RigoDaemon" +HOMEPAGE="http://www.sabayon.org" +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" +SRC_URI="mirror://sabayon/sys-apps/entropy-${PV}.tar.bz2" + +S="${WORKDIR}/entropy-${PV}/rigo/${MY_PN}" + +DEPEND="" +RDEPEND="dev-python/dbus-python + dev-python/pygobject:3 + ~sys-apps/entropy-${PV} + sys-auth/polkit[introspection] + sys-devel/gettext" + +src_compile() { + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" +} + +pkg_preinst() { + # ask RigoDaemon to shutdown, if running + # TODO: this will be removed in future + local shutdown_exec=${EROOT}/usr/lib/rigo/${MY_PN}/shutdown.py + [[ -x "${shutdown_exec}" ]] && "${shutdown_exec}" +} + +pkg_postinst() { + python_mod_optimize "/usr/lib/rigo/${MY_PN}" +} + +pkg_postrm() { + python_mod_cleanup "/usr/lib/rigo/${MY_PN}" +} |