fritzkink
2024-04-01 b68622b3bcc9c2c3c9928514166e178cdcb46175
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
 
#
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
# Copyright 2019 Rouven Weiler
# Copyright 2023,2024 Friedrich Kink
#
 
BUILD_BITS =            64
BUILD_STYLE =            waf
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME =        samba
COMPONENT_VERSION =        4.20.0
COMPONENT_SUMMARY =        samba - A Windows SMB/CIFS fileserver for UNIX
COMPONENT_SRC =            $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_PROJECT_URL =        https://www.samba.org/
COMPONENT_ARCHIVE =             $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH =     sha256:02672542510ac6e5d0c91c0c14d90ab4e6ec397c709e952c6da3a6e0b4d5a42f
COMPONENT_ARCHIVE_URL =        https://download.samba.org/pub/samba/stable/$(COMPONENT_ARCHIVE)
#COMPONENT_SIG_URL =         https://download.samba.org/pub/samba/stable/$(COMPONENT_SRC).tar.asc
COMPONENT_FMRI =        service/network/samba
COMPONENT_CLASSIFICATION =    System/File System
COMPONENT_LICENSE =        GPLv3
COMPONENT_LICENSE_FILE =     COPYING
 
TEST_TARGET= $(NO_TESTS)
include $(WS_MAKE_RULES)/common.mk
 
PYV =        $(shell echo $(PYTHON_VERSION) | tr -d .)
PKG_MACROS +=    PYV=$(PYV)
PKG_MACROS +=    PYVER=$(PYTHON_VERSION)
 
# set WAF and adapt PATH for building
WAF = PYTHONHASHSEED=1    $(PYTHON) $(SOURCE_DIR)/buildtools/bin/waf
 
# directory to search for "include" in samba.p5m
PKG_OPTIONS +=        -I$(COMPONENT_DIR)
# Set the pkg... path to search files in ./Solaris/ dir (mainly the SMF manifests are there)
PKG_PROTO_DIRS +=    $(COMPONENT_DIR)
 
CFLAGS +=    $($(COMPILER)_C99_ENABLE) -D_POSIX_PTHREAD_SEMANTICS -DHAVE_AUXV_T -DHCRYPTO_DEF_PROVIDER=hcrypto
CPPFLAGS +=    $(CPP_LARGEFILES) $(CPP_XPG6MODE) 
CPPFLAGS +=    -I/usr/include/openldap -I/usr/include/jansson
 
LDFLAGS +=    -R/usr/lib/samba
LDFLAGS +=    -R/usr/lib/samba/private
LDFLAGS +=    -L$(GNULIB.$(BITS)) -R$(GNULIB.$(BITS))
 
LDFLAGS +=      -lrt -lsec -lcrypt -lmd5 -lsocket -lnsl -lsendfile
LDFLAGS +=      -lldap-2.6 -lsendfile -lavahi-common -lavahi-core 
 
# Flag is not picked up for lib/replace
LDFLAGS +=     $(LD_SSP)
 
LD_OPTIONS +=    -B direct
 
# to avoid a clash with system gssapi.h (some declaration are not compatible)
# and to work around cups-config (64bit vs 32bit)
COMPONENT_POST_CONFIGURE_ACTION= ( \
    $(RM) $(@D)/third_party/heimdal/lib/gssapi/gssapi.h; \
    $(GSED) -i -e 's:/usr/lib/amd64:/usr/lib:' $(@D)/bin/c4che/default_cache.py; \
     ); 
#
# set everything for target configure.
#
CONFIGURE_PREFIX =    /usr/lib/samba
 
CONFIGURE_ENV +=    CPP="$(CC) -E"
CONFIGURE_ENV +=    CPPFLAGS="$(CPPFLAGS)"
CONFIGURE_ENV +=    CUPS_CONFIG=$(USRBINDIR)/cups-config
CONFIGURE_ENV +=    PATH=$(GNUBIN.$(BITS)):$(USRBINDIR.$(BITS)):$(PATH.gnu)
CONFIGURE_ENV +=    PYTHONARCHDIR=$(PYTHON_VENDOR_PACKAGES)/samba
 
# --enable-fhs should not be on
CONFIGURE_OPTIONS +=    --prefix=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --exec-prefix=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --bindir=$(CONFIGURE_PREFIX)/bin
CONFIGURE_OPTIONS +=    --sbindir=$(CONFIGURE_PREFIX)/sbin
CONFIGURE_OPTIONS +=    --libdir=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --with-privatelibdir=$(CONFIGURE_PREFIX)/private
CONFIGURE_OPTIONS +=    --sysconfdir=$(ETCDIR)/samba
CONFIGURE_OPTIONS +=    --with-pammodulesdir=$(CONFIGURE_PREFIX)/security
CONFIGURE_OPTIONS +=    --datarootdir=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --mandir=$(USRSHAREMANDIR)
CONFIGURE_OPTIONS +=    --htmldir=/usr/share/samba/swat/help
CONFIGURE_OPTIONS +=    --includedir=$(USRINCDIR)/samba
CONFIGURE_OPTIONS +=    --with-privatedir=$(ETCDIR)/samba/private
CONFIGURE_OPTIONS +=    --localstatedir=$(VARDIR)/samba
CONFIGURE_OPTIONS +=    --with-logfilebase=$(VARDIR)/samba/log
CONFIGURE_OPTIONS +=    --sharedstatedir=$(VARDIR)/samba/com
CONFIGURE_OPTIONS +=    --libexecdir=$(CONFIGURE_PREFIX)/libexec
CONFIGURE_OPTIONS +=    --with-bind-dns-dir=$(CONFIGURE_PREFIX)/bind-dns
 
CONFIGURE_OPTIONS +=    --with-static-modules=vfs_solarisacl,vfs_zfsacl
CONFIGURE_OPTIONS +=    --with-shared-modules=ALL,vfs_cacheprime
CONFIGURE_OPTIONS +=    --with-acl-support
CONFIGURE_OPTIONS +=    --with-ads
CONFIGURE_OPTIONS +=    --with-winbind
CONFIGURE_OPTIONS +=    --with-ldap
CONFIGURE_OPTIONS +=    --enable-cups
CONFIGURE_OPTIONS +=    --without-systemd
 
CONFIGURE_OPTIONS +=    --python=$(PYTHON)
CONFIGURE_OPTIONS +=    --nopyo
CONFIGURE_OPTIONS +=    --nopycache
CONFIGURE_OPTIONS +=    --disable-rpath
CONFIGURE_OPTIONS +=    --bundled-libraries=ALL
 
CONFIGURE_OPTIONS +=    --disable-spotlight
 
#
# set everything for target build.
#
COMPONENT_POST_INSTALL_ACTION += \
    $(MKDIR) $(PROTO_DIR)$(ETCDIR)/samba ; \
    (sed -f $(COMPONENT_DIR)/Solaris/smbconf.sed \
        > $(PROTO_DIR)$(ETCDIR)/samba/smb.conf.default $(BUILD_DIR_64)/examples/smb.conf.default) 
 
# Build dependencies
REQUIRED_PACKAGES += runtime/perl
REQUIRED_PACKAGES += library/perl-5/parse-yapp
REQUIRED_PACKAGES += library/python/dnspython
REQUIRED_PACKAGES += library/python/markdown
 
# Auto-generated dependencies
PYTHON_REQUIRED_PACKAGES += runtime/python
REQUIRED_PACKAGES += $(ICU_LIBRARY_PKG)
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += database/lmdb
REQUIRED_PACKAGES += library/file-monitor/gamin
REQUIRED_PACKAGES += library/gnutls-3
REQUIRED_PACKAGES += library/jansson
REQUIRED_PACKAGES += library/libarchive
REQUIRED_PACKAGES += library/ncurses
REQUIRED_PACKAGES += library/openldap
REQUIRED_PACKAGES += library/print/cups-libs
REQUIRED_PACKAGES += library/readline
REQUIRED_PACKAGES += library/security/gpgme
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += shell/ksh93
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/network/avahi