# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 PYTHON_COMPAT=( python2_7 ) inherit cmake-utils distutils-r1 DESCRIPTION="Library for developing parallel, discrete-event simulations in Python" HOMEPAGE="https://github.com/sim-x" SRC_URI="https://github.com/sim-x/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="LGPL-2.1" KEYWORDS="~amd64" IUSE="" RDEPEND=" virtual/mpi dev-libs/boost[python,${PYTHON_USEDEP}] dev-python/greenlet[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-util/cmake" python_prepare_all() { # don't do egg install sed \ -e 's/self.do_egg_install()/_install.install.run(self)/' \ -i setup.py || die distutils-r1_python_prepare_all }