38 lines
838 B
Bash
38 lines
838 B
Bash
|
# Copyright 1999-2019 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
PYTHON_COMPAT=( python2_7 python3_6 python3_7 python3_8 python3_9 )
|
||
|
|
||
|
inherit eutils python-r1 multilib git-r3
|
||
|
|
||
|
DESCRIPTION="Entropy Package Manager notification applet library"
|
||
|
HOMEPAGE="http://www.sabayon.org"
|
||
|
LICENSE="GPL-2"
|
||
|
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~arm ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
EGIT_REPO_URI=https://github.com/Sabayon/entropy.git
|
||
|
EGIT_COMMIT=${PV}
|
||
|
|
||
|
S="${WORKDIR}/${P}/magneto"
|
||
|
|
||
|
DEPEND="~sys-apps/rigo-daemon-${PV}[${PYTHON_USEDEP}]
|
||
|
${PYTHON_DEPS}"
|
||
|
RDEPEND="${DEPEND}
|
||
|
x11-misc/xdg-utils"
|
||
|
|
||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||
|
|
||
|
src_install() {
|
||
|
installation() {
|
||
|
emake DESTDIR="${D}" LIBDIR="usr/lib" PYTHON_SITEDIR="$(python_get_sitedir)" \
|
||
|
magneto-core-install
|
||
|
python_optimize
|
||
|
}
|
||
|
python_foreach_impl installation
|
||
|
}
|