blob: ee20263bfffc92a109276bfe5d1b7d37d9c88dfe (
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
|
# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Network abstraction layer designed for High Availability use cases"
HOMEPAGE="https://kronosnet.org"
SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0/1"
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
IUSE="doc nss +openssl zstd lz4 lzo2"
DEPEND=">=sys-cluster/libqb-2.0.0:=
dev-libs/libnl:3
sys-libs/zlib:=
app-arch/bzip2:=
app-arch/xz-utils
zstd? ( app-arch/zstd:= )
lzo2? ( dev-libs/lzo:2 )
lz4? ( app-arch/lz4:= )
nss? ( dev-libs/nss )
openssl? ( dev-libs/openssl:= )"
RDEPEND="${DEPEND}"
BDEPEND="
doc? (
>=sys-cluster/libqb-2.0.0
app-doc/doxygen[dot]
)"
PATCHES=( "${FILESDIR}/${P}-no-Werror.patch" )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf_opts=(
$(use_enable doc man) \
--disable-static \
--enable-libnozzle \
--disable-libknet-sctp \
--enable-compress-zlib \
--enable-compress-bzip2 \
--enable-compress-lzma \
$(use_enable nss crypto-nss) \
$(use_enable openssl crypto-openssl) \
$(use_enable zstd compress-zstd) \
$(use_enable lz4 compress-lz4) \
$(use_enable lzo2 compress-lzo2)
)
econf "${econf_opts[@]}"
}
|