623ca44b00595a013b0c3b7fc229e38123cafdba
[sfrench/samba-autobuild/.git] / python / wscript
1 #!/usr/bin/env python
2
3 import os
4
5 def configure(conf):
6     kerberos_py = conf.srcdir + "/python/samba/provision/kerberos_implementation.py"
7
8     f = open(kerberos_py, 'w')
9     try:
10         header = """#
11 # Copyright (c) 2016      Andreas Schneider <asn@samba.org>
12 #
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 3 of the License, or
16 # (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
25 #
26 """
27         f.write(header)
28
29         data = """kdb_modules_dir = "{0}"
30 """
31
32         if conf.env.HEIMDAL_KRB5_CONFIG:
33             f.write(data.format("", ""))
34         else:
35             modulesdir = "%s/krb5/plugins/kdb" % conf.env.LIBDIR
36
37             f.write(data.format(modulesdir))
38     finally:
39         f.close()
40
41 def build(bld):
42     bld.SAMBA_LIBRARY('samba_python',
43                       source=[],
44                       deps='''
45                            LIBPYTHON
46                            pytalloc-util
47                            pyrpc_util
48                            ''',
49                       grouping_library=True,
50                       private_library=True,
51                       pyembed=True,
52                       enabled=bld.PYTHON_BUILD_IS_ENABLED())
53
54     bld.SAMBA_SUBSYSTEM('LIBPYTHON',
55                         source='modules.c',
56                         public_deps='',
57                         init_function_sentinel='{NULL,NULL}',
58                         deps='talloc',
59                         pyext=True,
60                         enabled=bld.PYTHON_BUILD_IS_ENABLED())
61
62     for env in bld.gen_python_environments():
63         pytalloc_util = bld.pyembed_libname('pytalloc-util')
64         pyparam_util = bld.pyembed_libname('pyparam_util')
65
66         bld.SAMBA_PYTHON('python_glue',
67                          source='pyglue.c',
68                          deps='''
69                               %s
70                               samba-util
71                               netif
72                               %s
73                               ''' % (pyparam_util, pytalloc_util),
74                          realname='samba/_glue.so')
75
76     if bld.PYTHON_BUILD_IS_ENABLED():
77         for env in bld.gen_python_environments():
78             # install out various python scripts for use by make test
79             bld.SAMBA_SCRIPT('samba_python_files',
80                              pattern='samba/**/*.py',
81                              installdir='python')
82
83             bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)