195 lines
6.8 KiB
Makefile
195 lines
6.8 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="samba"
|
|
PKG_VERSION="4.17.8"
|
|
PKG_LICENSE="GPLv3+"
|
|
PKG_SITE="https://www.samba.org"
|
|
PKG_URL="https://download.samba.org/pub/samba/stable/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain attr heimdal:host e2fsprogs Python3 libunwind zlib readline popt libaio connman gnutls wsdd2"
|
|
PKG_NEED_UNPACK="$(get_pkg_directory heimdal) $(get_pkg_directory e2fsprogs)"
|
|
PKG_LONGDESC="A free SMB / CIFS fileserver and client."
|
|
PKG_BUILD_FLAGS="-gold"
|
|
|
|
configure_package() {
|
|
#PKG_WAF_VERBOSE="-v"
|
|
|
|
if [ "${AVAHI_DAEMON}" = yes ]; then
|
|
PKG_DEPENDS_TARGET+=" avahi"
|
|
SMB_AVAHI="--enable-avahi"
|
|
else
|
|
SMB_AVAHI="--disable-avahi"
|
|
fi
|
|
|
|
if [ "${TARGET_ARCH}" = x86_64 ]; then
|
|
SMB_AESNI="--accel-aes=intelaesni"
|
|
else
|
|
SMB_AESNI="--accel-aes=none"
|
|
fi
|
|
|
|
PKG_CONFIGURE_OPTS="--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--with-lockdir=/var/lock-samba \
|
|
--with-logfilebase=/var/log \
|
|
--with-piddir=/run/samba \
|
|
--with-privatedir=/run/samba \
|
|
--with-modulesdir=/usr/lib \
|
|
--with-privatelibdir=/usr/lib \
|
|
--with-sockets-dir=/run/samba \
|
|
--with-configdir=/run/samba \
|
|
--with-static-modules=vfs_widelinks \
|
|
--with-libiconv=${SYSROOT_PREFIX}/usr \
|
|
--cross-compile \
|
|
--cross-answers=${PKG_BUILD}/cache.txt \
|
|
--hostcc=gcc \
|
|
--enable-fhs \
|
|
--without-dmapi \
|
|
--disable-glusterfs \
|
|
--disable-rpath \
|
|
--disable-rpath-install \
|
|
--disable-rpath-private-install \
|
|
${SMB_AVAHI} \
|
|
${SMB_AESNI} \
|
|
--disable-cups \
|
|
--disable-iprint \
|
|
--with-relro \
|
|
--with-sendfile-support \
|
|
--without-acl-support \
|
|
--without-ads \
|
|
--without-ad-dc \
|
|
--without-automount \
|
|
--without-cluster-support \
|
|
--without-fam \
|
|
--without-gettext \
|
|
--without-gpgme \
|
|
--without-iconv \
|
|
--without-ldap \
|
|
--without-libarchive \
|
|
--without-pam \
|
|
--without-pie \
|
|
--without-regedit \
|
|
--without-systemd \
|
|
--without-utmp \
|
|
--without-winbind \
|
|
--enable-auto-reconfigure \
|
|
--bundled-libraries='ALL,!asn1_compile,!compile_et,!zlib' \
|
|
--without-quotas \
|
|
--with-syslog \
|
|
--without-json \
|
|
--without-ldb-lmdb \
|
|
--nopyc --nopyo"
|
|
|
|
PKG_SAMBA_TARGET="smbclient,client/smbclient,smbtree,nmblookup,testparm"
|
|
|
|
if [ "${SAMBA_SERVER}" = "yes" ]; then
|
|
PKG_SAMBA_TARGET+=",nmbd,rpcd_classic,rpcd_epmapper,rpcd_winreg,samba-dcerpcd,smbpasswd,smbd/smbd"
|
|
fi
|
|
}
|
|
|
|
pre_configure_target() {
|
|
# samba uses its own build directory
|
|
cd ${PKG_BUILD}
|
|
rm -rf .${TARGET_NAME}
|
|
|
|
# work around link issues
|
|
export LDFLAGS="${LDFLAGS} -lreadline -lncursesw -ltinfow"
|
|
|
|
# support 64-bit offsets and seeks on 32-bit platforms
|
|
if [ "${TARGET_ARCH}" = "arm" ]; then
|
|
export CFLAGS+=" -D_FILE_OFFSET_BITS=64 -D_OFF_T_DEFINED_ -Doff_t=off64_t -Dlseek=lseek64"
|
|
fi
|
|
}
|
|
|
|
configure_target() {
|
|
cp ${PKG_DIR}/config/samba4-cache.txt ${PKG_BUILD}/cache.txt
|
|
echo "Checking uname machine type: \"${TARGET_ARCH}\"" >> ${PKG_BUILD}/cache.txt
|
|
|
|
export COMPILE_ET=${TOOLCHAIN}/bin/heimdal_compile_et
|
|
export ASN1_COMPILE=${TOOLCHAIN}/bin/heimdal_asn1_compile
|
|
|
|
PYTHON_CONFIG="${SYSROOT_PREFIX}/usr/bin/python3-config" \
|
|
python_LDFLAGS="" python_LIBDIR="" \
|
|
PYTHON=${TOOLCHAIN}/bin/python3 ./configure ${PKG_CONFIGURE_OPTS}
|
|
}
|
|
|
|
# disable icu, there is no buildswitch to disable
|
|
pre_make_target() {
|
|
sed -e '/#define HAVE_ICU_I18N 1/d' \
|
|
-e '/#define HAVE_LIBICUI.* 1/d' \
|
|
-i bin/default/include/config.h
|
|
}
|
|
|
|
make_target() {
|
|
make ${PKG_SAMBA_TARGET} -j${CONCURRENCY_MAKE_LEVEL}
|
|
}
|
|
|
|
makeinstall_target() {
|
|
PYTHONHASHSEED=1 WAF_MAKE=1 ./buildtools/bin/waf install ${PKG_WAF_VERBOSE} --destdir=${SYSROOT_PREFIX} --targets=smbclient -j${CONCURRENCY_MAKE_LEVEL}
|
|
PYTHONHASHSEED=1 WAF_MAKE=1 ./buildtools/bin/waf install ${PKG_WAF_VERBOSE} --destdir=${INSTALL} --targets=${PKG_SAMBA_TARGET} -j${CONCURRENCY_MAKE_LEVEL}
|
|
}
|
|
|
|
copy_directory_of_links() {
|
|
local _tmp link
|
|
for link in "${1}/"*.so*; do
|
|
if [ -L ${link} ]; then
|
|
_tmp="$(readlink -m "${link}")"
|
|
cp -P ${_tmp} ${2}
|
|
cp -P ${_tmp}.* ${2} 2>/dev/null || true
|
|
else
|
|
cp -P ${link} ${2}
|
|
fi
|
|
done
|
|
}
|
|
|
|
perform_manual_install() {
|
|
mkdir -p ${SYSROOT_PREFIX}/usr/lib
|
|
copy_directory_of_links ${PKG_BUILD}/bin/shared ${SYSROOT_PREFIX}/usr/lib
|
|
|
|
mkdir -p ${INSTALL}/usr/lib
|
|
copy_directory_of_links ${PKG_BUILD}/bin/shared ${INSTALL}/usr/lib
|
|
copy_directory_of_links ${PKG_BUILD}/bin/shared/private ${INSTALL}/usr/lib
|
|
|
|
if [ "${SAMBA_SERVER}" = "yes" ]; then
|
|
mkdir -p ${INSTALL}/usr/sbin
|
|
cp -L ${PKG_BUILD}/bin/smbd ${INSTALL}/usr/sbin
|
|
cp -L ${PKG_BUILD}/bin/nmbd ${INSTALL}/usr/sbin
|
|
|
|
mkdir -p ${INSTALL}/usr/libexec/samba
|
|
cp -PR bin/default/source3/rpc_server/samba-dcerpcd ${INSTALL}/usr/libexec/samba
|
|
cp -PR bin/default/source3/rpc_server/rpcd_classic ${INSTALL}/usr/libexec/samba
|
|
cp -PR bin/default/source3/rpc_server/rpcd_epmapper ${INSTALL}/usr/libexec/samba
|
|
cp -PR bin/default/source3/rpc_server/rpcd_winreg ${INSTALL}/usr/libexec/samba
|
|
fi
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
perform_manual_install
|
|
|
|
rm -rf ${INSTALL}/usr/bin
|
|
rm -rf ${INSTALL}/usr/lib/python*
|
|
rm -rf ${INSTALL}/usr/share/perl*
|
|
rm -rf ${INSTALL}/usr/lib64
|
|
|
|
if find_file_path config/smb.conf; then
|
|
mkdir -p ${INSTALL}/usr/config
|
|
cp ${FOUND_PATH} ${INSTALL}/usr/config
|
|
fi
|
|
|
|
mkdir -p ${INSTALL}/etc/samba
|
|
ln -s /storage/.config/smb.conf ${INSTALL}/etc/samba/smb.conf
|
|
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp -PR bin/default/source3/client/smbclient ${INSTALL}/usr/bin
|
|
cp -PR bin/default/source3/utils/smbtree ${INSTALL}/usr/bin
|
|
cp -PR bin/default/source3/utils/nmblookup ${INSTALL}/usr/bin
|
|
cp -PR bin/default/source3/utils/testparm ${INSTALL}/usr/bin
|
|
|
|
if [ "${SAMBA_SERVER}" = "yes" ]; then
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp -PR bin/default/source3/utils/smbpasswd ${INSTALL}/usr/bin
|
|
|
|
fi
|
|
}
|
|
|