blob: 940aa7643b06303594008a19ee8496c1f5ffdc79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit cmake-utils distutils-r1 git-r3
DESCRIPTION="Library for developing parallel, discrete-event simulations in Python"
HOMEPAGE="https://github.com/sim-x"
SRC_URI=""
EGIT_REPO_URI="git://github.com/sim-x/${PN}.git http://github.com/sim-x/${PN}.git"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS=""
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
}
|