fritzkink
2023-10-15 463846ac0acaebc78cf52d219dadf787184400c6
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#
# 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 2023 Friedrich Kink. All rights reserved.
#
 
BUILD_BITS = 64_and_32
BUILD_STYLE = waf
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=        samba
COMPONENT_VERSION=    4.19.1
COMPONENT_SUMMARY=    A library that permits GPLv2 applications to manipulate CIFS/SMB network resources
COMPONENT_PROJECT_URL=    https://www.samba.org/
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH=    sha256:ce3b7f0d18bf91aa5fd646e8bb385a3b35375b703c6e5123b02b85a1abc81879
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=        library/samba/libsmbclient
COMPONENT_CLASSIFICATION=    System/Libraries
COMPONENT_LICENSE=    GPLv3
COMPONENT_LICENSE_FILE=    COPYING
 
TEST_TARGET = $(NO_TESTS)
include $(WS_MAKE_RULES)/common.mk
 
# waf
WAF = PYTHONHASHSEED=1 $(PYTHON) $(SOURCE_DIR)/buildtools/bin/waf
 
# Compiler settings
CFLAGS    +=    $($(COMPILER)_C99_ENABLE) -D_POSIX_PTHREAD_SEMANTICS -DHAVE_AUXV_T -DHCRYPTO_DEF_PROVIDER=hcrypto
 
LDFLAGS.32 +=    -R/usr/lib/libsmbclient
LDFLAGS.64 +=    -R/usr/lib/libsmbclient/$(MACH64)
LDFLAGS.32 +=    -R/usr/lib/libsmbclient/private
LDFLAGS.64 +=    -R/usr/lib/libsmbclient/private/$(MACH64)
LDFLAGS +=    $(LDFLAGS.$(BITS))
 
LDFLAGS +=      -lrt -lsec -lcrypt -lmd5 -lsocket -lnsl -lsendfile
LDFLAGS +=      -lldap-2.6 -lsendfile -lavahi-common -lavahi-core
 
CPPFLAGS +=    $(CPP_LARGEFILES) $(CPP_XPG6MODE)
CPPFLAGS +=    -I/usr/include/openldap -I/usr/include/jansson
 
# 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)
COMPONENT_POST_CONFIGURE_ACTION= ( \
        $(RM) $(@D)/third_party/heimdal/lib/gssapi/gssapi.h; \
         );
 
CONFIGURE_PREFIX =      /usr/lib/libsmbclient
 
# !!! Note, this is not a configure.mk-based Makefile !!!
# --enable-fhs should not be on
CONFIGURE_OPTIONS +=    --prefix=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --exec-prefix=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS.32 += --bindir=$(CONFIGURE_PREFIX)/bin
CONFIGURE_OPTIONS.64 += --bindir=$(CONFIGURE_PREFIX)/bin/$(MACH64)
CONFIGURE_OPTIONS.32 += --sbindir=$(CONFIGURE_PREFIX)/sbin
CONFIGURE_OPTIONS.64 += --sbindir=$(CONFIGURE_PREFIX)/sbin/$(MACH64)
CONFIGURE_OPTIONS.32 += --libdir=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS.64 += --libdir=$(CONFIGURE_PREFIX)/$(MACH64)
CONFIGURE_OPTIONS.32 += --with-privatelibdir=$(CONFIGURE_PREFIX)/private
CONFIGURE_OPTIONS.64 += --with-privatelibdir=$(CONFIGURE_PREFIX)/private/$(MACH64)
CONFIGURE_OPTIONS +=    --sysconfdir=$(ETCDIR)/samba
CONFIGURE_OPTIONS.32 += --with-pammodulesdir=$(CONFIGURE_PREFIX)/security
CONFIGURE_OPTIONS.64 += --with-pammodulesdir=$(CONFIGURE_PREFIX)/security/$(MACH64)
CONFIGURE_OPTIONS +=    --datarootdir=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS +=    --mandir=$(USRSHAREMANDIR)
CONFIGURE_OPTIONS +=    --htmldir=/usr/share/samba/swat/help
CONFIGURE_OPTIONS +=    --includedir=$(USRINCDIR)/libsmbclient
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/$(MACH64)
CONFIGURE_OPTIONS +=    --with-bind-dns-dir=$(CONFIGURE_PREFIX)/bind-dns
 
CONFIGURE_OPTIONS +=    --with-static-modules=
CONFIGURE_OPTIONS +=    --with-shared-modules=
CONFIGURE_OPTIONS +=    --with-ads
CONFIGURE_OPTIONS +=    --with-winbind
CONFIGURE_OPTIONS +=    --with-ldap
CONFIGURE_OPTIONS +=    --nopyo
CONFIGURE_OPTIONS +=    --disable-rpath
CONFIGURE_OPTIONS +=    --disable-rpath-private-install 
CONFIGURE_OPTIONS +=    --bundled-libraries=ALL
CONFIGURE_OPTIONS +=    --disable-python
CONFIGURE_OPTIONS +=    --without-ad-dc
CONFIGURE_OPTIONS +=    --disable-spotlight
 
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)
 
# Build targets for WAF:
# (motivation) Samba started to use WAF (build system from Google) from the 3.x
# (as a parallel build system) but Samba4 discontinued the use of auto tools
# definitively.
# (note) .BDprep target is an additional step between .prep and .configure
# targets. It was added because there were problems with libtool-like phase of
# WAF when the not "prepared well". "waf distclean" on CLONEY'ed BUILD_DIR is
# enough.
 
# Prepare build dir for Samba
$(BUILD_DIR_32)/.BDprep:    $(SOURCE_DIR)/.prep
    # re-create configure dir
    $(MKDIR) $(@D)
    # Clone SOURCE_DIR
    $(CLONEY) $(SOURCE_DIR) $(@D)
    # cleanup of clone
    (cd $(@D) ; $(ENV) $(WAF) distclean )
    $(TOUCH) $@
 
# Configure of Samba
$(BUILD_DIR_32)/.configured:    $(BUILD_DIR_32)/.BDprep
    (cd $(@D) ; $(ENV) $(CONFIGURE_ENV) \
        $(CONFIGURE_ENV.32) $(WAF) configure $(CONFIGURE_OPTIONS) $(CONFIGURE_OPTIONS.32) )
    $(TOUCH) $@
 
# Build of Samba + Winbind.
$(BUILD_DIR_32)/.built:    $(BUILD_DIR_32)/.configured
    (cd $(@D) ; \
        $(GSED) -i -e 's:/usr/lib/amd64:/usr/lib:' bin/c4che/default_cache.py; \
     $(ENV) $(WAF) build --targets=smbclient)
    $(TOUCH) $@
 
# Install of Samba + Winbind.
$(BUILD_DIR_32)/.installed:    $(BUILD_DIR_32)/.built
    (cd $(@D) ; $(ENV) $(WAF) install --targets=smbclient --destdir=$(PROTO_DIR) )
    $(TOUCH) $@
 
$(BUILD_DIR)/.pc.fixed:    $(INSTALL_32)
    $(GSED) -i -e '/^Libs/s:-L$${libdir}:-L$${libdir} -R$${libdir}:' $(PROTO_DIR)/usr/lib/libsmbclient/pkgconfig/*.pc
    $(TOUCH) $@
 
# common targets
install:    $(INSTALL_32) $(BUILD_DIR)/.pc.fixed
 
# manually added packages
PERL_REQUIRED_PACKAGES +=library/perl-5/json
 
# Auto-generated dependencies
REQUIRED_PACKAGES += $(ICU_LIBRARY_PKG)
REQUIRED_PACKAGES += library/file-monitor/gamin
REQUIRED_PACKAGES += library/gnutls-3
REQUIRED_PACKAGES += library/jansson
REQUIRED_PACKAGES += library/openldap
REQUIRED_PACKAGES += library/print/cups-libs
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/network/avahi