2021-08-20 15:58:48 +02:00
|
|
|
# Copyright 1999-2020 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2023-07-20 20:28:34 +02:00
|
|
|
EAPI=8
|
2021-08-20 15:58:48 +02:00
|
|
|
|
2023-07-20 20:28:34 +02:00
|
|
|
PYTHON_COMPAT=( python2_7 python3_{6..12} )
|
2021-08-20 15:58:48 +02:00
|
|
|
|
2023-07-20 20:28:34 +02:00
|
|
|
inherit python-r1 git-r3
|
2021-08-20 15:58:48 +02: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=""
|
|
|
|
|
|
|
|
EGIT_REPO_URI=https://github.com/Sabayon/entropy.git
|
|
|
|
EGIT_COMMIT=${PV}
|
|
|
|
|
|
|
|
S="${WORKDIR}/${P}/rigo/RigoDaemon"
|
|
|
|
|
|
|
|
DEPEND="${PYTHON_DEPS}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
|
|
|
~sys-apps/entropy-${PV}[${PYTHON_USEDEP}]
|
|
|
|
sys-auth/polkit[introspection]
|
|
|
|
sys-devel/gettext"
|
|
|
|
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
installation() {
|
|
|
|
emake DESTDIR="${D}" PYTHON_SITEDIR="$(python_get_sitedir)" install
|
|
|
|
python_optimize
|
|
|
|
}
|
|
|
|
python_foreach_impl installation
|
|
|
|
python_replicate_script "${ED}usr/libexec/RigoDaemon_app.py"
|
|
|
|
}
|