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 *
24 import samba_conftests
38 # some systems have broken threading in python
39 if os
.environ
.get('WAF_NOTHREADS') == '1':
44 os
.environ
['PYTHONUNBUFFERED'] = '1'
47 if Constants
.HEXVERSION
< 0x105019:
49 Please use the version of waf that comes with Samba, not
50 a system installed version. See http://wiki.samba.org/index.php/Waf
53 Alternatively, please run ./configure and make as usual. That will
54 call the right version of waf.''')
59 def SAMBA_BUILD_ENV(conf
):
60 '''create the samba build environment'''
61 conf
.env
.BUILD_DIRECTORY
= conf
.blddir
62 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
))
63 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
, "private"))
64 mkdir_p(os
.path
.join(conf
.blddir
, "modules"))
65 mkdir_p(os
.path
.join(conf
.blddir
, 'python/samba/dcerpc'))
66 # this allows all of the bin/shared and bin/python targets
67 # to be expressed in terms of build directory paths
68 mkdir_p(os
.path
.join(conf
.blddir
, 'default'))
69 for (source
, target
) in [('shared', 'shared'), ('modules', 'modules'), ('python', 'python_modules')]:
70 link_target
= os
.path
.join(conf
.blddir
, 'default/' + target
)
71 if not os
.path
.lexists(link_target
):
72 os
.symlink('../' + source
, link_target
)
74 # get perl to put the blib files in the build directory
75 blib_bld
= os
.path
.join(conf
.blddir
, 'default/pidl/blib')
76 blib_src
= os
.path
.join(conf
.srcdir
, 'pidl/blib')
77 mkdir_p(blib_bld
+ '/man1')
78 mkdir_p(blib_bld
+ '/man3')
79 if os
.path
.islink(blib_src
):
81 elif os
.path
.exists(blib_src
):
82 shutil
.rmtree(blib_src
)
85 def ADD_INIT_FUNCTION(bld
, subsystem
, target
, init_function
):
86 '''add an init_function to the list for a subsystem'''
87 if init_function
is None:
89 bld
.ASSERT(subsystem
is not None, "You must specify a subsystem for init_function '%s'" % init_function
)
90 cache
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
91 if not subsystem
in cache
:
93 cache
[subsystem
].append( { 'TARGET':target
, 'INIT_FUNCTION':init_function
} )
94 Build
.BuildContext
.ADD_INIT_FUNCTION
= ADD_INIT_FUNCTION
97 def generate_empty_file(task
):
98 target_fname
= installed_location
=task
.outputs
[0].bldpath(task
.env
)
99 target_file
= open(installed_location
, 'w')
103 #################################################################
104 def SAMBA_LIBRARY(bld
, libname
, source
,
109 public_headers_install
=True,
116 external_library
=False,
118 keep_underscore
=False,
120 autoproto_extra_source
='',
131 target_type
='LIBRARY',
132 bundled_extension
=False,
139 private_library
=False,
140 grouping_library
=False,
141 allow_undefined_symbols
=False,
142 allow_warnings
=False,
144 '''define a Samba library'''
146 if pyembed
and bld
.env
['IS_EXTRA_PYTHON']:
147 public_headers
= pc_files
= None
149 if LIB_MUST_BE_PRIVATE(bld
, libname
):
153 SET_TARGET_TYPE(bld
, libname
, 'DISABLED')
156 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
158 source
= bld
.SUBDIR(subdir
, source
)
160 # remember empty libraries, so we can strip the dependencies
161 if ((source
== '') or (source
== [])):
162 if deps
== '' and public_deps
== '':
163 SET_TARGET_TYPE(bld
, libname
, 'EMPTY')
165 empty_c
= libname
+ '.empty.c'
166 bld
.SAMBA_GENERATOR('%s_empty_c' % libname
,
167 rule
=generate_empty_file
,
171 if BUILTIN_LIBRARY(bld
, libname
):
174 obj_target
= libname
+ '.objlist'
176 if group
== 'libraries':
177 subsystem_group
= 'main'
179 subsystem_group
= group
181 # first create a target for building the object files for this library
182 # by separating in this way, we avoid recompiling the C files
183 # separately for the install library and the build library
184 bld
.SAMBA_SUBSYSTEM(obj_target
,
187 public_deps
= public_deps
,
189 public_headers
= public_headers
,
190 public_headers_install
= public_headers_install
,
191 header_path
= header_path
,
193 group
= subsystem_group
,
194 autoproto
= autoproto
,
195 autoproto_extra_source
=autoproto_extra_source
,
196 depends_on
= depends_on
,
197 hide_symbols
= hide_symbols
,
198 allow_warnings
= allow_warnings
,
201 local_include
= local_include
,
202 global_include
= global_include
)
204 if BUILTIN_LIBRARY(bld
, libname
):
207 if not SET_TARGET_TYPE(bld
, libname
, target_type
):
210 # the library itself will depend on that object target
211 deps
+= ' ' + public_deps
213 deps
.append(obj_target
)
215 realname
= bld
.map_shlib_extension(realname
, python
=(target_type
=='PYTHON'))
216 link_name
= bld
.map_shlib_extension(link_name
, python
=(target_type
=='PYTHON'))
218 # we don't want any public libraries without version numbers
219 if (not private_library
and target_type
!= 'PYTHON' and not realname
):
220 if vnum
is None and soname
is None:
221 raise Utils
.WafError("public library '%s' must have a vnum" %
223 if pc_files
is None and not bld
.env
['IS_EXTRA_PYTHON']:
224 raise Utils
.WafError("public library '%s' must have pkg-config file" %
226 if public_headers
is None and not bld
.env
['IS_EXTRA_PYTHON']:
227 raise Utils
.WafError("public library '%s' must have header files" %
230 if bundled_name
is not None:
232 elif target_type
== 'PYTHON' or realname
or not private_library
:
234 bundled_name
= libname
236 bundled_name
= libname
.replace('_', '-')
238 assert (private_library
== True and realname
is None)
239 if abi_directory
or vnum
or soname
:
240 bundled_extension
=True
241 bundled_name
= PRIVATE_NAME(bld
, libname
.replace('_', '-'),
242 bundled_extension
, private_library
)
244 ldflags
= TO_LIST(ldflags
)
245 if bld
.env
['ENABLE_RELRO'] is True:
246 ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
248 features
= 'cc cshlib symlink_lib install_lib'
252 features
+= ' pyembed'
255 features
+= ' abi_check'
258 if bld
.env
.HAVE_LD_VERSION_SCRIPT
:
260 version
= "%s_%s" % (Utils
.g_module
.APPNAME
, Utils
.g_module
.VERSION
)
262 version
= "%s_%s" % (libname
, vnum
)
266 vscript
= "%s.vscript" % libname
267 bld
.ABI_VSCRIPT(libname
, abi_directory
, version
, vscript
,
269 fullname
= apply_pattern(bundled_name
, bld
.env
.shlib_PATTERN
)
270 fullpath
= bld
.path
.find_or_declare(fullname
)
271 vscriptpath
= bld
.path
.find_or_declare(vscript
)
273 raise Utils
.WafError("unable to find fullpath for %s" % fullname
)
275 raise Utils
.WafError("unable to find vscript path for %s" % vscript
)
276 bld
.add_manual_dependency(fullpath
, vscriptpath
)
277 if Options
.is_install
:
278 # also make the .inst file depend on the vscript
279 instname
= apply_pattern(bundled_name
+ '.inst', bld
.env
.shlib_PATTERN
)
280 bld
.add_manual_dependency(bld
.path
.find_or_declare(instname
), bld
.path
.find_or_declare(vscript
))
281 vscript
= os
.path
.join(bld
.path
.abspath(bld
.env
), vscript
)
283 bld
.SET_BUILD_GROUP(group
)
287 target
= bundled_name
,
288 depends_on
= depends_on
,
289 samba_ldflags
= ldflags
,
291 samba_includes
= includes
,
292 version_script
= vscript
,
293 local_include
= local_include
,
294 global_include
= global_include
,
298 samba_inst_path
= install_path
,
300 samba_realname
= realname
,
301 samba_install
= install
,
302 abi_directory
= "%s/%s" % (bld
.path
.abspath(), abi_directory
),
303 abi_match
= abi_match
,
304 private_library
= private_library
,
305 grouping_library
=grouping_library
,
306 allow_undefined_symbols
=allow_undefined_symbols
309 if realname
and not link_name
:
310 link_name
= 'shared/%s' % realname
313 t
.link_name
= link_name
315 if pc_files
is not None and not private_library
:
316 bld
.PKG_CONFIG_FILES(pc_files
, vnum
=vnum
)
318 if (manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and
319 bld
.env
['XSLTPROC_MANPAGES']):
320 bld
.MANPAGES(manpages
, install
)
323 Build
.BuildContext
.SAMBA_LIBRARY
= SAMBA_LIBRARY
326 #################################################################
327 def SAMBA_BINARY(bld
, binname
, source
,
337 use_global_deps
=True,
350 '''define a Samba binary'''
353 SET_TARGET_TYPE(bld
, binname
, 'DISABLED')
356 if not SET_TARGET_TYPE(bld
, binname
, 'BINARY'):
359 features
= 'cc cprogram symlink_bin install_bin'
361 features
+= ' pyembed'
363 obj_target
= binname
+ '.objlist'
365 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
367 source
= bld
.SUBDIR(subdir
, source
)
368 source
= unique_list(TO_LIST(source
))
370 if group
== 'binaries':
371 subsystem_group
= 'main'
373 subsystem_group
= group
375 # only specify PIE flags for binaries
377 pie_ldflags
= TO_LIST(ldflags
)
378 if bld
.env
['ENABLE_PIE'] is True:
379 pie_cflags
+= ' -fPIE'
380 pie_ldflags
.extend(TO_LIST('-pie'))
381 if bld
.env
['ENABLE_RELRO'] is True:
382 pie_ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
384 # first create a target for building the object files for this binary
385 # by separating in this way, we avoid recompiling the C files
386 # separately for the install binary and the build binary
387 bld
.SAMBA_SUBSYSTEM(obj_target
,
392 group
= subsystem_group
,
393 autoproto
= autoproto
,
394 subsystem_name
= subsystem_name
,
395 local_include
= local_include
,
396 global_include
= global_include
,
397 use_hostcc
= use_hostcc
,
399 use_global_deps
= use_global_deps
)
401 bld
.SET_BUILD_GROUP(group
)
403 # the binary itself will depend on that object target
405 deps
.append(obj_target
)
412 samba_includes
= includes
,
413 local_include
= local_include
,
414 global_include
= global_include
,
415 samba_modules
= modules
,
417 samba_subsystem
= subsystem_name
,
419 samba_inst_path
= install_path
,
420 samba_install
= install
,
421 samba_ldflags
= pie_ldflags
424 if manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']:
425 bld
.MANPAGES(manpages
, install
)
427 Build
.BuildContext
.SAMBA_BINARY
= SAMBA_BINARY
430 #################################################################
431 def SAMBA_MODULE(bld
, modname
, source
,
436 module_init_name
='samba_init_module',
438 autoproto_extra_source
='',
440 internal_module
=True,
448 allow_undefined_symbols
=False,
451 '''define a Samba module.'''
453 bld
.ASSERT(subsystem
, "You must specify a subsystem for SAMBA_MODULE(%s)" % modname
)
455 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
457 source
= bld
.SUBDIR(subdir
, source
)
459 if internal_module
or BUILTIN_LIBRARY(bld
, modname
):
460 # Do not create modules for disabled subsystems
461 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
463 bld
.SAMBA_SUBSYSTEM(modname
, source
,
467 autoproto_extra_source
=autoproto_extra_source
,
469 local_include
=local_include
,
470 global_include
=global_include
,
471 allow_warnings
=allow_warnings
,
474 bld
.ADD_INIT_FUNCTION(subsystem
, modname
, init_function
)
478 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
481 # Do not create modules for disabled subsystems
482 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
486 deps
+= ' ' + subsystem
487 while realname
.startswith("lib"+subsystem
+"_"):
488 realname
= realname
[len("lib"+subsystem
+"_"):]
489 while realname
.startswith(subsystem
+"_"):
490 realname
= realname
[len(subsystem
+"_"):]
492 build_name
= "%s_module_%s" % (subsystem
, realname
)
494 realname
= bld
.make_libname(realname
)
495 while realname
.startswith("lib"):
496 realname
= realname
[len("lib"):]
498 build_link_name
= "modules/%s/%s" % (subsystem
, realname
)
501 cflags
+= " -D%s=%s" % (init_function
, module_init_name
)
503 bld
.SAMBA_LIBRARY(modname
,
509 autoproto
= autoproto
,
510 local_include
=local_include
,
511 global_include
=global_include
,
513 bundled_name
=build_name
,
514 link_name
=build_link_name
,
515 install_path
="${MODULESDIR}/%s" % subsystem
,
518 allow_undefined_symbols
=allow_undefined_symbols
,
519 allow_warnings
=allow_warnings
523 Build
.BuildContext
.SAMBA_MODULE
= SAMBA_MODULE
526 #################################################################
527 def SAMBA_SUBSYSTEM(bld
, modname
, source
,
532 public_headers_install
=True,
537 init_function_sentinel
=None,
539 autoproto_extra_source
='',
542 local_include_first
=True,
547 use_global_deps
=True,
551 allow_warnings
=False,
554 '''define a Samba subsystem'''
557 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
560 # remember empty subsystems, so we can strip the dependencies
561 if ((source
== '') or (source
== [])):
562 if deps
== '' and public_deps
== '':
563 SET_TARGET_TYPE(bld
, modname
, 'EMPTY')
565 empty_c
= modname
+ '.empty.c'
566 bld
.SAMBA_GENERATOR('%s_empty_c' % modname
,
567 rule
=generate_empty_file
,
571 if not SET_TARGET_TYPE(bld
, modname
, 'SUBSYSTEM'):
574 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
576 source
= bld
.SUBDIR(subdir
, source
)
577 source
= unique_list(TO_LIST(source
))
579 deps
+= ' ' + public_deps
581 bld
.SET_BUILD_GROUP(group
)
587 features
+= ' pyembed'
593 samba_cflags
= CURRENT_CFLAGS(bld
, modname
, cflags
,
594 allow_warnings
=allow_warnings
,
595 hide_symbols
=hide_symbols
),
596 depends_on
= depends_on
,
597 samba_deps
= TO_LIST(deps
),
598 samba_includes
= includes
,
599 local_include
= local_include
,
600 local_include_first
= local_include_first
,
601 global_include
= global_include
,
602 samba_subsystem
= subsystem_name
,
603 samba_use_hostcc
= use_hostcc
,
604 samba_use_global_deps
= use_global_deps
,
607 if cflags_end
is not None:
608 t
.samba_cflags
.extend(TO_LIST(cflags_end
))
610 if autoproto
is not None:
611 bld
.SAMBA_AUTOPROTO(autoproto
, source
+ TO_LIST(autoproto_extra_source
))
612 if public_headers
is not None:
613 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
614 public_headers_install
=public_headers_install
)
618 Build
.BuildContext
.SAMBA_SUBSYSTEM
= SAMBA_SUBSYSTEM
621 def SAMBA_GENERATOR(bld
, name
, rule
, source
='', target
='',
622 group
='generators', enabled
=True,
624 public_headers_install
=True,
629 '''A generic source generator target'''
631 if not SET_TARGET_TYPE(bld
, name
, 'GENERATOR'):
637 dep_vars
.append('ruledeps')
638 dep_vars
.append('SAMBA_GENERATOR_VARS')
640 bld
.SET_BUILD_GROUP(group
)
643 source
=bld
.EXPAND_VARIABLES(source
, vars=vars),
645 shell
=isinstance(rule
, str),
649 samba_type
='GENERATOR',
655 t
.env
.SAMBA_GENERATOR_VARS
= vars
660 if public_headers
is not None:
661 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
662 public_headers_install
=public_headers_install
)
664 Build
.BuildContext
.SAMBA_GENERATOR
= SAMBA_GENERATOR
669 def SETUP_BUILD_GROUPS(bld
):
670 '''setup build groups used to ensure that the different build
671 phases happen consecutively'''
672 bld
.p_ln
= bld
.srcnode
# we do want to see all targets!
673 bld
.env
['USING_BUILD_GROUPS'] = True
674 bld
.add_group('setup')
675 bld
.add_group('build_compiler_source')
676 bld
.add_group('vscripts')
677 bld
.add_group('base_libraries')
678 bld
.add_group('generators')
679 bld
.add_group('compiler_prototypes')
680 bld
.add_group('compiler_libraries')
681 bld
.add_group('build_compilers')
682 bld
.add_group('build_source')
683 bld
.add_group('prototypes')
684 bld
.add_group('headers')
685 bld
.add_group('main')
686 bld
.add_group('symbolcheck')
687 bld
.add_group('syslibcheck')
688 bld
.add_group('final')
689 Build
.BuildContext
.SETUP_BUILD_GROUPS
= SETUP_BUILD_GROUPS
692 def SET_BUILD_GROUP(bld
, group
):
693 '''set the current build group'''
694 if not 'USING_BUILD_GROUPS' in bld
.env
:
697 Build
.BuildContext
.SET_BUILD_GROUP
= SET_BUILD_GROUP
702 def ENABLE_TIMESTAMP_DEPENDENCIES(conf
):
703 """use timestamps instead of file contents for deps
704 this currently doesn't work"""
705 def h_file(filename
):
707 st
= os
.stat(filename
)
708 if stat
.S_ISDIR(st
[stat
.ST_MODE
]): raise IOError('not a file')
710 m
.update(str(st
.st_mtime
))
711 m
.update(str(st
.st_size
))
714 Utils
.h_file
= h_file
717 def SAMBA_SCRIPT(bld
, name
, pattern
, installdir
, installname
=None):
718 '''used to copy scripts from the source tree into the build directory
719 for use by selftest'''
721 source
= bld
.path
.ant_glob(pattern
)
723 bld
.SET_BUILD_GROUP('build_source')
724 for s
in TO_LIST(source
):
726 if installname
is not None:
728 target
= os
.path
.join(installdir
, iname
)
729 tgtdir
= os
.path
.dirname(os
.path
.join(bld
.srcnode
.abspath(bld
.env
), '..', target
))
731 link_src
= os
.path
.normpath(os
.path
.join(bld
.curdir
, s
))
732 link_dst
= os
.path
.join(tgtdir
, os
.path
.basename(iname
))
733 if os
.path
.islink(link_dst
) and os
.readlink(link_dst
) == link_src
:
735 if os
.path
.exists(link_dst
):
737 Logs
.info("symlink: %s -> %s/%s" % (s
, installdir
, iname
))
738 os
.symlink(link_src
, link_dst
)
739 Build
.BuildContext
.SAMBA_SCRIPT
= SAMBA_SCRIPT
742 def copy_and_fix_python_path(task
):
743 pattern
='sys.path.insert(0, "bin/python")'
744 if task
.env
["PYTHONARCHDIR"] in sys
.path
and task
.env
["PYTHONDIR"] in sys
.path
:
746 elif task
.env
["PYTHONARCHDIR"] == task
.env
["PYTHONDIR"]:
747 replacement
="""sys.path.insert(0, "%s")""" % task
.env
["PYTHONDIR"]
749 replacement
="""sys.path.insert(0, "%s")
750 sys.path.insert(1, "%s")""" % (task
.env
["PYTHONARCHDIR"], task
.env
["PYTHONDIR"])
752 if task
.env
["PYTHON"][0] == "/":
753 replacement_shebang
= "#!%s\n" % task
.env
["PYTHON"]
755 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PYTHON"]
757 installed_location
=task
.outputs
[0].bldpath(task
.env
)
758 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
759 installed_file
= open(installed_location
, 'w')
761 for line
in source_file
:
763 if (lineno
== 0 and task
.env
["PYTHON_SPECIFIED"] is True and
765 newline
= replacement_shebang
766 elif pattern
in line
:
767 newline
= line
.replace(pattern
, replacement
)
768 installed_file
.write(newline
)
770 installed_file
.close()
771 os
.chmod(installed_location
, 0755)
774 def copy_and_fix_perl_path(task
):
775 pattern
='use lib "$RealBin/lib";'
778 if not task
.env
["PERL_LIB_INSTALL_DIR"] in task
.env
["PERL_INC"]:
779 replacement
= 'use lib "%s";' % task
.env
["PERL_LIB_INSTALL_DIR"]
781 if task
.env
["PERL"][0] == "/":
782 replacement_shebang
= "#!%s\n" % task
.env
["PERL"]
784 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PERL"]
786 installed_location
=task
.outputs
[0].bldpath(task
.env
)
787 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
788 installed_file
= open(installed_location
, 'w')
790 for line
in source_file
:
792 if lineno
== 0 and task
.env
["PERL_SPECIFIED"] == True and line
[:2] == "#!":
793 newline
= replacement_shebang
794 elif pattern
in line
:
795 newline
= line
.replace(pattern
, replacement
)
796 installed_file
.write(newline
)
798 installed_file
.close()
799 os
.chmod(installed_location
, 0755)
803 def install_file(bld
, destdir
, file, chmod
=MODE_644
, flat
=False,
804 python_fixup
=False, perl_fixup
=False,
805 destname
=None, base_name
=None):
807 destdir
= bld
.EXPAND_VARIABLES(destdir
)
811 destname
= os
.path
.basename(destname
)
812 dest
= os
.path
.join(destdir
, destname
)
814 # fix the path python will use to find Samba modules
815 inst_file
= file + '.inst'
816 bld
.SAMBA_GENERATOR('python_%s' % destname
,
817 rule
=copy_and_fix_python_path
,
818 dep_vars
=["PYTHON","PYTHON_SPECIFIED","PYTHONDIR","PYTHONARCHDIR"],
823 # fix the path perl will use to find Samba modules
824 inst_file
= file + '.inst'
825 bld
.SAMBA_GENERATOR('perl_%s' % destname
,
826 rule
=copy_and_fix_perl_path
,
827 dep_vars
=["PERL","PERL_SPECIFIED","PERL_LIB_INSTALL_DIR"],
832 file = os
.path
.join(base_name
, file)
833 bld
.install_as(dest
, file, chmod
=chmod
)
836 def INSTALL_FILES(bld
, destdir
, files
, chmod
=MODE_644
, flat
=False,
837 python_fixup
=False, perl_fixup
=False,
838 destname
=None, base_name
=None):
839 '''install a set of files'''
840 for f
in TO_LIST(files
):
841 install_file(bld
, destdir
, f
, chmod
=chmod
, flat
=flat
,
842 python_fixup
=python_fixup
, perl_fixup
=perl_fixup
,
843 destname
=destname
, base_name
=base_name
)
844 Build
.BuildContext
.INSTALL_FILES
= INSTALL_FILES
847 def INSTALL_WILDCARD(bld
, destdir
, pattern
, chmod
=MODE_644
, flat
=False,
848 python_fixup
=False, exclude
=None, trim_path
=None):
849 '''install a set of files matching a wildcard pattern'''
850 files
=TO_LIST(bld
.path
.ant_glob(pattern
))
854 files2
.append(os_path_relpath(f
, trim_path
))
859 if fnmatch
.fnmatch(f
, exclude
):
861 INSTALL_FILES(bld
, destdir
, files
, chmod
=chmod
, flat
=flat
,
862 python_fixup
=python_fixup
, base_name
=trim_path
)
863 Build
.BuildContext
.INSTALL_WILDCARD
= INSTALL_WILDCARD
866 def INSTALL_DIRS(bld
, destdir
, dirs
):
867 '''install a set of directories'''
868 destdir
= bld
.EXPAND_VARIABLES(destdir
)
869 dirs
= bld
.EXPAND_VARIABLES(dirs
)
870 for d
in TO_LIST(dirs
):
871 bld
.install_dir(os
.path
.join(destdir
, d
))
872 Build
.BuildContext
.INSTALL_DIRS
= INSTALL_DIRS
875 def MANPAGES(bld
, manpages
, install
):
876 '''build and install manual pages'''
877 bld
.env
.MAN_XSL
= 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
878 for m
in manpages
.split():
880 bld
.SAMBA_GENERATOR(m
,
884 rule
='${XSLTPROC} --xinclude -o ${TGT} --nonet ${MAN_XSL} ${SRC}'
887 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
888 Build
.BuildContext
.MANPAGES
= MANPAGES
890 def SAMBAMANPAGES(bld
, manpages
, extra_source
=None):
891 '''build and install manual pages'''
892 bld
.env
.SAMBA_EXPAND_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/expand-sambadoc.xsl'
893 bld
.env
.SAMBA_MAN_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/man.xsl'
894 bld
.env
.SAMBA_CATALOG
= bld
.srcnode
.abspath() + '/bin/default/docs-xml/build/catalog.xml'
895 bld
.env
.SAMBA_CATALOGS
= 'file:///etc/xml/catalog file:///usr/local/share/xml/catalog file://' + bld
.env
.SAMBA_CATALOG
897 for m
in manpages
.split():
899 if extra_source
is not None:
900 source
= [source
, extra_source
]
901 bld
.SAMBA_GENERATOR(m
,
905 dep_vars
=['SAMBA_MAN_XSL', 'SAMBA_EXPAND_XSL', 'SAMBA_CATALOG'],
906 rule
='''XML_CATALOG_FILES="${SAMBA_CATALOGS}"
907 export XML_CATALOG_FILES
908 ${XSLTPROC} --xinclude --stringparam noreference 0 -o ${TGT}.xml --nonet ${SAMBA_EXPAND_XSL} ${SRC[0].abspath(env)}
909 ${XSLTPROC} --nonet -o ${TGT} ${SAMBA_MAN_XSL} ${TGT}.xml'''
911 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
912 Build
.BuildContext
.SAMBAMANPAGES
= SAMBAMANPAGES
914 #############################################################
915 # give a nicer display when building different types of files
916 def progress_display(self
, msg
, fname
):
917 col1
= Logs
.colors(self
.color
)
918 col2
= Logs
.colors
.NORMAL
919 total
= self
.position
[1]
921 fs
= '[%%%dd/%%%dd] %s %%s%%s%%s\n' % (n
, n
, msg
)
922 return fs
% (self
.position
[0], self
.position
[1], col1
, fname
, col2
)
924 def link_display(self
):
925 if Options
.options
.progress_bar
!= 0:
926 return Task
.Task
.old_display(self
)
927 fname
= self
.outputs
[0].bldpath(self
.env
)
928 return progress_display(self
, 'Linking', fname
)
929 Task
.TaskBase
.classes
['cc_link'].display
= link_display
931 def samba_display(self
):
932 if Options
.options
.progress_bar
!= 0:
933 return Task
.Task
.old_display(self
)
935 targets
= LOCAL_CACHE(self
, 'TARGET_TYPE')
936 if self
.name
in targets
:
937 target_type
= targets
[self
.name
]
938 type_map
= { 'GENERATOR' : 'Generating',
939 'PROTOTYPE' : 'Generating'
941 if target_type
in type_map
:
942 return progress_display(self
, type_map
[target_type
], self
.name
)
944 if len(self
.inputs
) == 0:
945 return Task
.Task
.old_display(self
)
947 fname
= self
.inputs
[0].bldpath(self
.env
)
948 if fname
[0:3] == '../':
950 ext_loc
= fname
.rfind('.')
952 return Task
.Task
.old_display(self
)
953 ext
= fname
[ext_loc
:]
955 ext_map
= { '.idl' : 'Compiling IDL',
956 '.et' : 'Compiling ERRTABLE',
957 '.asn1': 'Compiling ASN1',
960 return progress_display(self
, ext_map
[ext
], fname
)
961 return Task
.Task
.old_display(self
)
963 Task
.TaskBase
.classes
['Task'].old_display
= Task
.TaskBase
.classes
['Task'].display
964 Task
.TaskBase
.classes
['Task'].display
= samba_display
969 def apply_bundle_remove_dynamiclib_patch(self
):
970 if self
.env
['MACBUNDLE'] or getattr(self
,'mac_bundle',False):
971 if not getattr(self
,'vnum',None):
973 self
.env
['LINKFLAGS'].remove('-dynamiclib')
974 self
.env
['LINKFLAGS'].remove('-single_module')