diff options
author | Justin Lecher <jlec@gentoo.org> | 2018-06-23 19:36:09 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2018-06-23 19:36:56 +0100 |
commit | 3abbba9a1777bc050e67c510c1327f8a378c6e6e (patch) | |
tree | 7dd4d7653198632432060e16473576feb92c58ef /sys-cluster/ucx/ucx-1.3.0.ebuild | |
parent | sys-cluster/ucx: Fix numa support (diff) | |
download | gentoo-3abbba9a1777bc050e67c510c1327f8a378c6e6e.tar.gz gentoo-3abbba9a1777bc050e67c510c1327f8a378c6e6e.tar.bz2 gentoo-3abbba9a1777bc050e67c510c1327f8a378c6e6e.zip |
sys-cluster/ucx: Version Bump
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sys-cluster/ucx/ucx-1.3.0.ebuild')
-rw-r--r-- | sys-cluster/ucx/ucx-1.3.0.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sys-cluster/ucx/ucx-1.3.0.ebuild b/sys-cluster/ucx/ucx-1.3.0.ebuild new file mode 100644 index 000000000000..eb6c279f6453 --- /dev/null +++ b/sys-cluster/ucx/ucx-1.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Unified Communication X" +HOMEPAGE="http://www.openucx.org" +SRC_URI="https://github.com/openucx/ucx/releases/download/v${PV}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="+numa +openmp" + +RDEPEND=" + numa? ( sys-process/numactl ) +" + +src_configure() { + BASE_CFLAGS="" \ + econf \ + --disable-compiler-opt \ + $(use_enable numa) \ + $(use_enable openmp) +} |