mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
See: https://github.com/NetworkBlockDevice/nbd/issues/198 Signed-off-by: Craig Andrews <candrews@gentoo.org>
69 lines
1.4 KiB
Bash
69 lines
1.4 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools systemd
|
|
|
|
DESCRIPTION="Userland client/server for kernel network block device"
|
|
HOMEPAGE="https://nbd.sourceforge.io/"
|
|
|
|
if [[ ${PV} == 9999 ]] ; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/NetworkBlockDevice/nbd.git"
|
|
else
|
|
# Use auto-generated tarballs for now as there's no dist tarball available
|
|
# See https://github.com/NetworkBlockDevice/nbd/issues/198
|
|
SRC_URI="https://github.com/NetworkBlockDevice/nbd/archive/refs/tags/${P}.tar.gz"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~sparc ~x86"
|
|
fi
|
|
S="${WORKDIR}/${PN}-${P}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="debug gnutls +netlink"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.32.0
|
|
gnutls? ( >=net-libs/gnutls-2.12.0 )
|
|
netlink? ( >=dev-libs/libnl-3.1 )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
sys-devel/bison
|
|
virtual/pkgconfig
|
|
app-text/docbook-sgml-dtd:4.5
|
|
app-text/docbook-sgml-utils
|
|
"
|
|
BDEPEND+="
|
|
dev-build/autoconf-archive
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
emake -C systemd -f Makefile.am nbd@.service.sh.in
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# Needs Bison
|
|
unset YACC
|
|
|
|
local myeconfargs=(
|
|
--enable-lfs
|
|
$(use_enable !debug syslog)
|
|
$(use_enable debug)
|
|
$(use_with gnutls)
|
|
$(use_with netlink libnl)
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
systemd_dounit systemd/nbd@.service
|
|
}
|