summaryrefslogtreecommitdiff
blob: d7ad455c4f27a884b0b3a4bb76250aa04d06be68 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MAKE_MAKEFILE_GENERATOR="ninja"

PYTHON_COMPAT=( python3_{6,7} )

inherit cmake-utils python-r1

DESCRIPTION="Gromacs API bindings"
HOMEPAGE="https://github.com/kassonlab/gmxapi"
SRC_URI="https://github.com/kassonlab/gmxapi/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

DEPEND="
	${PYTHON_DEPS}
	>=sci-chemistry/gromacs-2019:="
RDEPEND="
	${DEPEND}
	sci-libs/scikits[${PYTHON_USEDEP}]
	dev-python/networkx[${PYTHON_USEDEP}]
"
BDEPEND=""

src_configure() {
	my_impl_src_configure() {
		local mycmakeargs=(
			-DCMAKE_STRIP="${EPREFIX}/bin/true"
			-DCMAKE_INSTALL_PREFIX="${ED}/usr"
			-DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}"
			-DGMXAPI_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${EPYTHON}/site-packages/gmx"
		)

		cmake-utils_src_configure
	}

	python_foreach_impl my_impl_src_configure
}

src_compile() {
	python_foreach_impl cmake-utils_src_make
}

src_install() {
	my_impl_src_install() {
		cd "${BUILD_DIR}" || die
		cmake-utils_src_install
		python_optimize
	}

	python_foreach_impl my_impl_src_install
}