blob: b0ac39996c58c77d4ada13a05abe237aa2e4bace (
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
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools linux-info systemd
DESCRIPTION="cifsd/ksmbd kernel server userspace utilities"
HOMEPAGE="https://github.com/cifsd-team/ksmbd-tools"
SRC_URI="https://github.com/cifsd-team/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
DEPEND="
dev-libs/glib:2
dev-libs/libnl:3
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
pkg_setup() {
# we don't want to die() here to be able to build binpkgs
kernel_is -lt 5 15 && eerror "kernel >= 5.15 required for ${PN}"
CONFIG_CHECK="~SMB_SERVER"
ERROR_SMB_SERVER="CONFIG_SMB_SERVER is not set: ksmbd is not enabled in kernel, ${PN} will not work"
# use krb5 && CONFIG_CHECK+=" ~SMB_SERVER_KERBEROS5"
linux-info_pkg_setup
}
src_prepare() {
eautoreconf
default
}
src_configure() {
# TODO: add kerberos support, explicitly disable for now
# tools are expected to reside in /sbin, not /usr/sbin
econf \
--prefix="${EPREFIX:-}" \
--enable-krb5=no \
--libexecdir="${EPREFIX}/usr/libexec" \
--with-rundir="${EPREFIX}/run" \
--with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
}
src_install() {
default
local DOCS=( README.md ksmbd.conf.example )
einstalldocs
insinto /etc/ksmbd
doins ksmbd.conf.example
newinitd "${FILESDIR}/ksmbd.initd" ksmbd
newconfd "${FILESDIR}/ksmbd.confd" ksmbd
dosym ksmbd.addshare /sbin/smbshareadd
dosym ksmbd.adduser /sbin/smbuseradd
}
pkg_postinst() {
local ver
for ver in ${REPLACING_VERSIONS}; do
if ver_test ${ver} -lt 3.4.6; then
ewarn "Upgrade from version <${CATEGORY}/${PN}-3.4.6 detected"
ewarn "${PN} config file moved to ${EPREFIX}/etc/ksmbd/ksmbd.conf"
ewarn "Please migrate from old ${EPREFIX}/etc/ksmbd/smb.conf"
fi
done
unset ver
}
|