diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2016-07-20 13:43:25 -0600 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2016-07-20 13:43:52 -0600 |
commit | 59bedff3fe8853c82ae6a861f236ed4a0b4f39b6 (patch) | |
tree | fd8bcc0a893e5bb21195163f327cd6a7b6120094 /sci-physics | |
parent | app-editors/focuswriter: version bump (diff) | |
download | gentoo-59bedff3fe8853c82ae6a861f236ed4a0b4f39b6.tar.gz gentoo-59bedff3fe8853c82ae6a861f236ed4a0b4f39b6.tar.bz2 gentoo-59bedff3fe8853c82ae6a861f236ed4a0b4f39b6.zip |
sci-physics/hoomd-blue: import live ebuild from sci
Package-Manager: portage-2.2.28
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild new file mode 100644 index 000000000000..5b01964b32c8 --- /dev/null +++ b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +CMAKE_MAKEFILE_GENERATOR="ninja" + +inherit cmake-utils cuda flag-o-matic git-r3 python-single-r1 + +DESCRIPTION="a general-purpose particle simulation toolkit" +HOMEPAGE="http://codeblue.umich.edu/hoomd-blue/" +EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git" + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64" + EGIT_COMMIT="v${PV}" +fi + +LICENSE="hoomd-blue" +SLOT="0" +IUSE="cuda test mpi +zlib" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + mpi? ( virtual/mpi ) + cuda? ( dev-util/nvidia-cuda-sdk ) + zlib? ( sys-libs/zlib ) + dev-libs/boost:=[threads,python,mpi,${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +src_prepare() { + use cuda && cuda_src_prepare + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DENABLE_MPI=$(usex mpi) + -DENABLE_DOXYGEN=OFF #$( + -DENABLE_CUDA=$(usex cuda) + -DBUILD_TESTING=$(usex test) + -DPYTHON_EXECUTABLE="${PYTHON}" + -DCMAKE_INSTALL_PREFIX=$(python_get_sitedir) + ) + cmake-utils_src_configure +} |