sys-cluster/ucx: New package
authorJustin Lecher <jlec@gentoo.org>
Sun, 1 Apr 2018 20:36:57 +0000 (21:36 +0100)
committerJustin Lecher <jlec@gentoo.org>
Sun, 1 Apr 2018 20:51:33 +0000 (21:51 +0100)
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Package-Manager: Portage-2.3.27, Repoman-2.3.9

sys-cluster/ucx/Manifest [new file with mode: 0644]
sys-cluster/ucx/metadata.xml [new file with mode: 0644]
sys-cluster/ucx/ucx-1.2.2.ebuild [new file with mode: 0644]

diff --git a/sys-cluster/ucx/Manifest b/sys-cluster/ucx/Manifest
new file mode 100644 (file)
index 0000000..e007677
--- /dev/null
@@ -0,0 +1 @@
+DIST ucx-1.2.2.tar.gz 1513611 BLAKE2B 488b9b3cecc2c617b1209036e1342e4378459db6a5e93eab1d88dfe80cb0d9c8013c767413206f0fbd0105557ed89994ab510421068d709101336a7b3d2eac5e SHA512 515c382826310b9aa7179ab19ceb76a881a41e6786514219b7f703c6144fa57ca141bceb3b80523ae1b4e2a4b13e9abcb9df063612b376d894c5cd81cdc00571
diff --git a/sys-cluster/ucx/metadata.xml b/sys-cluster/ucx/metadata.xml
new file mode 100644 (file)
index 0000000..d11a30b
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>jlec@gentoo.org</email>
+               <name>Justin Lecher</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>cluster@gentoo.org</email>
+               <name>Gentoo Cluster Project</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/sys-cluster/ucx/ucx-1.2.2.ebuild b/sys-cluster/ucx/ucx-1.2.2.ebuild
new file mode 100644 (file)
index 0000000..0b581f7
--- /dev/null
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+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=""
+
+src_prepare() {
+       default
+       sed \
+               -e '/^BASE_CFLAGS/s:=.*:=:g' \
+               -i config/m4/compiler.m4 || die
+       eautoreconf
+}
+
+src_configure() {
+       BASE_CFLAGS="" \
+       econf \
+               --disable-compiler-opt
+}