mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-25 16:43:26 +02:00
43 lines
879 B
Bash
43 lines
879 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# The tests assume they can look at ../server.conf
|
|
BUILD_DIR="${S}"/builddir
|
|
inherit meson systemd
|
|
|
|
DESCRIPTION="iSNS server and client for Linux"
|
|
HOMEPAGE="https://github.com/open-iscsi/open-isns"
|
|
SRC_URI="https://github.com/open-iscsi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 ~riscv sparc x86"
|
|
IUSE="ssl static"
|
|
# Tests can't connect
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
ssl? (
|
|
dev-libs/openssl:=
|
|
)
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Ddefault_library=$(usex static both shared)
|
|
-Dslp=disabled
|
|
-Dsystemddir=$(systemd_get_utildir)
|
|
$(meson_feature ssl security)
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
|
|
keepdir /var/lib/${PN/open-}
|
|
}
|