1 # a waf tool to add autoconf-like macros to the configure section
2 # and for SAMBA_ macros for building libraries, binaries etc
4 import Build
, os
, sys
, Options
, Task
, Utils
, cc
, TaskGen
, fnmatch
, re
, shutil
, Logs
, Constants
5 from Configure
import conf
7 from samba_utils
import SUBST_VARS_RECURSIVE
8 TaskGen
.task_gen
.apply_verif
= Utils
.nada
10 # bring in the other samba modules
11 from samba_optimisation
import *
12 from samba_utils
import *
13 from samba_version
import *
14 from samba_autoconf
import *
15 from samba_patterns
import *
16 from samba_pidl
import *
17 from samba_autoproto
import *
18 from samba_python
import *
19 from samba_perl
import *
20 from samba_deps
import *
21 from samba_bundled
import *
22 from samba_third_party
import *
25 import samba_conftests
39 # some systems have broken threading in python
40 if os
.environ
.get('WAF_NOTHREADS') == '1':
45 os
.environ
['PYTHONUNBUFFERED'] = '1'
48 if Constants
.HEXVERSION
< 0x105019:
50 Please use the version of waf that comes with Samba, not
51 a system installed version. See http://wiki.samba.org/index.php/Waf
54 Alternatively, please run ./configure and make as usual. That will
55 call the right version of waf.''')
60 def SAMBA_BUILD_ENV(conf
):
61 '''create the samba build environment'''
62 conf
.env
.BUILD_DIRECTORY
= conf
.blddir
63 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
))
64 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
, "private"))
65 mkdir_p(os
.path
.join(conf
.blddir
, "modules"))
66 mkdir_p(os
.path
.join(conf
.blddir
, 'python/samba/dcerpc'))
67 # this allows all of the bin/shared and bin/python targets
68 # to be expressed in terms of build directory paths
69 mkdir_p(os
.path
.join(conf
.blddir
, 'default'))
70 for (source
, target
) in [('shared', 'shared'), ('modules', 'modules'), ('python', 'python_modules')]:
71 link_target
= os
.path
.join(conf
.blddir
, 'default/' + target
)
72 if not os
.path
.lexists(link_target
):
73 os
.symlink('../' + source
, link_target
)
75 # get perl to put the blib files in the build directory
76 blib_bld
= os
.path
.join(conf
.blddir
, 'default/pidl/blib')
77 blib_src
= os
.path
.join(conf
.srcdir
, 'pidl/blib')
78 mkdir_p(blib_bld
+ '/man1')
79 mkdir_p(blib_bld
+ '/man3')
80 if os
.path
.islink(blib_src
):
82 elif os
.path
.exists(blib_src
):
83 shutil
.rmtree(blib_src
)
86 def ADD_INIT_FUNCTION(bld
, subsystem
, target
, init_function
):
87 '''add an init_function to the list for a subsystem'''
88 if init_function
is None:
90 bld
.ASSERT(subsystem
is not None, "You must specify a subsystem for init_function '%s'" % init_function
)
91 cache
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
92 if not subsystem
in cache
:
94 cache
[subsystem
].append( { 'TARGET':target
, 'INIT_FUNCTION':init_function
} )
95 Build
.BuildContext
.ADD_INIT_FUNCTION
= ADD_INIT_FUNCTION
98 def generate_empty_file(task
):
99 task
.outputs
[0].write('')
102 #################################################################
103 def SAMBA_LIBRARY(bld
, libname
, source
,
108 public_headers_install
=True,
115 external_library
=False,
117 keep_underscore
=False,
119 autoproto_extra_source
='',
130 target_type
='LIBRARY',
131 bundled_extension
=False,
138 private_library
=False,
139 grouping_library
=False,
140 allow_undefined_symbols
=False,
141 allow_warnings
=False,
143 '''define a Samba library'''
145 if pyembed
and bld
.env
['IS_EXTRA_PYTHON']:
146 public_headers
= pc_files
= None
148 if LIB_MUST_BE_PRIVATE(bld
, libname
):
152 SET_TARGET_TYPE(bld
, libname
, 'DISABLED')
155 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
157 source
= bld
.SUBDIR(subdir
, source
)
159 # remember empty libraries, so we can strip the dependencies
160 if ((source
== '') or (source
== [])):
161 if deps
== '' and public_deps
== '':
162 SET_TARGET_TYPE(bld
, libname
, 'EMPTY')
164 empty_c
= libname
+ '.empty.c'
165 bld
.SAMBA_GENERATOR('%s_empty_c' % libname
,
166 rule
=generate_empty_file
,
170 if BUILTIN_LIBRARY(bld
, libname
):
173 obj_target
= libname
+ '.objlist'
175 if group
== 'libraries':
176 subsystem_group
= 'main'
178 subsystem_group
= group
180 # first create a target for building the object files for this library
181 # by separating in this way, we avoid recompiling the C files
182 # separately for the install library and the build library
183 bld
.SAMBA_SUBSYSTEM(obj_target
,
186 public_deps
= public_deps
,
188 public_headers
= public_headers
,
189 public_headers_install
= public_headers_install
,
190 header_path
= header_path
,
192 group
= subsystem_group
,
193 autoproto
= autoproto
,
194 autoproto_extra_source
=autoproto_extra_source
,
195 depends_on
= depends_on
,
196 hide_symbols
= hide_symbols
,
197 allow_warnings
= allow_warnings
,
200 local_include
= local_include
,
201 global_include
= global_include
)
203 if BUILTIN_LIBRARY(bld
, libname
):
206 if not SET_TARGET_TYPE(bld
, libname
, target_type
):
209 # the library itself will depend on that object target
210 deps
+= ' ' + public_deps
212 deps
.append(obj_target
)
214 realname
= bld
.map_shlib_extension(realname
, python
=(target_type
=='PYTHON'))
215 link_name
= bld
.map_shlib_extension(link_name
, python
=(target_type
=='PYTHON'))
217 # we don't want any public libraries without version numbers
218 if (not private_library
and target_type
!= 'PYTHON' and not realname
):
219 if vnum
is None and soname
is None:
220 raise Utils
.WafError("public library '%s' must have a vnum" %
222 if pc_files
is None and not bld
.env
['IS_EXTRA_PYTHON']:
223 raise Utils
.WafError("public library '%s' must have pkg-config file" %
225 if public_headers
is None and not bld
.env
['IS_EXTRA_PYTHON']:
226 raise Utils
.WafError("public library '%s' must have header files" %
229 if bundled_name
is not None:
231 elif target_type
== 'PYTHON' or realname
or not private_library
:
233 bundled_name
= libname
235 bundled_name
= libname
.replace('_', '-')
237 assert (private_library
== True and realname
is None)
238 if abi_directory
or vnum
or soname
:
239 bundled_extension
=True
240 bundled_name
= PRIVATE_NAME(bld
, libname
.replace('_', '-'),
241 bundled_extension
, private_library
)
243 ldflags
= TO_LIST(ldflags
)
244 if bld
.env
['ENABLE_RELRO'] is True:
245 ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
247 features
= 'c cshlib symlink_lib install_lib'
251 features
+= ' pyembed'
254 features
+= ' abi_check'
256 if pyembed
and bld
.env
['PYTHON_SO_ABI_FLAG']:
257 # For ABI checking, we don't care about the exact Python version.
258 # Replace the Python ABI tag (e.g. ".cpython-35m") by a generic ".py3"
259 abi_flag
= bld
.env
['PYTHON_SO_ABI_FLAG']
260 replacement
= '.py%s' % bld
.env
['PYTHON_VERSION'].split('.')[0]
261 version_libname
= libname
.replace(abi_flag
, replacement
)
263 version_libname
= libname
266 if bld
.env
.HAVE_LD_VERSION_SCRIPT
:
268 version
= "%s_%s" % (Utils
.g_module
.APPNAME
, Utils
.g_module
.VERSION
)
270 version
= "%s_%s" % (libname
, vnum
)
274 vscript
= "%s.vscript" % libname
275 bld
.ABI_VSCRIPT(version_libname
, abi_directory
, version
, vscript
,
277 fullname
= apply_pattern(bundled_name
, bld
.env
.shlib_PATTERN
)
278 fullpath
= bld
.path
.find_or_declare(fullname
)
279 vscriptpath
= bld
.path
.find_or_declare(vscript
)
281 raise Utils
.WafError("unable to find fullpath for %s" % fullname
)
283 raise Utils
.WafError("unable to find vscript path for %s" % vscript
)
284 bld
.add_manual_dependency(fullpath
, vscriptpath
)
286 # also make the .inst file depend on the vscript
287 instname
= apply_pattern(bundled_name
+ '.inst', bld
.env
.shlib_PATTERN
)
288 bld
.add_manual_dependency(bld
.path
.find_or_declare(instname
), bld
.path
.find_or_declare(vscript
))
289 vscript
= os
.path
.join(bld
.path
.abspath(bld
.env
), vscript
)
291 bld
.SET_BUILD_GROUP(group
)
295 target
= bundled_name
,
296 depends_on
= depends_on
,
297 samba_ldflags
= ldflags
,
299 samba_includes
= includes
,
300 version_script
= vscript
,
301 version_libname
= version_libname
,
302 local_include
= local_include
,
303 global_include
= global_include
,
307 samba_inst_path
= install_path
,
309 samba_realname
= realname
,
310 samba_install
= install
,
311 abi_directory
= "%s/%s" % (bld
.path
.abspath(), abi_directory
),
312 abi_match
= abi_match
,
313 private_library
= private_library
,
314 grouping_library
=grouping_library
,
315 allow_undefined_symbols
=allow_undefined_symbols
318 if realname
and not link_name
:
319 link_name
= 'shared/%s' % realname
322 t
.link_name
= link_name
324 if pc_files
is not None and not private_library
:
325 bld
.PKG_CONFIG_FILES(pc_files
, vnum
=vnum
)
327 if (manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and
328 bld
.env
['XSLTPROC_MANPAGES']):
329 bld
.MANPAGES(manpages
, install
)
332 Build
.BuildContext
.SAMBA_LIBRARY
= SAMBA_LIBRARY
335 #################################################################
336 def SAMBA_BINARY(bld
, binname
, source
,
346 use_global_deps
=True,
359 '''define a Samba binary'''
362 SET_TARGET_TYPE(bld
, binname
, 'DISABLED')
365 if not SET_TARGET_TYPE(bld
, binname
, 'BINARY'):
368 features
= 'c cprogram symlink_bin install_bin'
370 features
+= ' pyembed'
372 obj_target
= binname
+ '.objlist'
374 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
376 source
= bld
.SUBDIR(subdir
, source
)
377 source
= unique_list(TO_LIST(source
))
379 if group
== 'binaries':
380 subsystem_group
= 'main'
382 subsystem_group
= group
384 # only specify PIE flags for binaries
386 pie_ldflags
= TO_LIST(ldflags
)
387 if bld
.env
['ENABLE_PIE'] is True:
388 pie_cflags
+= ' -fPIE'
389 pie_ldflags
.extend(TO_LIST('-pie'))
390 if bld
.env
['ENABLE_RELRO'] is True:
391 pie_ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
393 # first create a target for building the object files for this binary
394 # by separating in this way, we avoid recompiling the C files
395 # separately for the install binary and the build binary
396 bld
.SAMBA_SUBSYSTEM(obj_target
,
401 group
= subsystem_group
,
402 autoproto
= autoproto
,
403 subsystem_name
= subsystem_name
,
404 local_include
= local_include
,
405 global_include
= global_include
,
406 use_hostcc
= use_hostcc
,
408 use_global_deps
= use_global_deps
)
410 bld
.SET_BUILD_GROUP(group
)
412 # the binary itself will depend on that object target
414 deps
.append(obj_target
)
421 samba_includes
= includes
,
422 local_include
= local_include
,
423 global_include
= global_include
,
424 samba_modules
= modules
,
426 samba_subsystem
= subsystem_name
,
428 samba_inst_path
= install_path
,
429 samba_install
= install
,
430 samba_ldflags
= pie_ldflags
433 if manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']:
434 bld
.MANPAGES(manpages
, install
)
436 Build
.BuildContext
.SAMBA_BINARY
= SAMBA_BINARY
439 #################################################################
440 def SAMBA_MODULE(bld
, modname
, source
,
445 module_init_name
='samba_init_module',
447 autoproto_extra_source
='',
449 internal_module
=True,
457 allow_undefined_symbols
=False,
460 '''define a Samba module.'''
462 bld
.ASSERT(subsystem
, "You must specify a subsystem for SAMBA_MODULE(%s)" % modname
)
464 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
466 source
= bld
.SUBDIR(subdir
, source
)
468 if internal_module
or BUILTIN_LIBRARY(bld
, modname
):
469 # Do not create modules for disabled subsystems
470 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
472 bld
.SAMBA_SUBSYSTEM(modname
, source
,
476 autoproto_extra_source
=autoproto_extra_source
,
478 local_include
=local_include
,
479 global_include
=global_include
,
480 allow_warnings
=allow_warnings
,
483 bld
.ADD_INIT_FUNCTION(subsystem
, modname
, init_function
)
487 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
490 # Do not create modules for disabled subsystems
491 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
495 deps
+= ' ' + subsystem
496 while realname
.startswith("lib"+subsystem
+"_"):
497 realname
= realname
[len("lib"+subsystem
+"_"):]
498 while realname
.startswith(subsystem
+"_"):
499 realname
= realname
[len(subsystem
+"_"):]
501 build_name
= "%s_module_%s" % (subsystem
, realname
)
503 realname
= bld
.make_libname(realname
)
504 while realname
.startswith("lib"):
505 realname
= realname
[len("lib"):]
507 build_link_name
= "modules/%s/%s" % (subsystem
, realname
)
510 cflags
+= " -D%s=%s" % (init_function
, module_init_name
)
512 bld
.SAMBA_LIBRARY(modname
,
518 autoproto
= autoproto
,
519 local_include
=local_include
,
520 global_include
=global_include
,
522 bundled_name
=build_name
,
523 link_name
=build_link_name
,
524 install_path
="${MODULESDIR}/%s" % subsystem
,
527 allow_undefined_symbols
=allow_undefined_symbols
,
528 allow_warnings
=allow_warnings
532 Build
.BuildContext
.SAMBA_MODULE
= SAMBA_MODULE
535 #################################################################
536 def SAMBA_SUBSYSTEM(bld
, modname
, source
,
541 public_headers_install
=True,
546 init_function_sentinel
=None,
548 autoproto_extra_source
='',
551 local_include_first
=True,
556 use_global_deps
=True,
560 allow_warnings
=False,
563 '''define a Samba subsystem'''
566 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
569 # remember empty subsystems, so we can strip the dependencies
570 if ((source
== '') or (source
== [])):
571 if deps
== '' and public_deps
== '':
572 SET_TARGET_TYPE(bld
, modname
, 'EMPTY')
574 empty_c
= modname
+ '.empty.c'
575 bld
.SAMBA_GENERATOR('%s_empty_c' % modname
,
576 rule
=generate_empty_file
,
580 if not SET_TARGET_TYPE(bld
, modname
, 'SUBSYSTEM'):
583 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
585 source
= bld
.SUBDIR(subdir
, source
)
586 source
= unique_list(TO_LIST(source
))
588 deps
+= ' ' + public_deps
590 bld
.SET_BUILD_GROUP(group
)
596 features
+= ' pyembed'
602 samba_cflags
= CURRENT_CFLAGS(bld
, modname
, cflags
,
603 allow_warnings
=allow_warnings
,
604 hide_symbols
=hide_symbols
),
605 depends_on
= depends_on
,
606 samba_deps
= TO_LIST(deps
),
607 samba_includes
= includes
,
608 local_include
= local_include
,
609 local_include_first
= local_include_first
,
610 global_include
= global_include
,
611 samba_subsystem
= subsystem_name
,
612 samba_use_hostcc
= use_hostcc
,
613 samba_use_global_deps
= use_global_deps
,
616 if cflags_end
is not None:
617 t
.samba_cflags
.extend(TO_LIST(cflags_end
))
619 if autoproto
is not None:
620 bld
.SAMBA_AUTOPROTO(autoproto
, source
+ TO_LIST(autoproto_extra_source
))
621 if public_headers
is not None:
622 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
623 public_headers_install
=public_headers_install
)
627 Build
.BuildContext
.SAMBA_SUBSYSTEM
= SAMBA_SUBSYSTEM
630 def SAMBA_GENERATOR(bld
, name
, rule
, source
='', target
='',
631 group
='generators', enabled
=True,
633 public_headers_install
=True,
638 '''A generic source generator target'''
640 if not SET_TARGET_TYPE(bld
, name
, 'GENERATOR'):
646 dep_vars
.append('ruledeps')
647 dep_vars
.append('SAMBA_GENERATOR_VARS')
649 bld
.SET_BUILD_GROUP(group
)
652 source
=bld
.EXPAND_VARIABLES(source
, vars=vars),
654 shell
=isinstance(rule
, str),
658 samba_type
='GENERATOR',
664 t
.env
.SAMBA_GENERATOR_VARS
= vars
669 if public_headers
is not None:
670 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
671 public_headers_install
=public_headers_install
)
673 Build
.BuildContext
.SAMBA_GENERATOR
= SAMBA_GENERATOR
678 def SETUP_BUILD_GROUPS(bld
):
679 '''setup build groups used to ensure that the different build
680 phases happen consecutively'''
681 bld
.p_ln
= bld
.srcnode
# we do want to see all targets!
682 bld
.env
['USING_BUILD_GROUPS'] = True
683 bld
.add_group('setup')
684 bld
.add_group('build_compiler_source')
685 bld
.add_group('vscripts')
686 bld
.add_group('base_libraries')
687 bld
.add_group('generators')
688 bld
.add_group('compiler_prototypes')
689 bld
.add_group('compiler_libraries')
690 bld
.add_group('build_compilers')
691 bld
.add_group('build_source')
692 bld
.add_group('prototypes')
693 bld
.add_group('headers')
694 bld
.add_group('main')
695 bld
.add_group('symbolcheck')
696 bld
.add_group('syslibcheck')
697 bld
.add_group('final')
698 Build
.BuildContext
.SETUP_BUILD_GROUPS
= SETUP_BUILD_GROUPS
701 def SET_BUILD_GROUP(bld
, group
):
702 '''set the current build group'''
703 if not 'USING_BUILD_GROUPS' in bld
.env
:
706 Build
.BuildContext
.SET_BUILD_GROUP
= SET_BUILD_GROUP
711 def ENABLE_TIMESTAMP_DEPENDENCIES(conf
):
712 """use timestamps instead of file contents for deps
713 this currently doesn't work"""
714 def h_file(filename
):
716 st
= os
.stat(filename
)
717 if stat
.S_ISDIR(st
[stat
.ST_MODE
]): raise IOError('not a file')
719 m
.update(str(st
.st_mtime
))
720 m
.update(str(st
.st_size
))
723 Utils
.h_file
= h_file
726 def SAMBA_SCRIPT(bld
, name
, pattern
, installdir
, installname
=None):
727 '''used to copy scripts from the source tree into the build directory
728 for use by selftest'''
730 source
= bld
.path
.ant_glob(pattern
, flat
=True)
732 bld
.SET_BUILD_GROUP('build_source')
733 for s
in TO_LIST(source
):
735 if installname
is not None:
737 target
= os
.path
.join(installdir
, iname
)
738 tgtdir
= os
.path
.dirname(os
.path
.join(bld
.srcnode
.abspath(bld
.env
), '..', target
))
740 link_src
= os
.path
.normpath(os
.path
.join(bld
.curdir
, s
))
741 link_dst
= os
.path
.join(tgtdir
, os
.path
.basename(iname
))
742 if os
.path
.islink(link_dst
) and os
.readlink(link_dst
) == link_src
:
744 if os
.path
.exists(link_dst
):
746 Logs
.info("symlink: %s -> %s/%s" % (s
, installdir
, iname
))
747 os
.symlink(link_src
, link_dst
)
748 Build
.BuildContext
.SAMBA_SCRIPT
= SAMBA_SCRIPT
751 def copy_and_fix_python_path(task
):
752 pattern
='sys.path.insert(0, "bin/python")'
753 if task
.env
["PYTHONARCHDIR"] in sys
.path
and task
.env
["PYTHONDIR"] in sys
.path
:
755 elif task
.env
["PYTHONARCHDIR"] == task
.env
["PYTHONDIR"]:
756 replacement
="""sys.path.insert(0, "%s")""" % task
.env
["PYTHONDIR"]
758 replacement
="""sys.path.insert(0, "%s")
759 sys.path.insert(1, "%s")""" % (task
.env
["PYTHONARCHDIR"], task
.env
["PYTHONDIR"])
761 if task
.env
["PYTHON"][0] == "/":
762 replacement_shebang
= "#!%s\n" % task
.env
["PYTHON"]
764 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PYTHON"]
766 installed_location
=task
.outputs
[0].bldpath(task
.env
)
767 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
768 installed_file
= open(installed_location
, 'w')
770 for line
in source_file
:
772 if (lineno
== 0 and task
.env
["PYTHON_SPECIFIED"] is True and
774 newline
= replacement_shebang
775 elif pattern
in line
:
776 newline
= line
.replace(pattern
, replacement
)
777 installed_file
.write(newline
)
779 installed_file
.close()
780 os
.chmod(installed_location
, 0755)
783 def copy_and_fix_perl_path(task
):
784 pattern
='use lib "$RealBin/lib";'
787 if not task
.env
["PERL_LIB_INSTALL_DIR"] in task
.env
["PERL_INC"]:
788 replacement
= 'use lib "%s";' % task
.env
["PERL_LIB_INSTALL_DIR"]
790 if task
.env
["PERL"][0] == "/":
791 replacement_shebang
= "#!%s\n" % task
.env
["PERL"]
793 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PERL"]
795 installed_location
=task
.outputs
[0].bldpath(task
.env
)
796 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
797 installed_file
= open(installed_location
, 'w')
799 for line
in source_file
:
801 if lineno
== 0 and task
.env
["PERL_SPECIFIED"] == True and line
[:2] == "#!":
802 newline
= replacement_shebang
803 elif pattern
in line
:
804 newline
= line
.replace(pattern
, replacement
)
805 installed_file
.write(newline
)
807 installed_file
.close()
808 os
.chmod(installed_location
, 0755)
812 def install_file(bld
, destdir
, file, chmod
=MODE_644
, flat
=False,
813 python_fixup
=False, perl_fixup
=False,
814 destname
=None, base_name
=None):
816 destdir
= bld
.EXPAND_VARIABLES(destdir
)
820 destname
= os
.path
.basename(destname
)
821 dest
= os
.path
.join(destdir
, destname
)
823 # fix the path python will use to find Samba modules
824 inst_file
= file + '.inst'
825 bld
.SAMBA_GENERATOR('python_%s' % destname
,
826 rule
=copy_and_fix_python_path
,
827 dep_vars
=["PYTHON","PYTHON_SPECIFIED","PYTHONDIR","PYTHONARCHDIR"],
832 # fix the path perl will use to find Samba modules
833 inst_file
= file + '.inst'
834 bld
.SAMBA_GENERATOR('perl_%s' % destname
,
835 rule
=copy_and_fix_perl_path
,
836 dep_vars
=["PERL","PERL_SPECIFIED","PERL_LIB_INSTALL_DIR"],
841 file = os
.path
.join(base_name
, file)
842 bld
.install_as(dest
, file, chmod
=chmod
)
845 def INSTALL_FILES(bld
, destdir
, files
, chmod
=MODE_644
, flat
=False,
846 python_fixup
=False, perl_fixup
=False,
847 destname
=None, base_name
=None):
848 '''install a set of files'''
849 for f
in TO_LIST(files
):
850 install_file(bld
, destdir
, f
, chmod
=chmod
, flat
=flat
,
851 python_fixup
=python_fixup
, perl_fixup
=perl_fixup
,
852 destname
=destname
, base_name
=base_name
)
853 Build
.BuildContext
.INSTALL_FILES
= INSTALL_FILES
856 def INSTALL_WILDCARD(bld
, destdir
, pattern
, chmod
=MODE_644
, flat
=False,
857 python_fixup
=False, exclude
=None, trim_path
=None):
858 '''install a set of files matching a wildcard pattern'''
859 files
=TO_LIST(bld
.path
.ant_glob(pattern
, flat
=True))
863 files2
.append(os_path_relpath(f
, trim_path
))
868 if fnmatch
.fnmatch(f
, exclude
):
870 INSTALL_FILES(bld
, destdir
, files
, chmod
=chmod
, flat
=flat
,
871 python_fixup
=python_fixup
, base_name
=trim_path
)
872 Build
.BuildContext
.INSTALL_WILDCARD
= INSTALL_WILDCARD
875 def INSTALL_DIRS(bld
, destdir
, dirs
):
876 '''install a set of directories'''
877 destdir
= bld
.EXPAND_VARIABLES(destdir
)
878 dirs
= bld
.EXPAND_VARIABLES(dirs
)
879 for d
in TO_LIST(dirs
):
880 bld
.install_dir(os
.path
.join(destdir
, d
))
881 Build
.BuildContext
.INSTALL_DIRS
= INSTALL_DIRS
884 def MANPAGES(bld
, manpages
, install
):
885 '''build and install manual pages'''
886 bld
.env
.MAN_XSL
= 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
887 for m
in manpages
.split():
889 bld
.SAMBA_GENERATOR(m
,
893 rule
='${XSLTPROC} --xinclude -o ${TGT} --nonet ${MAN_XSL} ${SRC}'
896 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
897 Build
.BuildContext
.MANPAGES
= MANPAGES
899 def SAMBAMANPAGES(bld
, manpages
, extra_source
=None):
900 '''build and install manual pages'''
901 bld
.env
.SAMBA_EXPAND_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/expand-sambadoc.xsl'
902 bld
.env
.SAMBA_MAN_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/man.xsl'
903 bld
.env
.SAMBA_CATALOG
= bld
.srcnode
.abspath() + '/bin/default/docs-xml/build/catalog.xml'
904 bld
.env
.SAMBA_CATALOGS
= 'file:///etc/xml/catalog file:///usr/local/share/xml/catalog file://' + bld
.env
.SAMBA_CATALOG
906 for m
in manpages
.split():
908 if extra_source
is not None:
909 source
= [source
, extra_source
]
910 bld
.SAMBA_GENERATOR(m
,
914 dep_vars
=['SAMBA_MAN_XSL', 'SAMBA_EXPAND_XSL', 'SAMBA_CATALOG'],
915 rule
='''XML_CATALOG_FILES="${SAMBA_CATALOGS}"
916 export XML_CATALOG_FILES
917 ${XSLTPROC} --xinclude --stringparam noreference 0 -o ${TGT}.xml --nonet ${SAMBA_EXPAND_XSL} ${SRC[0].abspath(env)}
918 ${XSLTPROC} --nonet -o ${TGT} ${SAMBA_MAN_XSL} ${TGT}.xml'''
920 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
921 Build
.BuildContext
.SAMBAMANPAGES
= SAMBAMANPAGES
923 #############################################################
924 # give a nicer display when building different types of files
925 def progress_display(self
, msg
, fname
):
926 col1
= Logs
.colors(self
.color
)
927 col2
= Logs
.colors
.NORMAL
928 total
= self
.position
[1]
930 fs
= '[%%%dd/%%%dd] %s %%s%%s%%s\n' % (n
, n
, msg
)
931 return fs
% (self
.position
[0], self
.position
[1], col1
, fname
, col2
)
933 def link_display(self
):
934 if Options
.options
.progress_bar
!= 0:
935 return Task
.Task
.old_display(self
)
936 fname
= self
.outputs
[0].bldpath(self
.env
)
937 return progress_display(self
, 'Linking', fname
)
938 Task
.TaskBase
.classes
['cc_link'].display
= link_display
940 def samba_display(self
):
941 if Options
.options
.progress_bar
!= 0:
942 return Task
.Task
.old_display(self
)
944 targets
= LOCAL_CACHE(self
, 'TARGET_TYPE')
945 if self
.name
in targets
:
946 target_type
= targets
[self
.name
]
947 type_map
= { 'GENERATOR' : 'Generating',
948 'PROTOTYPE' : 'Generating'
950 if target_type
in type_map
:
951 return progress_display(self
, type_map
[target_type
], self
.name
)
953 if len(self
.inputs
) == 0:
954 return Task
.Task
.old_display(self
)
956 fname
= self
.inputs
[0].bldpath(self
.env
)
957 if fname
[0:3] == '../':
959 ext_loc
= fname
.rfind('.')
961 return Task
.Task
.old_display(self
)
962 ext
= fname
[ext_loc
:]
964 ext_map
= { '.idl' : 'Compiling IDL',
965 '.et' : 'Compiling ERRTABLE',
966 '.asn1': 'Compiling ASN1',
969 return progress_display(self
, ext_map
[ext
], fname
)
970 return Task
.Task
.old_display(self
)
972 Task
.TaskBase
.classes
['Task'].old_display
= Task
.TaskBase
.classes
['Task'].display
973 Task
.TaskBase
.classes
['Task'].display
= samba_display
978 def apply_bundle_remove_dynamiclib_patch(self
):
979 if self
.env
['MACBUNDLE'] or getattr(self
,'mac_bundle',False):
980 if not getattr(self
,'vnum',None):
982 self
.env
['LINKFLAGS'].remove('-dynamiclib')
983 self
.env
['LINKFLAGS'].remove('-single_module')