# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python3_6 ) inherit python-r1 DESCRIPTION="Common files for python scikits" HOMEPAGE="http://projects.scipy.org/scipy/scikits" SRC_URI="mirror://pypi/${PN:0:1}/${PN}.example/${PN}.example-${PV}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="examples" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS}" DEPEND="${DEPEND}" S="${WORKDIR}" src_install() { python_moduleinto scikits python_foreach_impl python_domodule scikits.example*/scikits/__init__.py if use examples; then insinto /usr/share/doc/${PF}/examples doins -r scikits.example*/* fi }