3 import string
, Logs
, Utils
, Options
, sys
, Build
, os
, intltool
, optparse
, textwrap
4 from samba_utils
import EXPAND_VARIABLES
, os_path_relpath
6 class SambaIndentedHelpFormatter (optparse
.IndentedHelpFormatter
):
7 """Format help with indented section bodies.
15 optparse
.IndentedHelpFormatter
.__init
__(
16 self
, indent_increment
, max_help_position
, width
, short_first
)
18 def format_option(self
, option
):
19 # The help for each option consists of two parts:
20 # * the opt strings and metavars
21 # eg. ("-x", or "-fFILENAME, --file=FILENAME")
22 # * the user-supplied help string
23 # eg. ("turn on expert mode", "read data from FILENAME")
25 # If possible, we write both of these on the same line:
26 # -x turn on expert mode
28 # But if the opt string list is too long, we put the help
29 # string on a second line, indented to the same column it would
30 # start in if it fit on the first line.
31 # -fFILENAME, --file=FILENAME
32 # read data from FILENAME
34 opts
= self
.option_strings
[option
]
35 opt_width
= self
.help_position
- self
.current_indent
- 2
36 if len(opts
) > opt_width
:
37 opts
= "%*s%s\n" % (self
.current_indent
, "", opts
)
38 indent_first
= self
.help_position
39 else: # start help on same line as opts
40 opts
= "%*s%-*s " % (self
.current_indent
, "", opt_width
, opts
)
44 help_text
= self
.expand_default(option
)
45 if string
.find(help_text
, '\n') == -1:
46 help_lines
= textwrap
.wrap(help_text
, self
.help_width
)
48 help_lines
= help_text
.splitlines()
49 result
.append("%*s%s\n" % (indent_first
, "", help_lines
[0]))
50 result
.extend(["%*s%s\n" % (self
.help_position
, "", line
)
51 for line
in help_lines
[1:]])
52 elif opts
[-1] != "\n":
54 return "".join(result
)
57 # list of directory options to offer in configure
59 # 'STD-PATH' - the default path without --enable-fhs
60 # 'FHS-PATH' - the default path with --enable-fhs
62 # 'OPTION' - the configure option to overwrite the default (optional)
63 # 'HELPTEXT' - the help text of the configure option (optional)
65 # 'OVERWRITE' - The option referrs to itself and was already from
66 # the basic GNU options from the gnu_dirs tool.
67 # We may overwrite the related path. (Default: False)
69 # 'DELAY' - The option referrs to other options in the dynconfig list.
70 # We delay the intialization into a later stage. This
71 # makes sure the recursion works. (Default: False)
75 'STD-PATH': '${BINDIR}',
76 'FHS-PATH': '${BINDIR}',
80 'STD-PATH': '${SBINDIR}',
81 'FHS-PATH': '${SBINDIR}',
85 'STD-PATH': '${LIBDIR}',
86 'FHS-PATH': '${LIBDIR}',
90 'STD-PATH': '${LIBEXECDIR}',
91 'FHS-PATH': '${LIBEXECDIR}',
95 'STD-PATH': '${DATADIR}',
96 'FHS-PATH': '${DATADIR}',
100 'STD-PATH': '${LOCALEDIR}',
101 'FHS-PATH': '${LOCALEDIR}',
105 'STD-PATH': '${PYTHONDIR}',
106 'FHS-PATH': '${PYTHONDIR}',
110 'STD-PATH': '${PYTHONARCHDIR}',
111 'FHS-PATH': '${PYTHONARCHDIR}',
115 'STD-PATH': '${MODULESDIR}',
116 'FHS-PATH': '${MODULESDIR}/samba',
120 'STD-PATH': '${INCLUDEDIR}',
121 'FHS-PATH': '${INCLUDEDIR}/samba-4.0',
125 'STD-PATH': '${SBINDIR}',
126 'FHS-PATH': '${SBINDIR}',
129 'STD-PATH': '${DATADIR}/setup',
130 'FHS-PATH': '${DATADIR}/samba/setup',
133 'STD-PATH': '${LIBDIR}/pkgconfig',
134 'FHS-PATH': '${LIBDIR}/pkgconfig',
137 'STD-PATH': '${DATADIR}/swat',
138 'FHS-PATH': '${DATADIR}/samba/swat',
141 'STD-PATH': '${DATADIR}/codepages',
142 'FHS-PATH': '${DATADIR}/samba/codepages',
145 'STD-PATH': '${LIBDIR}/security',
146 'FHS-PATH': '${LIBDIR}/security',
147 'OPTION': '--with-pammodulesdir',
148 'HELPTEXT': 'Which directory to use for PAM modules',
151 'STD-PATH': '${SYSCONFDIR}',
152 'FHS-PATH': '${SYSCONFDIR}/samba',
153 'OPTION': '--with-configdir',
154 'HELPTEXT': 'Where to put configuration files',
157 'STD-PATH': '${PREFIX}/private',
158 'FHS-PATH': '${LOCALSTATEDIR}/lib/samba/private',
159 'OPTION': '--with-privatedir',
160 'HELPTEXT': 'Where to put sam.ldb and other private files',
163 'STD-PATH': '${LOCALSTATEDIR}/lock',
164 'FHS-PATH': '${LOCALSTATEDIR}/lock/samba',
165 'OPTION': '--with-lockdir',
166 'HELPTEXT': 'Where to put short term disposable state files',
169 'STD-PATH': '${LOCALSTATEDIR}/run',
170 'FHS-PATH': '${LOCALSTATEDIR}/run/samba',
171 'OPTION': '--with-piddir',
172 'HELPTEXT': 'Where to put pid files',
175 'STD-PATH': '${LOCALSTATEDIR}/locks',
176 'FHS-PATH': '${LOCALSTATEDIR}/lib/samba',
177 'OPTION': '--with-statedir',
178 'HELPTEXT': 'Where to put persistent state files',
181 'STD-PATH': '${LOCALSTATEDIR}/cache',
182 'FHS-PATH': '${LOCALSTATEDIR}/cache/samba',
183 'OPTION': '--with-cachedir',
184 'HELPTEXT': 'Where to put temporary cache files',
187 'STD-PATH': '${LOCALSTATEDIR}',
188 'FHS-PATH': '${LOCALSTATEDIR}/log/samba',
189 'OPTION': '--with-logfilebase',
190 'HELPTEXT': 'Where to put log files',
193 'STD-PATH': '${LOCALSTATEDIR}/run',
194 'FHS-PATH': '${LOCALSTATEDIR}/run/samba',
195 'OPTION': '--with-sockets-dir',
196 'HELPTEXT': 'socket directory',
198 'PRIVILEGED_SOCKET_DIR' : {
199 'STD-PATH': '${LOCALSTATEDIR}/lib',
200 'FHS-PATH': '${LOCALSTATEDIR}/lib/samba',
201 'OPTION': '--with-privileged-socket-dir',
202 'HELPTEXT': 'privileged socket directory',
204 'WINBINDD_SOCKET_DIR' : {
205 'STD-PATH': '${SOCKET_DIR}/winbindd',
206 'FHS-PATH': '${SOCKET_DIR}/winbindd',
209 'WINBINDD_PRIVILEGED_SOCKET_DIR' : {
210 'STD-PATH': '${PRIVILEGED_SOCKET_DIR}/winbindd_privileged',
211 'FHS-PATH': '${PRIVILEGED_SOCKET_DIR}/winbindd_privileged',
215 'STD-PATH': '${SOCKET_DIR}/nmbd',
216 'FHS-PATH': '${SOCKET_DIR}/nmbd',
219 'NTP_SIGND_SOCKET_DIR' : {
220 'STD-PATH': '${SOCKET_DIR}/ntp_signd',
221 'FHS-PATH': '${SOCKET_DIR}/ntp_signd',
225 'STD-PATH': '${SOCKET_DIR}/ncalrpc',
226 'FHS-PATH': '${SOCKET_DIR}/ncalrpc',
230 'STD-PATH': '${CONFIGDIR}/smb.conf',
231 'FHS-PATH': '${CONFIGDIR}/smb.conf',
235 'STD-PATH': '${CONFIGDIR}/lmhosts',
236 'FHS-PATH': '${CONFIGDIR}/lmhosts',
239 'SMB_PASSWD_FILE' : {
240 'STD-PATH': '${PRIVATE_DIR}/smbpasswd',
241 'FHS-PATH': '${PRIVATE_DIR}/smbpasswd',
246 def set_options(opt
):
247 opt
.parser
.formatter
= SambaIndentedHelpFormatter()
248 opt
.parser
.formatter
.width
=Utils
.get_term_cols()
250 # get all the basic GNU options from the gnu_dirs tool
252 opt_group
=opt
.add_option_group('Samba-specific directory layout','')
254 fhs_help
= "Use FHS-compliant paths (default no)\n"
255 fhs_help
+= "You should consider using this together with:\n"
256 fhs_help
+= "--prefix=/usr --sysconfdir=/etc --locatestatedir=/var"
257 opt_group
.add_option('--enable-fhs', help=fhs_help
,
258 action
="store_true", dest
='ENABLE_FHS', default
=False)
260 for varname
in dynconfig
.keys():
261 if 'OPTION' not in dynconfig
[varname
]:
263 opt
= dynconfig
[varname
]['OPTION']
264 if 'HELPTEXT' in dynconfig
[varname
]:
265 txt
= dynconfig
[varname
]['HELPTEXT']
267 txt
= "dynconfig path %s" % (varname
)
268 def_std
= dynconfig
[varname
]['STD-PATH']
269 def_fhs
= dynconfig
[varname
]['FHS-PATH']
271 help = "%s\n[STD-Default: %s]\n[FHS-Default: %s]" % (txt
, def_std
, def_fhs
)
272 opt_group
.add_option(opt
, help=help, dest
=varname
, action
="store")
275 # get all the basic GNU options from the gnu_dirs tool
277 if Options
.options
.ENABLE_FHS
:
281 if conf
.env
.PREFIX
== '/usr' or conf
.env
.PREFIX
== '/usr/local':
282 Logs
.error("Don't install directly under /usr or /usr/local without using the FHS option (--enable-fhs)")
283 raise Utils
.WafError("ERROR: invalid --prefix=%s value" % (conf
.env
.PREFIX
))
288 for varname
in dynconfig
.keys():
289 dyn_vars
[varname
] = dynconfig
[varname
][flavor
]
290 if 'OVERWRITE' in dynconfig
[varname
] and dynconfig
[varname
]['OVERWRITE']:
291 # we may overwrite this option
293 conf
.ASSERT(varname
not in conf
.env
, "Variable %s already defined" % varname
)
296 for varname
in dynconfig
.keys():
297 if 'OPTION' not in dynconfig
[varname
]:
299 value
= getattr(Options
.options
, varname
, None)
302 conf
.ASSERT(value
!= '', "Empty dynconfig value for %s" % varname
)
303 conf
.env
[varname
] = value
304 # mark it as explicit from the command line
305 explicit_set
[varname
] = value
307 # defaults stage 1 after the explicit block
308 for varname
in dynconfig
.keys():
309 if 'DELAY' in dynconfig
[varname
] and dynconfig
[varname
]['DELAY']:
310 # this option referrs to other options,
311 # so it needs to wait for stage 2.
313 value
= EXPAND_VARIABLES(conf
, dyn_vars
[varname
])
314 conf
.ASSERT(value
!= '', "Empty dynconfig value for %s" % varname
)
315 if varname
not in explicit_set
:
316 # only overwrite if not specified explicitly on the command line
317 conf
.env
[varname
] = value
319 # defaults stage 2 after the explicit block
320 for varname
in dynconfig
.keys():
321 if 'DELAY' not in dynconfig
[varname
] or not dynconfig
[varname
]['DELAY']:
322 # this option was already handled in stage 1.
324 value
= EXPAND_VARIABLES(conf
, dyn_vars
[varname
])
325 conf
.ASSERT(value
!= '', "Empty dynconfig value for %s" % varname
)
326 if varname
not in explicit_set
:
327 # only overwrite if not specified explicitly on the command line
328 conf
.env
[varname
] = value
330 # display the expanded pathes for the user
331 for varname
in dynconfig
.keys():
332 value
= conf
.env
[varname
]
333 conf
.start_msg("Dynconfig[%s]: " % (varname
))
334 conf
.end_msg("'%s'" % (value
), 'GREEN')
336 def dynconfig_cflags(bld
, list=None):
337 '''work out the extra CFLAGS for dynconfig.c'''
339 # override some paths when running from the build directory
340 override
= { 'MODULESDIR' : 'bin/modules',
341 'PYTHONDIR' : 'bin/python',
342 'PYTHONARCHDIR' : 'bin/python',
343 'CODEPAGEDIR' : os
.path
.join(bld
.env
.srcdir
, 'codepages'),
344 'SCRIPTSBINDIR' : os
.path
.join(bld
.env
.srcdir
, 'source4/scripting/bin'),
345 'SETUPDIR' : os
.path
.join(bld
.env
.srcdir
, 'source4/setup') }
346 for varname
in dynconfig
.keys():
347 if list and not varname
in list:
349 value
= bld
.env
[varname
]
350 if not Options
.is_install
:
351 if varname
in override
:
352 value
= os
.path
.join(os
.getcwd(), override
[varname
])
353 cflags
.append('-D%s="%s"' % (varname
, value
))
355 Build
.BuildContext
.dynconfig_cflags
= dynconfig_cflags
358 cflags
= bld
.dynconfig_cflags()
359 version_header
= 'version.h'
360 bld
.SAMBA_SUBSYSTEM('DYNCONFIG',
362 deps
='replace talloc',
363 public_headers
=os_path_relpath(os
.path
.join(Options
.launch_dir
, version_header
), bld
.curdir
),
367 # install some extra empty directories
368 bld
.INSTALL_DIRS("", "${CONFIGDIR} ${PRIVATE_DIR} ${LOGFILEBASE}");
369 bld
.INSTALL_DIRS("", "${PRIVATE_DIR} ${PRIVILEGED_SOCKET_DIR}")
370 bld
.INSTALL_DIRS("", "${STATEDIR} ${CACHEDIR}");
372 # these might be on non persistent storage
373 bld
.INSTALL_DIRS("", "${LOCKDIR} ${PIDDIR} ${SOCKET_DIR}")