blob: 57890d32bc1c3d0a79d9a8fc7c9aa5210dbcaa06 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Userland client/server for kernel network block device"
HOMEPAGE="http://nbd.sourceforge.net/"
if [[ "${PV}" = 9999 ]] ; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/NetworkBlockDevice/nbd.git"
else
SRC_URI="mirror://sourceforge/nbd/${P}.tar.xz"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="debug gnutls netlink zlib"
BDEPEND="virtual/pkgconfig"
RDEPEND="
>=dev-libs/glib-2.26.0
gnutls? ( >=net-libs/gnutls-2.12.0 )
netlink? ( >=dev-libs/libnl-3.1 )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}"
if [[ "${PV}" = 9999 ]] ; then
DEPEND+="
app-text/docbook-sgml-dtd:4.5
app-text/docbook-sgml-utils
"
fi
src_prepare() {
default
if [[ "${PV}" = 9999 ]] ; then
emake -C man -f Makefile.am \
nbd-server.1.sh.in \
nbd-server.5.sh.in \
nbd-client.8.sh.in \
nbd-trdump.1.sh.in \
nbdtab.5.sh.in
emake -C systemd -f Makefile.am nbd@.service.sh.in
eautoreconf
fi
}
src_configure() {
local myeconfargs=(
--enable-lfs
$(use_enable !debug syslog)
$(use_enable debug)
$(use_enable zlib gznbd)
$(use_with gnutls)
$(use_with netlink libnl)
)
econf "${myeconfargs[@]}"
}
|