2013-03-15 18:35:50 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-12-18 16:45:11 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/rigo-daemon/rigo-daemon-254.ebuild,v 1.1 2013/12/18 05:05:03 lxnay Exp $
|
2013-03-15 18:35:50 +04:00
|
|
|
|
2013-12-18 16:45:11 +04:00
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
|
|
|
|
inherit eutils python-single-r1
|
2013-03-15 18:35:50 +04:00
|
|
|
|
|
|
|
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}"
|
|
|
|
|
2013-12-18 16:45:11 +04:00
|
|
|
DEPEND="${PYTHON_DEPS}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
|
|
dev-python/dbus-python
|
2013-03-15 18:35:50 +04:00
|
|
|
dev-python/pygobject:3
|
2013-12-18 16:45:11 +04:00
|
|
|
~sys-apps/entropy-${PV}[${PYTHON_USEDEP}]
|
2013-03-15 18:35:50 +04:00
|
|
|
sys-auth/polkit[introspection]
|
|
|
|
sys-devel/gettext"
|
|
|
|
|
2013-12-18 16:45:11 +04:00
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
2013-03-15 18:35:50 +04:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
2013-12-18 16:45:11 +04:00
|
|
|
|
|
|
|
python_optimize "${D}/usr/lib/rigo/${MY_PN}"
|
2013-03-15 18:35:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
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}"
|
|
|
|
}
|