2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2011-06-21 19:49:06 +04:00
import string, Logs, Utils, Options, sys, Build, os, intltool, optparse, textwrap
2011-02-07 07:03:26 +03:00
from samba_utils import EXPAND_VARIABLES, os_path_relpath
2010-03-17 14:07:42 +03:00
2011-06-21 19:46:36 +04:00
class SambaIndentedHelpFormatter (optparse.IndentedHelpFormatter):
"""Format help with indented section bodies.
"""
def __init__(self,
indent_increment=2,
max_help_position=12,
width=None,
short_first=1):
optparse.IndentedHelpFormatter.__init__(
self, indent_increment, max_help_position, width, short_first)
def format_option(self, option):
# The help for each option consists of two parts:
# * the opt strings and metavars
# eg. ("-x", or "-fFILENAME, --file=FILENAME")
# * the user-supplied help string
# eg. ("turn on expert mode", "read data from FILENAME")
#
# If possible, we write both of these on the same line:
# -x turn on expert mode
#
# But if the opt string list is too long, we put the help
# string on a second line, indented to the same column it would
# start in if it fit on the first line.
# -fFILENAME, --file=FILENAME
# read data from FILENAME
result = []
opts = self.option_strings[option]
opt_width = self.help_position - self.current_indent - 2
if len(opts) > opt_width:
opts = "%*s%s\n" % (self.current_indent, "", opts)
indent_first = self.help_position
else: # start help on same line as opts
opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
indent_first = 0
result.append(opts)
if option.help:
help_text = self.expand_default(option)
if string.find(help_text, '\n') == -1:
help_lines = textwrap.wrap(help_text, self.help_width)
else:
help_lines = help_text.splitlines()
result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
result.extend(["%*s%s\n" % (self.help_position, "", line)
for line in help_lines[1:]])
elif opts[-1] != "\n":
result.append("\n")
return "".join(result)
2010-03-17 14:07:42 +03:00
2011-06-21 19:49:06 +04:00
# list of directory options to offer in configure
#
# 'STD-PATH' - the default path without --enable-fhs
# 'FHS-PATH' - the default path with --enable-fhs
#
# 'OPTION' - the configure option to overwrite the default (optional)
# 'HELPTEXT' - the help text of the configure option (optional)
#
# 'OVERWRITE' - The option referrs to itself and was already from
# the basic GNU options from the gnu_dirs tool.
# We may overwrite the related path. (Default: False)
#
# 'DELAY' - The option referrs to other options in the dynconfig list.
# We delay the intialization into a later stage. This
# makes sure the recursion works. (Default: False)
#
dynconfig = {
'BINDIR' : {
'STD-PATH': '${BINDIR}',
'FHS-PATH': '${BINDIR}',
'OVERWRITE': True,
},
'SBINDIR' : {
'STD-PATH': '${SBINDIR}',
'FHS-PATH': '${SBINDIR}',
'OVERWRITE': True,
},
'LIBDIR' : {
'STD-PATH': '${LIBDIR}',
'FHS-PATH': '${LIBDIR}',
'OVERWRITE': True,
},
'LIBEXECDIR' : {
'STD-PATH': '${LIBEXECDIR}',
'FHS-PATH': '${LIBEXECDIR}',
'OVERWRITE': True,
},
'DATADIR' : {
'STD-PATH': '${DATADIR}',
'FHS-PATH': '${DATADIR}',
'OVERWRITE': True,
},
'LOCALEDIR' : {
'STD-PATH': '${LOCALEDIR}',
'FHS-PATH': '${LOCALEDIR}',
'OVERWRITE': True,
},
'PYTHONDIR' : {
'STD-PATH': '${PYTHONDIR}',
'FHS-PATH': '${PYTHONDIR}',
'OVERWRITE': True,
},
'PYTHONARCHDIR' : {
'STD-PATH': '${PYTHONARCHDIR}',
'FHS-PATH': '${PYTHONARCHDIR}',
'OVERWRITE': True,
},
2014-08-26 01:59:46 +04:00
'PERL_LIB_INSTALL_DIR' : {
'STD-PATH': '${PERL_LIB_INSTALL_DIR}',
'FHS-PATH': '${PERL_LIB_INSTALL_DIR}',
'OVERWRITE': True,
},
2014-08-26 02:41:54 +04:00
'PERL_ARCH_INSTALL_DIR' : {
'STD-PATH': '${PERL_ARCH_INSTALL_DIR}',
'FHS-PATH': '${PERL_ARCH_INSTALL_DIR}',
'OVERWRITE': True,
},
2011-06-21 19:49:06 +04:00
'INCLUDEDIR' : {
'STD-PATH': '${INCLUDEDIR}',
'FHS-PATH': '${INCLUDEDIR}/samba-4.0',
'OVERWRITE': True,
},
'SCRIPTSBINDIR' : {
'STD-PATH': '${SBINDIR}',
'FHS-PATH': '${SBINDIR}',
},
'SETUPDIR' : {
'STD-PATH': '${DATADIR}/setup',
'FHS-PATH': '${DATADIR}/samba/setup',
},
'PKGCONFIGDIR' : {
'STD-PATH': '${LIBDIR}/pkgconfig',
'FHS-PATH': '${LIBDIR}/pkgconfig',
},
'CODEPAGEDIR' : {
'STD-PATH': '${DATADIR}/codepages',
'FHS-PATH': '${DATADIR}/samba/codepages',
},
2012-01-17 15:51:57 +04:00
'PRIVATELIBDIR' : {
'STD-PATH': '${LIBDIR}/private',
'FHS-PATH': '${LIBDIR}/samba',
'OPTION': '--with-privatelibdir',
'HELPTEXT': 'Which directory to use for private Samba libraries',
'OVERWRITE': True,
},
2012-01-17 15:32:47 +04:00
'MODULESDIR' : {
'STD-PATH': '${LIBDIR}',
'FHS-PATH': '${LIBDIR}/samba',
'OPTION': '--with-modulesdir',
'HELPTEXT': 'Which directory to use for Samba modules',
'OVERWRITE': True,
},
2011-06-21 19:49:06 +04:00
'PAMMODULESDIR' : {
2011-07-13 15:06:16 +04:00
'STD-PATH': '${LIBDIR}/security',
'FHS-PATH': '${LIBDIR}/security',
2011-06-21 19:49:06 +04:00
'OPTION': '--with-pammodulesdir',
'HELPTEXT': 'Which directory to use for PAM modules',
},
'CONFIGDIR' : {
'STD-PATH': '${SYSCONFDIR}',
'FHS-PATH': '${SYSCONFDIR}/samba',
'OPTION': '--with-configdir',
'HELPTEXT': 'Where to put configuration files',
},
'PRIVATE_DIR' : {
'STD-PATH': '${PREFIX}/private',
'FHS-PATH': '${LOCALSTATEDIR}/lib/samba/private',
'OPTION': '--with-privatedir',
'HELPTEXT': 'Where to put sam.ldb and other private files',
},
'LOCKDIR' : {
'STD-PATH': '${LOCALSTATEDIR}/lock',
'FHS-PATH': '${LOCALSTATEDIR}/lock/samba',
'OPTION': '--with-lockdir',
'HELPTEXT': 'Where to put short term disposable state files',
},
'PIDDIR' : {
'STD-PATH': '${LOCALSTATEDIR}/run',
'FHS-PATH': '${LOCALSTATEDIR}/run/samba',
'OPTION': '--with-piddir',
'HELPTEXT': 'Where to put pid files',
},
'STATEDIR' : {
'STD-PATH': '${LOCALSTATEDIR}/locks',
2011-07-13 15:06:16 +04:00
'FHS-PATH': '${LOCALSTATEDIR}/lib/samba',
2011-06-21 19:49:06 +04:00
'OPTION': '--with-statedir',
'HELPTEXT': 'Where to put persistent state files',
},
'CACHEDIR' : {
'STD-PATH': '${LOCALSTATEDIR}/cache',
'FHS-PATH': '${LOCALSTATEDIR}/cache/samba',
'OPTION': '--with-cachedir',
'HELPTEXT': 'Where to put temporary cache files',
},
'LOGFILEBASE' : {
'STD-PATH': '${LOCALSTATEDIR}',
'FHS-PATH': '${LOCALSTATEDIR}/log/samba',
'OPTION': '--with-logfilebase',
'HELPTEXT': 'Where to put log files',
},
'SOCKET_DIR' : {
'STD-PATH': '${LOCALSTATEDIR}/run',
'FHS-PATH': '${LOCALSTATEDIR}/run/samba',
'OPTION': '--with-sockets-dir',
'HELPTEXT': 'socket directory',
},
'PRIVILEGED_SOCKET_DIR' : {
'STD-PATH': '${LOCALSTATEDIR}/lib',
'FHS-PATH': '${LOCALSTATEDIR}/lib/samba',
'OPTION': '--with-privileged-socket-dir',
'HELPTEXT': 'privileged socket directory',
},
'WINBINDD_SOCKET_DIR' : {
'STD-PATH': '${SOCKET_DIR}/winbindd',
'FHS-PATH': '${SOCKET_DIR}/winbindd',
'DELAY': True,
},
'WINBINDD_PRIVILEGED_SOCKET_DIR' : {
'STD-PATH': '${PRIVILEGED_SOCKET_DIR}/winbindd_privileged',
'FHS-PATH': '${PRIVILEGED_SOCKET_DIR}/winbindd_privileged',
'DELAY': True,
},
'NMBDSOCKETDIR' : {
'STD-PATH': '${SOCKET_DIR}/nmbd',
'FHS-PATH': '${SOCKET_DIR}/nmbd',
'DELAY': True,
},
'NTP_SIGND_SOCKET_DIR' : {
2012-11-12 01:44:02 +04:00
'STD-PATH': '${PRIVILEGED_SOCKET_DIR}/ntp_signd',
'FHS-PATH': '${PRIVILEGED_SOCKET_DIR}/ntp_signd',
2011-06-21 19:49:06 +04:00
'DELAY': True,
},
'NCALRPCDIR' : {
'STD-PATH': '${SOCKET_DIR}/ncalrpc',
'FHS-PATH': '${SOCKET_DIR}/ncalrpc',
'DELAY': True,
},
'CONFIGFILE' : {
'STD-PATH': '${CONFIGDIR}/smb.conf',
'FHS-PATH': '${CONFIGDIR}/smb.conf',
'DELAY': True,
},
'LMHOSTSFILE' : {
'STD-PATH': '${CONFIGDIR}/lmhosts',
'FHS-PATH': '${CONFIGDIR}/lmhosts',
'DELAY': True,
},
'SMB_PASSWD_FILE' : {
'STD-PATH': '${PRIVATE_DIR}/smbpasswd',
'FHS-PATH': '${PRIVATE_DIR}/smbpasswd',
'DELAY': True,
},
}
2010-03-17 14:07:42 +03:00
def set_options(opt):
2011-06-21 19:46:36 +04:00
opt.parser.formatter = SambaIndentedHelpFormatter()
opt.parser.formatter.width=Utils.get_term_cols()
2012-01-17 15:51:57 +04:00
for k in ('--with-privatelibdir', '--with-modulesdir'):
2012-01-17 15:32:47 +04:00
option = opt.parser.get_option(k)
if option:
opt.parser.remove_option(k)
2012-01-19 01:54:28 +04:00
del opt.parser.defaults['PRIVATELIBDIR']
del opt.parser.defaults['MODULESDIR']
2012-01-17 15:32:47 +04:00
2011-06-21 19:49:06 +04:00
# get all the basic GNU options from the gnu_dirs tool
2011-06-21 14:07:17 +04:00
opt_group=opt.add_option_group('Samba-specific directory layout','')
2011-06-21 19:49:06 +04:00
fhs_help = "Use FHS-compliant paths (default no)\n"
fhs_help += "You should consider using this together with:\n"
2012-08-03 04:00:56 +04:00
fhs_help += "--prefix=/usr --sysconfdir=/etc --localstatedir=/var"
2011-06-21 19:49:06 +04:00
opt_group.add_option('--enable-fhs', help=fhs_help,
2011-06-20 20:02:04 +04:00
action="store_true", dest='ENABLE_FHS', default=False)
2011-06-21 19:49:06 +04:00
for varname in dynconfig.keys():
if 'OPTION' not in dynconfig[varname]:
continue
opt = dynconfig[varname]['OPTION']
if 'HELPTEXT' in dynconfig[varname]:
txt = dynconfig[varname]['HELPTEXT']
else:
txt = "dynconfig path %s" % (varname)
def_std = dynconfig[varname]['STD-PATH']
def_fhs = dynconfig[varname]['FHS-PATH']
help = "%s\n[STD-Default: %s]\n[FHS-Default: %s]" % (txt, def_std, def_fhs)
opt_group.add_option(opt, help=help, dest=varname, action="store")
2010-03-17 14:07:42 +03:00
def configure(conf):
# get all the basic GNU options from the gnu_dirs tool
2011-06-21 14:09:40 +04:00
2011-06-21 19:49:06 +04:00
if Options.options.ENABLE_FHS:
flavor = 'FHS-PATH'
else:
flavor = 'STD-PATH'
if conf.env.PREFIX == '/usr' or conf.env.PREFIX == '/usr/local':
Logs.error("Don't install directly under /usr or /usr/local without using the FHS option (--enable-fhs)")
raise Utils.WafError("ERROR: invalid --prefix=%s value" % (conf.env.PREFIX))
2011-06-21 14:09:40 +04:00
2011-06-21 19:49:06 +04:00
explicit_set ={}
dyn_vars = {}
for varname in dynconfig.keys():
dyn_vars[varname] = dynconfig[varname][flavor]
if 'OVERWRITE' in dynconfig[varname] and dynconfig[varname]['OVERWRITE']:
# we may overwrite this option
continue
2010-03-17 14:07:42 +03:00
conf.ASSERT(varname not in conf.env, "Variable %s already defined" % varname)
2011-06-21 19:49:06 +04:00
# the explicit block
for varname in dynconfig.keys():
if 'OPTION' not in dynconfig[varname]:
continue
value = getattr(Options.options, varname, None)
if value is None:
continue
conf.ASSERT(value != '', "Empty dynconfig value for %s" % varname)
conf.env[varname] = value
# mark it as explicit from the command line
explicit_set[varname] = value
2010-03-27 01:46:50 +03:00
2011-06-21 19:49:06 +04:00
# defaults stage 1 after the explicit block
for varname in dynconfig.keys():
if 'DELAY' in dynconfig[varname] and dynconfig[varname]['DELAY']:
# this option referrs to other options,
# so it needs to wait for stage 2.
continue
value = EXPAND_VARIABLES(conf, dyn_vars[varname])
conf.ASSERT(value != '', "Empty dynconfig value for %s" % varname)
if varname not in explicit_set:
# only overwrite if not specified explicitly on the command line
conf.env[varname] = value
2011-06-20 20:02:04 +04:00
2011-06-21 19:49:06 +04:00
# defaults stage 2 after the explicit block
for varname in dynconfig.keys():
if 'DELAY' not in dynconfig[varname] or not dynconfig[varname]['DELAY']:
# this option was already handled in stage 1.
continue
value = EXPAND_VARIABLES(conf, dyn_vars[varname])
conf.ASSERT(value != '', "Empty dynconfig value for %s" % varname)
if varname not in explicit_set:
# only overwrite if not specified explicitly on the command line
conf.env[varname] = value
2011-06-20 20:02:04 +04:00
2011-06-21 19:49:06 +04:00
# display the expanded pathes for the user
for varname in dynconfig.keys():
value = conf.env[varname]
conf.start_msg("Dynconfig[%s]: " % (varname))
conf.end_msg("'%s'" % (value), 'GREEN')
2011-06-20 20:02:04 +04:00
2014-01-09 03:01:18 +04:00
def get_override(bld):
2010-11-23 14:44:53 +03:00
override = { 'MODULESDIR' : 'bin/modules',
2011-02-05 10:27:33 +03:00
'PYTHONDIR' : 'bin/python',
'PYTHONARCHDIR' : 'bin/python',
2011-11-30 03:07:30 +04:00
'BINDIR' : 'bin',
'SBINDIR' : 'bin',
2014-01-09 03:01:18 +04:00
'CODEPAGEDIR' : 'codepages',
'SCRIPTSBINDIR' : 'source4/scripting/bin',
'SETUPDIR' : 'source4/setup'
}
return override
def dynconfig_cflags(bld, list=None):
'''work out the extra CFLAGS for dynconfig.c'''
cflags = []
2011-06-21 19:49:06 +04:00
for varname in dynconfig.keys():
if list and not varname in list:
2010-10-13 05:19:37 +04:00
continue
2011-06-21 19:49:06 +04:00
value = bld.env[varname]
2010-11-23 14:44:53 +03:00
if not Options.is_install:
2014-01-09 03:01:18 +04:00
override = get_override(bld)
2011-06-21 19:49:06 +04:00
if varname in override:
2014-01-09 03:01:18 +04:00
value = os.path.join(bld.env.srcdir, override[varname])
2011-06-21 19:49:06 +04:00
cflags.append('-D%s="%s"' % (varname, value))
2010-03-17 14:07:42 +03:00
return cflags
2010-09-25 08:58:09 +04:00
Build.BuildContext.dynconfig_cflags = dynconfig_cflags
2010-03-17 14:07:42 +03:00
2014-08-27 12:13:09 +04:00
def dynconfig_varnames(bld, list=None):
'''work out the dynconfig variables'''
varnames = []
for varname in dynconfig.keys():
if list and not varname in list:
continue
varnames.append(varname)
return varnames
Build.BuildContext.dynconfig_varnames = dynconfig_varnames
2014-01-09 03:01:18 +04:00
def pathconfig_entities(bld, list=None):
'''work out the extra entities for the docs'''
entities = []
for varname in dynconfig.keys():
if list and not varname in list:
continue
value = bld.env[varname]
if not Options.is_install:
override = get_override(bld)
if varname in override:
value = os.path.join(bld.env.srcdir, override[varname])
entities.append("<!ENTITY pathconfig.%s '%s'>" % (varname, value))
return entities
Build.BuildContext.pathconfig_entities = pathconfig_entities
2010-03-17 14:07:42 +03:00
def build(bld):
2010-09-25 08:58:09 +04:00
cflags = bld.dynconfig_cflags()
2011-06-28 13:31:02 +04:00
version_header = 'version.h'
2010-03-17 14:07:42 +03:00
bld.SAMBA_SUBSYSTEM('DYNCONFIG',
2011-06-21 06:48:22 +04:00
'dynconfig.c',
2010-03-17 14:07:42 +03:00
deps='replace talloc',
2011-06-28 13:31:02 +04:00
public_headers=os_path_relpath(os.path.join(Options.launch_dir, version_header), bld.curdir),
2010-03-27 05:56:05 +03:00
header_path='samba',
2010-03-17 14:07:42 +03:00
cflags=cflags)
2011-06-21 19:49:06 +04:00
# install some extra empty directories
bld.INSTALL_DIRS("", "${CONFIGDIR} ${PRIVATE_DIR} ${LOGFILEBASE}");
bld.INSTALL_DIRS("", "${PRIVATE_DIR} ${PRIVILEGED_SOCKET_DIR}")
bld.INSTALL_DIRS("", "${STATEDIR} ${CACHEDIR}");
# these might be on non persistent storage
bld.INSTALL_DIRS("", "${LOCKDIR} ${PIDDIR} ${SOCKET_DIR}")