mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
dev-libs/KVTree: rename sys-cluster/KVTree
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
64
dev-libs/KVTree/KVTree-1.3.0.ebuild
Normal file
64
dev-libs/KVTree/KVTree-1.3.0.ebuild
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="KVTree provides a fully extensible C data structure modeled after Perl hashes"
|
||||
HOMEPAGE="https://github.com/ECP-VeloC/KVTree"
|
||||
SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="fcntl +flock mpi test"
|
||||
|
||||
RDEPEND="
|
||||
mpi? ( virtual/mpi )
|
||||
sys-libs/zlib
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="app-admin/chrpath"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-no-install-readme.patch"
|
||||
"${FILESDIR}/${PN}-1.2.0-no-static.patch"
|
||||
)
|
||||
REQUIRED_USE="?? ( fcntl flock )"
|
||||
RESTRICT="test? ( userpriv ) !test? ( test )"
|
||||
|
||||
src_configure() {
|
||||
local flock="NONE"
|
||||
use fcntl && flock="FCNTL"
|
||||
use flock && flock="FLOCK"
|
||||
|
||||
local mycmakeargs=(
|
||||
-DENABLE_TESTS=$(usex test)
|
||||
-DMPI="$(usex mpi ON OFF)"
|
||||
-DKVTREE_FILE_LOCK="${flock}"
|
||||
|
||||
-DBUILD_SHARED_LIBS=ON
|
||||
-DKVTREE_LINK_STATIC=FALSE
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
chrpath -d "${BUILD_DIR}/src/kvtree_print" || die
|
||||
cmake_src_install
|
||||
chrpath -d "${ED}/usr/$(get_libdir)/libkvtree.so" || die
|
||||
chrpath -d "${ED}/usr/$(get_libdir)/libkvtree_base.so" || die
|
||||
dodoc doc/rst/*.rst
|
||||
docinto "${DOCSDIR}/users"
|
||||
dodoc -r doc/rst/users/.
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if mountpoint -q /dev/shm ; then
|
||||
cmake_src_test
|
||||
else
|
||||
eerror "make sure to mount /dev/shm or tests will fail"
|
||||
die
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user