blob: 27a380dc82ad7fc1eca32ff2345e46499dcb6062 (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGIT_COMMIT="7232230911c02f81cb50b38f47ccf7100dd066f9"
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/${EGIT_COMMIT}.tar.gz -> ${PN}-${EGIT_COMMIT}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
# no keywords for now, for testing.
#KEYWORDS="~amd64"
DEPEND="
dev-libs/glib:2
dev-libs/libnl:3
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
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"
# 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 recide in /sbin, not /usr/sbin
econf --prefix="${EPREFIX}/" --enable-krb5=no
}
src_install() {
default
local DOCS=( README README.md Documentation/configuration.txt smb.conf.example )
einstalldocs
insinto /etc/ksmbd
doins smb.conf.example
newinitd "${FILESDIR}/initd" ksmbd
newconfd "${FILESDIR}/confd" ksmbd
dosym ksmbd.addshare /sbin/smbshareadd
dosym ksmbd.adduser /sbin/smbuseradd
systemd_dounit ksmbd.service
}
|