aboutsummaryrefslogtreecommitdiff
blob: 0be4f18ec234d19a0799e2fb6c46ee676a9d0a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI="7"

inherit cmake-utils

case "${PV}" in
9999)
	SRC_URI=""
	EGIT_REPO_URI="https://github.com/ECP-VeloC/${PN}.git"
	inherit git-r3
	KEYWORDS=""
	;;
*)
	SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
	;;
esac

DESCRIPTION="KVTree provides a fully extensible C data structure modeled after Perl hashes."
HOMEPAGE="https://github.com/ECP-VeloC/KVTree"

LICENSE="MIT"
SLOT="0"
IUSE="fcntl +flock mpi test"

REQUIRED_USE="
		?? ( fcntl flock )
"
RESTRICT="test? ( userpriv ) !test? ( test )"

RDEPEND="
	mpi? ( virtual/mpi )
	sys-libs/zlib
"
DEPEND="${RDEPEND}"
BDEPEND="
	>=dev-util/cmake-2.8
	app-admin/chrpath
"

src_prepare() {
	#do not build static library
	sed -i '/kvtree-static/d' src/CMakeLists.txt || die
	#do not install README.md automatically
	sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
	default
	cmake-utils_src_prepare
}

src_configure() {
	local mycmakeargs=(
		-DMPI="$(usex mpi ON OFF)"
		-DKVTREE_FILE_LOCK="$(usex flock FLOCK $(usex fcntl FCNTL NONE))"
	)

	cmake-utils_src_configure
}

src_install() {
	chrpath -d "${BUILD_DIR}/src/kvtree_print_file" || die
	cmake-utils_src_install
	chrpath -d "${ED}/usr/$(get_libdir)/libkvtree.so" || die
	dodoc doc/rst/*.rst
	docinto "${DOCSDIR}/users"
	dodoc -r doc/rst/users/.
}