blob: 7e6f7e91caf7e6cba7e9bb12d54c8845f8d83c3b (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1
DESCRIPTION="NBD client library in userspace"
HOMEPAGE="https://gitlab.com/nbdkit/libnbd"
SRC_URI="https://download.libguestfs.org/libnbd/$(ver_cut 1-2)-stable/${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 ~sparc ~x86"
IUSE="fuse gnutls uri-support test"
RESTRICT="!test? ( test )"
RDEPEND="
fuse? ( sys-fs/fuse:3 )
gnutls? ( net-libs/gnutls:= )
uri-support? ( dev-libs/libxml2 )
"
DEPEND="
${RDEPEND}
test? ( sys-block/nbd[gnutls?] )
"
BDEPEND="dev-lang/perl"
src_prepare() {
default
# Some tests require impossible to provide features, such as fuse.
# These are marked by requires_... in the functions.sh shell
# library. Rather than listing these tests, let's list out the
# impossible to support features and make them skip.
cat <<-EOF >> tests/functions.sh.in || die
requires_fuse ()
{
requires false
}
EOF
}
src_configure() {
local myeconfargs=(
$(use_enable fuse)
$(use_with gnutls)
$(use_with uri-support libxml2)
--disable-ocaml
--disable-python
--disable-golang
)
export bashcompdir="$(get_bashcompdir)"
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|