Put all Python modules into the 'samba' subpackage. Now you need to
[samba.git] / source / python / setup.py
1 # -*- mode: python -*-
2 #
3 # Unix SMB/CIFS implementation.
4 # Module packaging setup for Samba python extensions
5 #
6 # Copyright (C) Tim Potter, 2002
7 # Copyright (C) Martin Pool, 2002
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #   
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #   
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #
23
24 from distutils.core import setup
25 from distutils.extension import Extension
26
27 import sys, string, os
28
29 # The Makefile passes in environment variable $PYTHON_OBJ as being the
30 # list of Samba objects.  This kind of goes against the distutils.cmd
31 # method of adding setup commands and will also confuse people who are
32 # familiar with the python Distutils module.
33
34 samba_objs = os.environ.get("PYTHON_OBJS", "")
35
36 samba_cflags = os.environ.get("PYTHON_CFLAGS", "")
37
38 samba_srcdir = os.environ.get("SRCDIR", "")
39
40 # These variables are filled in by configure
41
42 samba_libs = os.environ.get("LIBS", "")
43
44 # Convert libs and objs from space separated strings to lists of strings
45 # for distutils to digest.  Split "-l" prefix off library list.
46
47 obj_list = string.split(samba_objs)
48
49 lib_list = []
50
51 for lib in string.split(samba_libs):
52     lib_list.append(string.replace(lib, "-l", ""))
53
54 flags_list = string.split(samba_cflags)
55
56 # Invoke distutils.setup
57
58 setup(
59
60     # Overview information
61     
62     name = "Samba Python Extensions",
63     version = "0.1",
64     author = "Tim Potter",
65     author_email = "tpot@samba.org",
66     license = "GPL",
67
68     # Build info
69     
70     include_dirs = [samba_srcdir + '.', samba_srcdir + "include",
71                     samba_srcdir + "ubiqx", samba_srcdir + "smbwrapper",
72                     samba_srcdir + "popt", "/usr/kerberos/include",
73                     "/usr/local/include"],
74
75     # Get the "samba" directory of Python source.  At the moment this
76     # just contains the __init__ file that makes it work as a
77     # subpackage.  This is needed even though everything else is an
78     # extension module.
79     package_dir = {"samba": os.path.join(samba_srcdir, "python", "samba")},
80     packages = ["samba"],
81     
82     # Module list
83     ext_package = "samba", 
84     ext_modules = [
85
86     # SPOOLSS pipe module
87
88     Extension(name = "spoolss",
89               sources = [samba_srcdir + "python/py_spoolss.c",
90                          samba_srcdir + "python/py_common.c",
91                          samba_srcdir + "python/py_conv.c",
92                          samba_srcdir + "python/py_ntsec.c",
93                          samba_srcdir + "python/py_spoolss_forms.c",
94                          samba_srcdir + "python/py_spoolss_forms_conv.c",
95                          samba_srcdir + "python/py_spoolss_drivers.c",
96                          samba_srcdir + "python/py_spoolss_drivers_conv.c",
97                          samba_srcdir + "python/py_spoolss_printers.c",
98                          samba_srcdir + "python/py_spoolss_printers_conv.c",
99                          samba_srcdir + "python/py_spoolss_printerdata.c",
100                          samba_srcdir + "python/py_spoolss_ports.c",
101                          samba_srcdir + "python/py_spoolss_ports_conv.c",
102                          samba_srcdir + "python/py_spoolss_jobs.c",
103                          samba_srcdir + "python/py_spoolss_jobs_conv.c",
104                          ],
105               libraries = lib_list,
106               library_dirs = ["/usr/kerberos/lib"],
107               extra_objects = obj_list),
108
109     # LSA pipe module
110
111     Extension(name = "lsa",
112               sources = [samba_srcdir + "python/py_lsa.c",
113                          samba_srcdir + "python/py_common.c",
114                          samba_srcdir + "python/py_ntsec.c"],
115               libraries = lib_list,
116               library_dirs = ["/usr/kerberos/lib"],
117               extra_objects = obj_list),
118
119     # SAMR pipe module
120
121     Extension(name = "samr",
122               sources = [samba_srcdir + "python/py_samr.c",
123                          samba_srcdir + "python/py_samr_conv.c",
124                          samba_srcdir + "python/py_common.c"],
125               libraries = lib_list,
126               library_dirs = ["/usr/kerberos/lib"],
127               extra_objects = obj_list),
128
129     # winbind client module
130
131     Extension(name = "winbind",
132               sources = [samba_srcdir + "python/py_winbind.c",
133                          samba_srcdir + "python/py_common.c"],
134               libraries = lib_list,
135               library_dirs = ["/usr/kerberos/lib"],
136               extra_objects = obj_list,
137               extra_compile_args = flags_list),
138
139     # WINREG pipe module
140
141     Extension(name = "winreg",
142               sources = [samba_srcdir + "python/py_winreg.c",
143                          samba_srcdir + "python/py_common.c"],
144               libraries = lib_list,
145               library_dirs = ["/usr/kerberos/lib"],
146               extra_objects = obj_list),
147
148     # tdb module
149
150     Extension(name = "tdb",
151               sources = [samba_srcdir + "python/py_tdb.c"],
152               libraries = lib_list,
153               library_dirs = ["/usr/kerberos/lib"],
154               extra_objects = obj_list),
155
156     # libsmb module
157
158     Extension(name = "smb",
159               sources = [samba_srcdir + "python/py_smb.c",
160                          samba_srcdir + "python/py_common.c"],
161               libraries = lib_list,
162               library_dirs = ["/usr/kerberos/lib"],
163               extra_objects = obj_list),
164
165     # Moving to merge all individual extensions in to one big
166     # extension.  This is to avoid the fact that each extension is 3MB
167     # in size due to the lack of proper depedency management in Samba.
168
169     Extension(name = "samba",
170               sources = [samba_srcdir + "python/py_samba.c",
171                          samba_srcdir + "python/py_common.c"],
172               libraries = lib_list,
173               library_dirs = ["/usr/kerberos/lib"],
174               extra_objects = obj_list),
175
176     # tdbpack/unpack extensions.  Does not actually link to any Samba
177     # code, although it implements a compatible data format.
178     Extension(name = "tdbpack",
179               sources = [os.path.join(samba_srcdir, "python", "py_tdbpack.c")]),
180     ],
181 )