From: Justin Lecher Date: Sat, 23 Jun 2018 17:48:49 +0000 (+0100) Subject: sys-cluster/ucx: Fix numa support X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b55ebbeeeff8e43fe6be587c990d3c662c603128;p=gentoo.git sys-cluster/ucx: Fix numa support Closes: https://bugs.gentoo.org/654432 Signed-off-by: Justin Lecher Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- diff --git a/sys-cluster/ucx/metadata.xml b/sys-cluster/ucx/metadata.xml index d11a30befa7f..6af00b86c7fa 100644 --- a/sys-cluster/ucx/metadata.xml +++ b/sys-cluster/ucx/metadata.xml @@ -9,4 +9,7 @@ cluster@gentoo.org Gentoo Cluster Project + + Add support for numa memory allocation + diff --git a/sys-cluster/ucx/ucx-1.2.2.ebuild b/sys-cluster/ucx/ucx-1.2.2-r1.ebuild similarity index 73% rename from sys-cluster/ucx/ucx-1.2.2.ebuild rename to sys-cluster/ucx/ucx-1.2.2-r1.ebuild index 0b581f7bf566..c3bf36aa7359 100644 --- a/sys-cluster/ucx/ucx-1.2.2.ebuild +++ b/sys-cluster/ucx/ucx-1.2.2-r1.ebuild @@ -12,12 +12,16 @@ 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="" +IUSE="+numa +openmp" + +RDEPEND=" + numa? ( sys-process/numactl ) +" src_prepare() { default sed \ - -e '/^BASE_CFLAGS/s:=.*:=:g' \ + -e '/BASE_CFLAGS=/s:=".*":=:g' \ -i config/m4/compiler.m4 || die eautoreconf } @@ -25,5 +29,7 @@ src_prepare() { src_configure() { BASE_CFLAGS="" \ econf \ - --disable-compiler-opt + --disable-compiler-opt \ + $(use_enable numa) \ + $(use_enable openmp) }