]> git.lyx.org Git - features.git/blob - development/scons/SConstruct
SCons: build TOC.lyx during installation
[features.git] / development / scons / SConstruct
1 # vi:filetype=python:expandtab:tabstop=4:shiftwidth=4
2 #
3 # file SConstruct
4 #
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7 #
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10 #
11 # This is a scons based building system for lyx, please refer
12 # to INSTALL.scons for detailed instructions.
13 #
14
15 import os, sys, copy, cPickle, glob, time
16
17 # scons_utils.py defines a few utility function
18 import scons_utils as utils
19 # import all file lists
20 from scons_manifest import *
21
22 #----------------------------------------------------------
23 # Required runtime environment
24 #----------------------------------------------------------
25
26 # scons asks for 1.5.2, lyx requires 2.3
27 EnsurePythonVersion(2, 3)
28 # Please use at least 0.96.92 (not 0.96.1)
29 EnsureSConsVersion(0, 96)
30 # also check for minor version number for scons 0.96
31 from SCons import __version__
32 version = map(int, __version__.split('.'))
33 if version[0] == 0 and version[1] == 96 and version[2] < 92:
34     print "Scons >= 0.96.92 is required."
35     Exit(1)
36
37 # determine where I am ...
38 #
39 from SCons.Node.FS import default_fs
40 # default_fs.SConstruct_dir is where SConstruct file is located.
41 scons_dir = default_fs.SConstruct_dir.path
42 # get the ../.. of scons_dir
43 top_src_dir = os.path.split(os.path.split(default_fs.SConstruct_dir.abspath)[0])[0]
44 sys.path.append(os.path.join(top_src_dir, 'lib', 'doc'))
45 import depend
46
47 #----------------------------------------------------------
48 # Global definitions
49 #----------------------------------------------------------
50
51 # some global settings
52 #
53 # get version number from configure.ac so that JMarc does
54 # not have to change SConstruct during lyx release
55 package_version = utils.getVerFromConfigure(top_src_dir)
56 package_cygwin_version = '%s-1' % package_version
57 boost_version = ['1_34']
58
59 if 'svn' in package_version:
60     devel_version = True
61     default_build_mode = 'debug'
62 else:
63     devel_version = False
64     default_build_mode = 'release'
65
66 package = 'lyx'
67 package_bugreport = 'lyx-devel@lists.lyx.org'
68 package_name = 'LyX'
69 package_tarname = 'lyx'
70 package_string = '%s %s' % (package_name, package_version)
71
72 # various cache/log files
73 default_log_file = 'scons_lyx.log'
74 opt_cache_file = 'opt.cache'
75
76
77 #----------------------------------------------------------
78 # platform dependent settings
79 #----------------------------------------------------------
80
81 if os.name == 'nt':
82     platform_name = 'win32'
83     default_prefix = 'c:/program files/lyx'
84     default_with_x = False
85     default_packaging_method = 'windows'
86 elif os.name == 'posix' and sys.platform != 'cygwin':
87     platform_name = sys.platform
88     default_prefix = '/usr/local'
89     default_with_x = True
90     default_packaging_method = 'posix'
91 elif os.name == 'posix' and sys.platform == 'cygwin':
92     platform_name = 'cygwin'
93     default_prefix = '/usr'
94     default_with_x = True
95     default_packaging_method = 'posix'
96 elif os.name == 'darwin':
97     platform_name = 'macosx'
98     # FIXME: macOSX default prefix?
99     default_prefix = '.'
100     default_with_x = False
101     default_packaging_method = 'macosx'
102 else:  # unsupported system, assume posix behavior
103     platform_name = 'others'
104     default_prefix = '.'
105     default_with_x = True
106     default_packaging_method = 'posix'
107
108 #---------------------------------------------------------
109 # Handling options
110 #----------------------------------------------------------
111 #
112 # You can set perminant default values in config.py
113 if os.path.isfile('config.py'):
114     print "Getting options from config.py..."
115     print open('config.py').read()
116
117 opts = Options(['config.py'])
118 opts.AddOptions(
119     # frontend
120     EnumOption('frontend', 'Main GUI', 'qt4',
121         allowed_values = ('qt4',) ),
122     # debug or release build
123     EnumOption('mode', 'Building method', default_build_mode,
124         allowed_values = ('debug', 'release') ),
125     # boost libraries
126     EnumOption('boost',
127         'Use included, system boost library, or try sytem boost first.',
128         'auto', allowed_values = (
129             'auto',       # detect boost, if not found, use included
130             'included',   # always use included boost
131             'system',     # always use system boost, fail if can not find
132             ) ),
133     #
134     EnumOption('gettext',
135         'Use included, system gettext library, or try sytem gettext first',
136         'auto', allowed_values = (
137             'auto',       # detect gettext, if not found, use included
138             'included',   # always use included gettext
139             'system',     # always use system gettext, fail if can not find
140             ) ),
141     #
142     EnumOption('spell', 'Choose spell checker to use.', 'auto',
143         allowed_values = ('aspell', 'pspell', 'ispell', 'auto', 'no') ),
144     # packaging method
145     EnumOption('packaging', 'Packaging method to use.', default_packaging_method,
146         allowed_values = ('windows', 'posix', 'macosx')),
147     #
148     BoolOption('fast_start', 'This option is obsolete.', False),
149     # No precompiled header support (too troublesome to make it work for msvc)
150     # BoolOption('pch', 'Whether or not use pch', False),
151     # enable assertion, (config.h has ENABLE_ASSERTIOS
152     BoolOption('assertions', 'Use assertions', True),
153     # enable warning, (config.h has WITH_WARNINGS)
154     # default to False since MSVC does not have #warning
155     BoolOption('warnings', 'Use warnings', False),
156     # config.h define _GLIBCXX_CONCEPT_CHECKS
157     # Note: for earlier version of gcc (3.3) define _GLIBCPP_CONCEPT_CHECKS
158     BoolOption('concept_checks', 'Enable concept checks', True),
159     #
160     BoolOption('nls', 'Whether or not use native language support', True),
161     #
162     BoolOption('profiling', 'Whether or not enable profiling', False),
163     # config.h define _GLIBCXX_DEBUG and _GLIBCXX_DEBUG_PEDANTIC
164     BoolOption('stdlib_debug', 'Whether or not turn on stdlib debug', False),
165     # using x11?
166     BoolOption('X11', 'Use x11 windows system', default_with_x),
167     # use MS VC++ to build lyx
168     BoolOption('use_vc', 'Use MS VC++ to build lyx (cl.exe will be probed)', None),
169     #
170     PathOption('qt_dir', 'Path to qt directory', None),
171     #
172     PathOption('qt_inc_path', 'Path to qt include directory', None),
173     #
174     PathOption('qt_lib_path', 'Path to qt library directory', None),
175     # extra include and libpath
176     PathOption('extra_inc_path', 'Extra include path', None),
177     #
178     PathOption('extra_lib_path', 'Extra library path', None),
179     #
180     PathOption('extra_bin_path', 'A convenient way to add a path to $PATH', None),
181     #
182     PathOption('extra_inc_path1', 'Extra include path', None),
183     #
184     PathOption('extra_lib_path1', 'Extra library path', None),
185     # rebuild only specifed, comma separated targets
186     ('rebuild', '''rebuild only specifed, comma separated targets.
187         yes or all (default): rebuild everything
188         no or none: rebuild nothing (usually used for installation)
189         comp1,comp2,...: rebuild specified targets''', None),
190     # can be set to a non-existing directory
191     ('prefix', 'install architecture-independent files in PREFIX', default_prefix),
192     # replace the default name and location of the windows installer
193     ('win_installer', 'name or full path to the windows installer', None),
194     # the deps package used to create minimal installer (qt and other libraries)
195     ('deps_dir', 'path to the development depedency packages with zlib, iconv, zlib and qt libraries', None),
196     # whether or not build bundle installer
197     BoolOption('bundle', 'Whether or not build bundle installer', False),
198     # the bundle directory, containing bundled applications
199     PathOption('bundle_dir', 'path to the bundle dependency package with miktex setup.exe etc', None),
200     # build directory, will use $mode if not set
201     ('build_dir', 'Build directory', None),
202     # version suffix
203     ('version_suffix', 'install lyx as lyx-suffix', None),
204     # how to load options
205     ('load_option', '''load option from previous scons run. option can be
206         yes (default): load all options
207         no: do not load any option
208         opt1,opt2: load specified options
209         -opt1,opt2: load all options other than specified ones''', 'yes'),
210     #
211     ('optimization', 'optimization CCFLAGS option.', None),
212     #
213     PathOption('exec_prefix', 'install architecture-independent executable files in PREFIX', None),
214     # log file
215     ('logfile', 'save commands (not outputs) to logfile', default_log_file),
216     # provided for backward compatibility
217     ('dest_dir', 'install to DESTDIR. (Provided for backward compatibility only)', None),
218     # environment variable can be set as options.
219     ('DESTDIR', 'install to DESTDIR', None),
220     ('CC', 'replace default $CC', None),
221     ('LINK', 'replace default $LINK', None),
222     ('CPP', 'replace default $CPP', None),
223     ('CXX', 'replace default $CXX', None),
224     ('CXXCPP', 'replace default $CXXCPP', None),
225     ('CCFLAGS', 'replace default $CCFLAGS', None),
226     ('CPPFLAGS', 'replace default $CPPFLAGS', None),
227     ('LINKFLAGS', 'replace default $LINKFLAGS', None),
228 )
229
230 # allowed options
231 all_options = [x.key for x in opts.options]
232
233 # copied from SCons/Options/BoolOption.py
234 # We need to use them before a boolean ARGUMENTS option is available
235 # in env as bool.
236 true_strings  = ('y', 'yes', 'true', 't', '1', 'on' , 'all' )
237 false_strings = ('n', 'no', 'false', 'f', '0', 'off', 'none')
238
239 if ARGUMENTS.has_key('fast_start'):
240     print 'fast_start option is obsolete'
241
242 # if load_option=yes (default), load saved comand line options
243 #
244 # This option can take value yes/no/opt1,opt2/-opt1,opt2
245 # and tries to be clever in choosing options to load
246 if (not ARGUMENTS.has_key('load_option') or \
247     ARGUMENTS['load_option'] not in false_strings) \
248     and os.path.isfile(opt_cache_file):
249     cache_file = open(opt_cache_file)
250     opt_cache = cPickle.load(cache_file)
251     cache_file.close()
252     # import cached options, but we should ignore qt_dir when frontend changes
253     if ARGUMENTS.has_key('frontend') and opt_cache.has_key('frontend') \
254         and ARGUMENTS['frontend'] != opt_cache['frontend'] \
255         and opt_cache.has_key('qt_dir'):
256         opt_cache.pop('qt_dir')
257     # and we do not cache some options (dest_dir is obsolete)
258     for arg in ['load_option', 'dest_dir']:
259         if opt_cache.has_key(arg):
260             opt_cache.pop(arg)
261     # remove obsolete cached keys (well, SConstruct is evolving. :-)
262     for arg in opt_cache.keys():
263         if arg not in all_options:
264             print 'Option %s is obsolete, do not load it' % arg
265             opt_cache.pop(arg)
266     # now, if load_option=opt1,opt2 or -opt1,opt2
267     if ARGUMENTS.has_key('load_option') and \
268         ARGUMENTS['load_option'] not in true_strings + false_strings:
269         # if -opt1,opt2 is specified, do not load these options
270         if ARGUMENTS['load_option'][0] == '-':
271             for arg in ARGUMENTS['load_option'][1:].split(','):
272                 if opt_cache.has_key(arg):
273                     opt_cache.pop(arg)
274         # if opt1,opt2 is specified, only load specified options
275         else:
276             args = ARGUMENTS['load_option'].split(',')
277             for arg in opt_cache.keys():
278                 if arg not in args:
279                     opt_cache.pop(arg)
280     # now restore options as if entered from command line
281     for key in opt_cache.keys():
282         if not ARGUMENTS.has_key(key):
283             ARGUMENTS[key] = opt_cache[key]
284             print "Restoring cached option  %s=%s" % (key, ARGUMENTS[key])
285     print
286
287 # check if there is unused (or misspelled) argument
288 for arg in ARGUMENTS.keys():
289     if arg not in all_options:
290         import textwrap
291         print "Unknown option '%s'... exiting." % arg
292         print
293         print "Available options are (check 'scons -help' for details):"
294         print '    ' + '\n    '.join(textwrap.wrap(',  '.join(all_options)))
295         Exit(1)
296
297 # save options used
298 cache_file = open(opt_cache_file, 'w')
299 cPickle.dump(ARGUMENTS, cache_file)
300 cache_file.close()
301
302 #---------------------------------------------------------
303 # Setting up environment
304 #---------------------------------------------------------
305
306 # I do not really like ENV=os.environ, but you may add it
307 # here if you experience some environment related problem
308 env = Environment(options = opts)
309
310 # set individual variables since I do not really like ENV = os.environ
311 env['ENV']['PATH'] = os.environ.get('PATH')
312 env['ENV']['HOME'] = os.environ.get('HOME')
313 # these are defined for MSVC
314 env['ENV']['LIB'] = os.environ.get('LIB')
315 env['ENV']['INCLUDE'] = os.environ.get('INCLUDE')
316
317 # for simplicity, use var instead of env[var]
318 frontend = env['frontend']
319 prefix = env['prefix']
320 mode = env['mode']
321
322 if platform_name == 'win32':
323     if env.has_key('use_vc'):
324         use_vc = env['use_vc']
325         if WhereIs('cl.exe') is None:
326             print "cl.exe is not found. Are you using the MSVC environment?"
327             Exit(2)
328     elif WhereIs('cl.exe') is not None:
329         use_vc = True
330     else:
331         use_vc = False
332 else:
333     use_vc = False
334
335 # lyx will be built to $build/build_dir so it is possible
336 # to build multiple build_dirs using the same source
337 # $mode can be debug or release
338 if env.has_key('build_dir') and env['build_dir'] is not None:
339     # create the directory if needed
340     if not os.path.isdir(env['build_dir']):
341         try:
342             os.makedirs(env['build_dir'])
343         except:
344             pass
345         if not os.path.isdir(env['build_dir']):
346             print 'Can not create directory', env['build_dir']
347             Exit(3)
348     env['BUILDDIR'] = env['build_dir']
349 else:
350     # Determine the name of the build $mode
351     env['BUILDDIR'] = '#' + mode
352
353 # all built libraries will go to build_dir/libs
354 # (This is different from the make file approach)
355 env['LOCALLIBPATH'] = '$BUILDDIR/libs'
356 env.AppendUnique(LIBPATH = ['$LOCALLIBPATH'])
357
358
359 # Here is a summary of variables defined in env
360 # 1. defined options
361 # 2. undefined options with a non-None default value
362 # 3. compiler commands and flags like CCFLAGS.
363 #     MSGFMT used to process po files
364 # 4. Variables that will be used to replace variables in some_file.in
365 #     src/support/package.C.in:
366 #       TOP_SRCDIR, LOCALEDIR, LYX_DIR, PROGRAM_SUFFIX
367 #     lib/lyx2lyx/lyx2lyx_version.py.in
368 #       PACKAGE_VERSION
369 #     src/version.C.in
370 #       PACKAGE_VERSION, LYX_DATE, VERSION_INFO
371
372 # full path name is used to build msvs project files
373 # and to replace TOP_SRCDIR in package.C
374 env['TOP_SRCDIR'] = Dir(top_src_dir).abspath
375 # needed by src/version.C.in => src/version.C
376 env['PACKAGE_VERSION'] = package_version
377 env['LYX_DATE'] = time.asctime()
378
379 # determine share_dir etc
380 packaging_method = env.get('packaging')
381 if packaging_method == 'windows':
382     share_dir = 'Resources'
383     man_dir = 'Resources/man/man1'
384     locale_dir = 'Resources/locale'
385 else:
386     share_dir = 'share/lyx'
387     locale_dir = 'share/locale'
388     if platform_name == 'cygwin':
389         man_dir = 'share/man/man1'
390     else:
391         man_dir = 'man/man1'
392
393 # program suffix: can be yes, or a string
394 if env.has_key('version_suffix'):
395     if env['version_suffix'] in true_strings:
396         program_suffix = package_version
397     elif env['version_suffix'] in false_strings:
398         program_suffix = ''
399     else:
400         program_suffix = env['version_suffix']
401 else:
402     program_suffix = ''
403 # used by package.C.in
404 env['PROGRAM_SUFFIX'] = program_suffix
405
406 # whether or not add suffix to file and directory names
407 add_suffix = packaging_method != 'windows'
408 # LYX_DIR are different (used in package.C.in)
409 if add_suffix:
410     env['LYX_DIR'] = Dir(os.path.join(prefix, share_dir + program_suffix)).abspath
411 else:
412     env['LYX_DIR'] = Dir(os.path.join(prefix, share_dir)).abspath
413 # we need absolute path for package.C
414 env['LOCALEDIR'] = Dir(os.path.join(prefix, locale_dir)).abspath
415
416
417 #---------------------------------------------------------
418 # Setting building environment (Tools, compiler flags etc)
419 #---------------------------------------------------------
420
421 # Since Tool('mingw') will reset CCFLAGS etc, this should be
422 # done before getEnvVariable
423 if platform_name == 'win32':
424     if use_vc:
425         env.Tool('msvc')
426         env.Tool('mslink')
427     else:
428         env.Tool('mingw')
429         env.AppendUnique(CPPPATH = ['#c:/MinGW/include'])
430         # fix a scons winres bug (there is a missing space between ${RCINCPREFIX} and ${SOURCE.dir}
431         # in version 0.96.93
432         env['RCCOM'] = '$RC $_CPPDEFFLAGS $RCINCFLAGS ${RCINCPREFIX} ${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
433     
434
435 # we differentiate between hard-coded options and default options
436 # hard-coded options are required and will always be there
437 # default options can be replaced by enviromental variables or command line options
438 CCFLAGS_required = []
439 LINKFLAGS_required = []
440 CCFLAGS_default = []
441
442 # under windows, scons is confused by .C/.c and uses gcc instead of
443 # g++. I am forcing the use of g++ here. This is expected to change
444 # after lyx renames all .C files to .cpp
445 #
446 # save the old c compiler and CCFLAGS (used by libintl)
447 C_COMPILER = env.subst('$CC')
448 C_CCFLAGS = env.subst('$CCFLAGS').split()
449 # if we use ms vc, the commands are fine (cl.exe and link.exe)
450 if use_vc:
451     # /TP treat all source code as C++
452     # C4819: The file contains a character that cannot be represented
453     #   in the current code page (number)
454     # C4996: foo was decleared deprecated
455     CCFLAGS_required.extend(['/TP', '/EHsc'])
456     if mode == 'debug':
457         CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MDd'])
458         # the flags are also needed in C mode (for intl lib)
459         C_CCFLAGS.extend(['/wd4819', '/wd4996', '/nologo', '/MDd'])
460     else:
461         CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
462         C_CCFLAGS.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
463 else:
464     if env.has_key('CXX') and env['CXX']:
465         env['CC'] = env.subst('$CXX')
466         env['LINK'] = env.subst('$CXX')
467     else:
468         env['CC'] = 'g++'
469         env['LINK'] = 'g++'
470
471 # for debug/release mode
472 if env.has_key('optimization') and env['optimization'] is not None:
473     # if user supplies optimization flags, use it anyway
474     CCFLAGS_required.extend(env['optimization'].split())
475     # and do not use default
476     set_default_optimization_flags = False
477 else:
478     set_default_optimization_flags = True
479
480 if mode == 'debug':
481     if use_vc:
482         CCFLAGS_required.append('/Zi')
483         LINKFLAGS_required.extend(['/debug', '/map'])
484     else:
485         CCFLAGS_required.append('-g')
486         CCFLAGS_default.append('-O')
487 elif mode == 'release' and set_default_optimization_flags:
488     if use_vc:
489         CCFLAGS_default.append('/O2')
490     else:
491         CCFLAGS_default.append('-O2')
492
493 # msvc uses separate tools for profiling
494 if env.has_key('profiling') and env['profiling']:
495     if use_vc:
496         print 'Visual C++ does not use profiling options'
497     else:
498         CCFLAGS_required.append('-pg')
499         LINKFLAGS_required.append('-pg')
500
501 if env.has_key('warnings') and env['warnings']:
502     if use_vc:
503         CCFLAGS_default.append('/W2')
504     else:
505         # Note: autotools detect gxx version and pass -W for 3.x
506         # and -Wextra for other versions of gcc
507         CCFLAGS_default.append('-Wall')
508
509 # Now, set the variables as follows:
510 # 1. if command line option exists: replace default
511 # 2. then if s envronment variable exists: replace default
512 # 3. set variable to required + default
513 def setEnvVariable(env, name, required = None, default = None, split = True):
514     ''' env: environment to set variable
515             name: variable
516             required: hardcoded options
517             default: default options that can be replaced by command line or
518                 environment variables
519             split: whether or not split obtained variable like '-02 -g'
520     '''
521     # 1. ARGUMENTS is already set to env[name], override default.
522     if ARGUMENTS.has_key(name):
523         # env[name] may be rewritten when building tools are reloaded
524         # if that is the case, commandline option will override it.
525         env[name] = ARGUMENTS[name]
526         default = None
527     # then use environment default
528     elif os.environ.has_key(name):
529         print "Acquiring variable %s from system environment: %s" % (name, os.environ[name])
530         default = os.environ[name]
531         if split:
532             default = default.split()
533     # the real value should be env[name] + default + required
534     if split:
535         value = []
536         if env.has_key(name):
537             value = str(env[name]).split()
538         if required is not None:
539             value += required
540         if default is not None:
541             value += default
542     else:
543         value = ""
544         if env.has_key(name):
545             value = str(env[name])
546         if required is not None:
547             value += " " + required
548         if default is not None:
549             value += " " + default
550     env[name] = value
551     # print name, env[name]
552
553 setEnvVariable(env, 'DESTDIR', split=False)
554 setEnvVariable(env, 'CC')
555 setEnvVariable(env, 'LINK')
556 setEnvVariable(env, 'CPP')
557 setEnvVariable(env, 'CXX')
558 setEnvVariable(env, 'CXXCPP')
559 setEnvVariable(env, 'CCFLAGS', CCFLAGS_required, CCFLAGS_default)
560 setEnvVariable(env, 'CXXFLAGS')
561 setEnvVariable(env, 'CPPFLAGS')
562 setEnvVariable(env, 'LINKFLAGS', LINKFLAGS_required)
563
564 # if DESTDIR is not set...
565 if env.has_key('dest_dir'):
566     print "This option is obsolete. Please use DESTDIR instead."
567     env['DESTDIR'] = env['dest_dir']
568
569 #
570 # extra_inc_path and extra_lib_path
571 #
572 extra_inc_paths = []
573 if env.has_key('extra_inc_path') and env['extra_inc_path']:
574     extra_inc_paths.append(env['extra_inc_path'])
575 if env.has_key('extra_lib_path') and env['extra_lib_path']:
576     env.AppendUnique(LIBPATH = [env['extra_lib_path']])
577 if env.has_key('extra_inc_path1') and env['extra_inc_path1']:
578     extra_inc_paths.append(env['extra_inc_path1'])
579 if env.has_key('extra_lib_path1') and env['extra_lib_path1']:
580     env.AppendUnique(LIBPATH = [env['extra_lib_path1']])
581 if env.has_key('extra_bin_path') and env['extra_bin_path']:
582     # only the first one is needed (a scons bug?)
583     os.environ['PATH'] += os.pathsep + env['extra_bin_path']
584     env.PrependENVPath('PATH', env['extra_bin_path'])
585 # extra_inc_paths will be used later by intlenv etc
586 env.AppendUnique(CPPPATH = extra_inc_paths)
587
588
589 #----------------------------------------------------------
590 # Autoconf business
591 #----------------------------------------------------------
592
593 conf = Configure(env,
594     custom_tests = {
595         'CheckPkgConfig' : utils.checkPkgConfig,
596         'CheckPackage' : utils.checkPackage,
597         'CheckMkdirOneArg' : utils.checkMkdirOneArg,
598         'CheckSelectArgType' : utils.checkSelectArgType,
599         'CheckBoostLibraries' : utils.checkBoostLibraries,
600         'CheckCommand' : utils.checkCommand,
601         'CheckNSIS' : utils.checkNSIS,
602         'CheckCXXGlobalCstd' : utils.checkCXXGlobalCstd,
603         'CheckLC_MESSAGES' : utils.checkLC_MESSAGES,
604         'CheckIconvConst' : utils.checkIconvConst,
605         'CheckSizeOfWChar' : utils.checkSizeOfWChar,
606     }
607 )
608
609 # pkg-config? (if not, we use hard-coded options)
610 if conf.CheckPkgConfig('0.15.0'):
611     env['HAS_PKG_CONFIG'] = True
612 else:
613     print 'pkg-config >= 0.1.50 is not found'
614     env['HAS_PKG_CONFIG'] = False
615
616 # zlib? This is required.
617 if (not use_vc and not conf.CheckLibWithHeader('z', 'zlib.h', 'C')) \
618     or (use_vc and not conf.CheckLibWithHeader('zdll', 'zlib.h', 'C')):
619     print 'Did not find zdll.lib or zlib.h, exiting!'
620     Exit(1)
621 if conf.CheckLib('iconv'):
622     env['ICONV_LIB'] = 'iconv'
623 elif conf.CheckLib('libiconv'):
624     env['ICONV_LIB'] = 'libiconv'
625 elif conf.CheckFunc('iconv_open'):
626     env['ICONV_LIB'] = None
627 else:
628     print 'Did not find iconv or libiconv, exiting!'
629     Exit(1)
630
631 # check socket libs
632 socket_libs = []
633 if conf.CheckLib('socket'):
634     socket_libs.append('socket')
635 # nsl is the network services library and provides a
636 # transport-level interface to networking services.
637 if conf.CheckLib('nsl'):
638     socket_libs.append('nsl')
639
640 # check available boost libs (since lyx1.4 does not use iostream)
641 boost_libs = []
642 for lib in ['signals', 'regex', 'filesystem', 'iostreams']:
643     if os.path.isdir(os.path.join(top_src_dir, 'boost', 'libs', lib)):
644         boost_libs.append(lib)
645
646 # check boost libraries
647 boost_opt = ARGUMENTS.get('boost', 'auto')
648 # check for system boost
649 lib_paths = env['LIBPATH'] + ['/usr/lib', '/usr/local/lib']
650 inc_paths = env['CPPPATH'] + ['/usr/include', '/usr/local/include']
651 # default to $BUILDDIR/libs (use None since this path will be added anyway)
652 boost_libpath = None
653 # here I assume that all libraries are in the same directory
654 if boost_opt == 'included':
655     boost_libraries = ['included_boost_%s' % x for x in boost_libs]
656     included_boost = True
657     env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
658 elif boost_opt == 'auto':
659     res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
660     # if not found, use local boost
661     if res[0] is None:
662         boost_libraries = ['included_boost_%s' % x for x in boost_libs]
663         included_boost = True
664         env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
665     else:
666         included_boost = False
667         (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
668 elif boost_opt == 'system':
669     res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
670     if res[0] is None:
671         print "Can not find system boost libraries with version %s " % boost_version
672         print "Please supply a path through extra_lib_path and try again."
673         print "Or use boost=included to use included boost libraries."
674         Exit(2)
675     else:
676         included_boost = False
677         (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
678
679
680 if boost_libpath is not None:
681     env.AppendUnique(LIBPATH = [boost_libpath])
682
683
684 env['ENABLE_NLS'] = env['nls']
685
686 if not env['ENABLE_NLS']:
687     intl_libs = []
688     included_gettext = False
689 else:
690     # check gettext libraries
691     gettext_opt = ARGUMENTS.get('gettext', 'auto')
692     # check for system gettext
693     succ = False
694     if gettext_opt in ['auto', 'system']:
695         if conf.CheckFunc('gettext'):
696             included_gettext = False
697             intl_libs = []
698             succ = True
699         elif conf.CheckLib('intl'):
700             included_gettext = False
701             intl_libs = ['intl']
702             succ = True
703         else: # no found
704             if gettext_opt == 'system':
705                 print "Can not find system gettext library"
706                 print "Please supply a path through extra_lib_path and try again."
707                 print "Or use gettext=included to use included gettext libraries."
708                 Exit(2)
709     # now, auto and succ = false, or gettext=included
710     if not succ:
711         # we do not need to set LIBPATH now.
712         included_gettext = True
713         intl_libs = ['included_intl']
714
715
716 #
717 # check for msgfmt command
718 env['MSGFMT'] = conf.CheckCommand('msgfmt')
719
720 # if under windows, check the nsis compiler
721 if platform_name == 'win32':
722     env['NSIS'] = conf.CheckNSIS()
723
724 # cygwin packaging requires the binaries to be stripped
725 if platform_name == 'cygwin':
726     env['STRIP'] = conf.CheckCommand('strip')
727
728 #
729 # Customized builders
730 #
731 # install customized builders
732 env['BUILDERS']['substFile'] = Builder(action = utils.env_subst)
733 env['BUILDERS']['installTOC'] = Builder(action = utils.env_toc)
734
735
736 #----------------------------------------------------------
737 # Generating config.h
738 #----------------------------------------------------------
739 aspell_lib = 'aspell'
740 # assume that we use aspell, aspelld compiled for msvc
741 if platform_name == 'win32' and mode == 'debug' and use_vc:
742     aspell_lib = 'aspelld'
743
744 # check the existence of config.h
745 config_h = os.path.join(env.Dir('$BUILDDIR/common').path, 'config.h')
746 boost_config_h = os.path.join(env.Dir('$BUILDDIR/boost').path, 'config.h')
747 #
748 print "Creating %s..." % boost_config_h
749 #
750 utils.createConfigFile(conf,
751     config_file = boost_config_h,
752     config_pre = '''/* boost/config.h.  Generated by SCons.  */
753
754 /* -*- C++ -*- */
755 /*
756 * \file config.h
757 * This file is part of LyX, the document processor.
758 * Licence details can be found in the file COPYING.
759 *
760 * This is the compilation configuration file for LyX.
761 * It was generated by scon.
762 * You might want to change some of the defaults if something goes wrong
763 * during the compilation.
764 */
765
766 #ifndef _BOOST_CONFIG_H
767 #define _BOOST_CONFIG_H
768 ''',
769     headers = [
770         ('ostream', 'HAVE_OSTREAM', 'cxx'),
771         ('locale', 'HAVE_LOCALE', 'cxx'),
772         ('sstream', 'HAVE_SSTREAM', 'cxx'),
773         #('newapis.h', 'HAVE_NEWAPIS_H', 'c'),
774     ],
775     custom_tests = [
776         (env.has_key('assertions') and env['assertions'],
777             'ENABLE_ASSERTIONS',
778             'Define if you want assertions to be enabled in the code'
779         ),
780     ],
781     types = [
782         ('wchar_t', 'HAVE_WCHAR_T', None),
783     ],
784     config_post = '''
785
786 #if defined(HAVE_OSTREAM) && defined(HAVE_LOCALE) && defined(HAVE_SSTREAM)
787 #  define USE_BOOST_FORMAT 1
788 #else
789 #  define USE_BOOST_FORMAT 0
790 #endif
791
792 #if !defined(ENABLE_ASSERTIONS)
793 #  define BOOST_DISABLE_ASSERTS 1
794 #endif
795 #define BOOST_ENABLE_ASSERT_HANDLER 1
796
797 #define BOOST_DISABLE_THREADS 1
798 #define BOOST_NO_WSTRING 1
799
800 #ifdef __CYGWIN__
801 #  define BOOST_POSIX 1
802 #  define BOOST_POSIX_API 1
803 #  define BOOST_POSIX_PATH 1
804 #endif
805
806 #define BOOST_ALL_NO_LIB 1
807
808 #if defined(HAVE_NEWAPIS_H)
809 #  define WANT_GETFILEATTRIBUTESEX_WRAPPER 1
810 #endif
811
812 #if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4
813 #  define LIBC_WCTYPE_USES_UCS4
814 #endif
815
816 #endif
817 '''
818 )
819 #
820 print "\nGenerating %s..." % config_h
821
822 # AIKSAURUS_H_LOCATION
823 if (conf.CheckCXXHeader("Aiksaurus.h")):
824     aik_location = '<Aiksaurus.h>'
825 elif (conf.CheckCXXHeader("Aiksaurus/Aiksaurus.h")):
826     aik_location = '<Aiksaurus/Aiksaurus.h>'
827 else:
828     aik_location = ''
829
830 # determine headers to use
831 spell_opt = ARGUMENTS.get('spell', 'auto')
832 env['USE_ASPELL'] = False
833 env['USE_PSPELL'] = False
834 env['USE_ISPELL'] = False
835 if spell_opt in ['auto', 'aspell'] and conf.CheckLib(aspell_lib):
836     spell_engine = 'USE_ASPELL'
837 elif spell_opt in ['auto', 'pspell'] and conf.CheckLib('pspell'):
838     spell_engine = 'USE_PSPELL'
839 elif spell_opt in ['auto', 'ispell'] and conf.CheckLib('ispell'):
840     spell_engine = 'USE_ISPELL'
841 else:
842     spell_engine = None
843
844 if spell_engine is not None:
845     env[spell_engine] = True
846 else:
847     if spell_opt == 'auto':
848         print "Warning: Can not locate any spell checker"
849     elif spell_opt != 'no':
850         print "Warning: Can not locate specified spell checker:", spell_opt
851         Exit(1)
852
853 # check arg types of select function
854 (select_arg1, select_arg234, select_arg5) = conf.CheckSelectArgType()
855
856 # check the size of wchar_t
857 sizeof_wchar_t = conf.CheckSizeOfWChar()
858 # something wrong
859 if sizeof_wchar_t == 0:
860     print 'Error: Can not determine the size of wchar_t.'
861     Exit(1)
862
863 #
864 # create config.h
865 result = utils.createConfigFile(conf,
866     config_file = config_h,
867     config_pre = '''/* config.h.  Generated by SCons.  */
868
869 /* -*- C++ -*- */
870 /*
871 * \file config.h
872 * This file is part of LyX, the document processor.
873 * Licence details can be found in the file COPYING.
874 *
875 * This is the compilation configuration file for LyX.
876 * It was generated by scon.
877 * You might want to change some of the defaults if something goes wrong
878 * during the compilation.
879 */
880
881 #ifndef _CONFIG_H
882 #define _CONFIG_H
883 ''',
884     headers = [
885         ('io.h', 'HAVE_IO_H', 'c'),
886         ('limits.h', 'HAVE_LIMITS_H', 'c'),
887         ('locale.h', 'HAVE_LOCALE_H', 'c'),
888         ('process.h', 'HAVE_PROCESS_H', 'c'),
889         ('stdlib.h', 'HAVE_STDLIB_H', 'c'),
890         ('sys/stat.h', 'HAVE_SYS_STAT_H', 'c'),
891         ('sys/time.h', 'HAVE_SYS_TIME_H', 'c'),
892         ('sys/types.h', 'HAVE_SYS_TYPES_H', 'c'),
893         ('sys/utime.h', 'HAVE_SYS_UTIME_H', 'c'),
894         ('sys/socket.h', 'HAVE_SYS_SOCKET_H', 'c'),
895         ('unistd.h', 'HAVE_UNISTD_H', 'c'),
896         ('utime.h', 'HAVE_UTIME_H', 'c'),
897         ('direct.h', 'HAVE_DIRECT_H', 'c'),
898         ('istream', 'HAVE_ISTREAM', 'cxx'),
899         ('ios', 'HAVE_IOS', 'cxx'),
900     ],
901     functions = [
902         ('open', 'HAVE_OPEN', None),
903         ('chmod', 'HAVE_CHMOD', None),
904         ('close', 'HAVE_CLOSE', None),
905         ('popen', 'HAVE_POPEN', None),
906         ('pclose', 'HAVE_PCLOSE', None),
907         ('_open', 'HAVE__OPEN', None),
908         ('_close', 'HAVE__CLOSE', None),
909         ('_popen', 'HAVE__POPEN', None),
910         ('_pclose', 'HAVE__PCLOSE', None),
911         ('getpid', 'HAVE_GETPID', None),
912         ('_getpid', 'HAVE__GETPID', None),
913         ('mkdir', 'HAVE_MKDIR', None),
914         ('_mkdir', 'HAVE__MKDIR', None),
915         ('mktemp', 'HAVE_MKTEMP', None),
916         ('mkstemp', 'HAVE_MKSTEMP', None),
917         ('strerror', 'HAVE_STRERROR', None),
918         ('count', 'HAVE_STD_COUNT', '''
919 #include <algorithm>
920 int count()
921 {
922 char a[] = "hello";
923 return std::count(a, a+5, 'l');
924 }
925 '''),
926         ('getcwd', 'HAVE_GETCWD', None),
927         ('setenv', 'HAVE_SETENV', None),
928         ('putenv', 'HAVE_PUTENV', None),
929         ('fcntl', 'HAVE_FCNTL', None),
930     ],
931     types = [
932         ('std::istreambuf_iterator<std::istream>', 'HAVE_DECL_ISTREAMBUF_ITERATOR',
933             '#include <streambuf>\n#include <istream>'),
934         ('wchar_t', 'HAVE_WCHAR_T', None),
935         ('mode_t', 'HAVE_MODE_T', "#include <sys/types.h>"),
936     ],
937     libs = [
938         ('gdi32', 'HAVE_LIBGDI32'),
939         (('Aiksaurus', 'libAiksaurus'), 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB'),
940     ],
941     custom_tests = [
942         (conf.CheckType('pid_t', includes='#include <sys/types.h>'),
943             'HAVE_PID_T',
944             'Define is sys/types.h does not have pid_t',
945             '',
946             '#define pid_t int',
947         ),
948         (conf.CheckCXXGlobalCstd(),
949             'CXX_GLOBAL_CSTD',
950             'Define if your C++ compiler puts C library functions in the global namespace'
951         ),
952         (conf.CheckMkdirOneArg(),
953             'MKDIR_TAKES_ONE_ARG',
954             'Define if mkdir takes only one argument.'
955         ),
956         (conf.CheckIconvConst(),
957             'ICONV_CONST',
958             'Define as const if the declaration of iconv() needs const.',
959             '#define ICONV_CONST const',
960             '#define ICONV_CONST',
961         ),
962         (conf.CheckLC_MESSAGES(),
963             'HAVE_LC_MESSAGES',
964             'Define if your <locale.h> file defines LC_MESSAGES.'
965         ),
966         (devel_version, 'DEVEL_VERSION', 'Whether or not a development version'),
967         (env['nls'],
968             'ENABLE_NLS',
969             "Define to 1 if translation of program messages to the user's native anguage is requested.",
970         ),
971         (env['nls'] and not included_gettext,
972             'HAVE_GETTEXT',
973             'Define to 1 if using system gettext library'
974         ),
975         (env.has_key('warnings') and env['warnings'],
976             'WITH_WARNINGS',
977             'Define this if you want to see the warning directives put here and there by the developpers to get attention'
978         ),
979         (env.has_key('concept_checks') and env['concept_checks'],
980             '_GLIBCXX_CONCEPT_CHECKS',
981             'libstdc++ concept checking'
982         ),
983         (env.has_key('stdlib_debug') and env['stdlib_debug'],
984             '_GLIBCXX_DEBUG',
985             'libstdc++ debug mode'
986         ),
987         (env.has_key('stdlib_debug') and env['stdlib_debug'],
988             '_GLIBCXX_DEBUG_PEDANTIC',
989             'libstdc++ pedantic debug mode'
990         ),
991         (os.name != 'nt', 'BOOST_POSIX',
992             'Indicates to boost < 1.34 which API to use (posix or windows).'
993         ),
994         (os.name != 'nt', 'BOOST_POSIX_API',
995             'Indicates to boost 1.34 which API to use (posix or windows).'
996         ),
997         (os.name != 'nt', 'BOOST_POSIX_PATH',
998             'Indicates to boost 1.34 which path style to use (posix or windows).'
999         ),
1000         (spell_engine is not None, spell_engine,
1001             'Spell engine to use'
1002         ),
1003         # we need to know the byte order for unicode conversions
1004         (sys.byteorder == 'big', 'WORDS_BIGENDIAN',
1005             'Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX).'
1006         ),
1007     ],
1008     extra_items = [
1009         ('#define PACKAGE "%s%s"' % (package, program_suffix),
1010             'Name of package'),
1011         ('#define PACKAGE_BUGREPORT "%s"' % package_bugreport,
1012             'Define to the address where bug reports for this package should be sent.'),
1013         ('#define PACKAGE_NAME "%s"' % package_name,
1014             'Define to the full name of this package.'),
1015         ('#define PACKAGE_STRING "%s"' % package_string,
1016             'Define to the full name and version of this package.'),
1017         ('#define PACKAGE_TARNAME "%s"' % package_tarname,
1018             'Define to the one symbol short name of this package.'),
1019         ('#define PACKAGE_VERSION "%s"' % package_version,
1020             'Define to the version of this package.'),
1021         ('#define BOOST_ALL_NO_LIB 1',
1022             'disable automatic linking of boost libraries.'),
1023         ('#define USE_%s_PACKAGING 1' % packaging_method.upper(),
1024             'Packaging method'),
1025         ('#define AIKSAURUS_H_LOCATION ' + aik_location,
1026             'Aiksaurus include file'),
1027         ('#define SELECT_TYPE_ARG1 %s' % select_arg1,
1028             "Define to the type of arg 1 for `select'."),
1029         ('#define SELECT_TYPE_ARG234 %s' % select_arg234,
1030             "Define to the type of arg 2, 3, 4 for `select'."),
1031         ('#define SELECT_TYPE_ARG5 %s' % select_arg5,
1032             "Define to the type of arg 5 for `select'."),
1033         ('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
1034             'Define to be the size of type wchar_t'),
1035     ],
1036     config_post = '''/************************************************************
1037 ** You should not need to change anything beyond this point */
1038
1039 #ifndef HAVE_STRERROR
1040 #if defined(__cplusplus)
1041 extern "C"
1042 #endif
1043 char * strerror(int n);
1044 #endif
1045
1046 #ifdef HAVE_MKSTEMP
1047 #ifndef HAVE_DECL_MKSTEMP
1048 #if defined(__cplusplus)
1049 extern "C"
1050 #endif
1051 int mkstemp(char*);
1052 #endif
1053 #endif
1054
1055 #include <../boost/config.h>
1056
1057 #endif
1058 '''
1059 )
1060
1061 # these keys are needed in env
1062 for key in ['USE_ASPELL', 'USE_PSPELL', 'USE_ISPELL', 'HAVE_FCNTL',\
1063     'HAVE_LIBGDI32', 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB']:
1064     # USE_ASPELL etc does not go through result
1065     if result.has_key(key):
1066         env[key] = result[key]
1067
1068 #
1069 # if nls=yes and gettext=included, create intl/config.h
1070 # intl/libintl.h etc
1071 #
1072 intl_config_h = os.path.join(env.Dir('$BUILDDIR/intl').path, 'config.h')
1073 if env['nls'] and included_gettext:
1074     #
1075     print "Creating %s..." % intl_config_h
1076     #
1077     # create intl/config.h
1078     result = utils.createConfigFile(conf,
1079         config_file = intl_config_h,
1080         config_pre = '''/* intl/config.h.  Generated by SCons.  */
1081
1082 /* -*- C++ -*- */
1083 /*
1084 * \file config.h
1085 * This file is part of LyX, the document processor.
1086 * Licence details can be found in the file COPYING.
1087 *
1088 * This is the compilation configuration file for LyX.
1089 * It was generated by scon.
1090 * You might want to change some of the defaults if something goes wrong
1091 * during the compilation.
1092 */
1093
1094 #ifndef _CONFIG_H
1095 #define _CONFIG_H
1096 ''',
1097         headers = [
1098             ('unistd.h', 'HAVE_UNISTD_H', 'c'),
1099             ('inttypes.h', 'HAVE_INTTYPES_H', 'c'),
1100             ('string.h', 'HAVE_STRING_H', 'c'),
1101             ('strings.h', 'HAVE_STRINGS_H', 'c'),
1102             ('argz.h', 'HAVE_ARGZ_H', 'c'),
1103             ('limits.h', 'HAVE_LIMITS_H', 'c'),
1104             ('alloca.h', 'HAVE_ALLOCA_H', 'c'),
1105             ('stddef.h', 'HAVE_STDDEF_H', 'c'),
1106             ('stdint.h', 'HAVE_STDINT_H', 'c'),
1107             ('sys/param.h', 'HAVE_SYS_PARAM_H', 'c'),
1108         ],
1109         functions = [
1110             ('getcwd', 'HAVE_GETCWD', None),
1111             ('stpcpy', 'HAVE_STPCPY', None),
1112             ('strcasecmp', 'HAVE_STRCASECMP', None),
1113             ('strdup', 'HAVE_STRDUP', None),
1114             ('strtoul', 'HAVE_STRTOUL', None),
1115             ('alloca', 'HAVE_ALLOCA', None),
1116             ('__fsetlocking', 'HAVE___FSETLOCKING', None),
1117             ('mempcpy', 'HAVE_MEMPCPY', None),
1118             ('__argz_count', 'HAVE___ARGZ_COUNT', None),
1119             ('__argz_next', 'HAVE___ARGZ_NEXT', None),
1120             ('__argz_stringify', 'HAVE___ARGZ_STRINGIFY', None),
1121             ('setlocale', 'HAVE_SETLOCALE', None),
1122             ('tsearch', 'HAVE_TSEARCH', None),
1123             ('getegid', 'HAVE_GETEGID', None),
1124             ('getgid', 'HAVE_GETGID', None),
1125             ('getuid', 'HAVE_GETUID', None),
1126             ('wcslen', 'HAVE_WCSLEN', None),
1127             ('asprintf', 'HAVE_ASPRINTF', None),
1128             ('wprintf', 'HAVE_WPRINTF', None),
1129             ('snprintf', 'HAVE_SNPRINTF', None),
1130             ('printf', 'HAVE_POSIX_PRINTF', None),
1131             ('fcntl', 'HAVE_FCNTL', None),
1132         ],
1133         types = [
1134             ('intmax_t', 'HAVE_INTMAX_T', None),
1135             ('long double', 'HAVE_LONG_DOUBLE', None),
1136             ('long long', 'HAVE_LONG_LONG', None),
1137             ('wchar_t', 'HAVE_WCHAR_T', None),
1138             ('wint_t', 'HAVE_WINT_T', None),
1139             ('uintmax_t', 'HAVE_INTTYPES_H_WITH_UINTMAX', '#include <inttypes.h>'),
1140             ('uintmax_t', 'HAVE_STDINT_H_WITH_UINTMAX', '#include <stdint.h>'),
1141         ],
1142         libs = [
1143             ('c', 'HAVE_LIBC'),
1144         ],
1145         custom_tests = [
1146             (conf.CheckLC_MESSAGES(),
1147                 'HAVE_LC_MESSAGES',
1148                 'Define if your <locale.h> file defines LC_MESSAGES.'
1149             ),
1150             (conf.CheckIconvConst(),
1151                 'ICONV_CONST',
1152                 'Define as const if the declaration of iconv() needs const.',
1153                 '#define ICONV_CONST const',
1154                 '#define ICONV_CONST',
1155             ),
1156             (conf.CheckType('intmax_t', includes='#include <stdint.h>') or \
1157             conf.CheckType('intmax_t', includes='#include <inttypes.h>'),
1158                 'HAVE_INTMAX_T',
1159                 "Define to 1 if you have the `intmax_t' type."
1160             ),
1161             (env.has_key('nls') and env['nls'],
1162                 'ENABLE_NLS',
1163                 "Define to 1 if translation of program messages to the user's native anguage is requested.",
1164             ),
1165         ],
1166         extra_items = [
1167             ('#define HAVE_ICONV 1', 'Define if iconv or libiconv is found'),
1168             ('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
1169                 'Define to be the size of type wchar_t'),
1170         ],
1171         config_post = '#endif'
1172     )
1173
1174     # these keys are needed in env
1175     for key in ['HAVE_ASPRINTF', 'HAVE_WPRINTF', 'HAVE_SNPRINTF', \
1176         'HAVE_POSIX_PRINTF', 'HAVE_LIBC']:
1177         # USE_ASPELL etc does not go through result
1178         if result.has_key(key):
1179             env[key] = result[key]
1180
1181
1182 # this looks misplaced, but intl/libintl.h is needed by src/message.C
1183 if env['nls'] and included_gettext:
1184     # libgnuintl.h.in => libintl.h
1185     env.Depends('$TOP_SRCDIR/intl/libintl.h', '$BUILDDIR/intl/config.h')
1186     env.substFile('$BUILDDIR/intl/libintl.h', '$TOP_SRCDIR/intl/libgnuintl.h.in')
1187     env.Command('$BUILDDIR/intl/libgnuintl.h', '$BUILDDIR/intl/libintl.h',
1188         [Copy('$TARGET', '$SOURCE')])
1189
1190 #
1191 # Finish auto-configuration
1192 env = conf.Finish()
1193
1194 #----------------------------------------------------------
1195 # Now set up our build process accordingly
1196 #----------------------------------------------------------
1197
1198 if env['ICONV_LIB'] is None:
1199     system_libs = []
1200 else:
1201     system_libs = [env['ICONV_LIB']]
1202 if platform_name in ['win32', 'cygwin']:
1203     # the final link step needs stdc++ to succeed under mingw
1204     # FIXME: shouldn't g++ automatically link to stdc++?
1205     if use_vc:
1206         system_libs += ['ole32', 'shlwapi', 'shell32', 'advapi32', 'zdll']
1207     else:
1208         system_libs += ['shlwapi', 'stdc++', 'z']
1209 elif platform_name == 'cygwin' and env['X11']:
1210     system_libs += ['GL',  'Xmu', 'Xi', 'Xrender', 'Xrandr',
1211         'Xcursor', 'Xft', 'freetype', 'fontconfig', 'Xext', 'X11', 'SM', 'ICE', 
1212         'resolv', 'pthread', 'z']
1213 else:
1214     system_libs += ['z']
1215
1216 libs = [
1217     ('HAVE_LIBGDI32', 'gdi32'),
1218     ('HAVE_LIBAIKSAURUS', env['AIKSAURUS_LIB']),
1219     ('USE_ASPELL', aspell_lib),
1220     ('USE_ISPELL', 'ispell'),
1221     ('USE_PSPELL', 'pspell'),
1222 ]
1223
1224 for lib in libs:
1225     if env[lib[0]]:
1226         system_libs.append(lib[1])
1227
1228 #
1229 # Build parameters CPPPATH etc
1230 #
1231 if env['X11']:
1232     env.AppendUnique(LIBPATH = ['/usr/X11R6/lib'])
1233
1234 #
1235 # boost: for boost header files
1236 # BUILDDIR/common: for config.h
1237 # TOP_SRCDIR/src: for support/* etc
1238 #
1239 env['CPPPATH'] += ['$BUILDDIR/common', '$TOP_SRCDIR/src']
1240 #
1241 # Separating boost directories from CPPPATH stops scons from building
1242 # the dependency tree for boost header files, and effectively reduce
1243 # the null build time of lyx from 29s to 16s. Since lyx may tweak local
1244 # boost headers, this is only done for system boost headers.
1245 if included_boost:
1246     env.AppendUnique(CPPPATH = ['$BOOST_INC_PATH'])
1247 else:
1248     if use_vc:
1249         env.PrependUnique(CCFLAGS = ['/I$BOOST_INC_PATH'])
1250     else:
1251         env.PrependUnique(CCFLAGS = ['-I$BOOST_INC_PATH'])
1252
1253 # for intl/config.h, intl/libintl.h and intl/libgnuintl.h
1254 if env['nls'] and included_gettext:
1255     env['CPPPATH'].append('$BUILDDIR/intl')
1256 #
1257
1258 #
1259 # A Link script for cygwin see
1260 # http://www.cygwin.com/ml/cygwin/2004-09/msg01101.html
1261 # http://www.cygwin.com/ml/cygwin-apps/2004-09/msg00309.html
1262 # for details
1263 #
1264 if platform_name == 'cygwin':
1265     ld_script_path = '/tmp'
1266     ld_script = utils.installCygwinLDScript(ld_script_path)
1267     env.AppendUnique(LINKFLAGS = ['-Wl,--enable-runtime-pseudo-reloc',
1268         '-Wl,--script,%s' % ld_script, '-Wl,-s'])
1269
1270
1271 #---------------------------------------------------------
1272 # Frontend related variables (QTDIR etc)
1273 #---------------------------------------------------------
1274
1275 #
1276 # create a separate environment so that other files do not have
1277 # to be built with all the include directories etc
1278 #
1279 if frontend == 'qt4':
1280     frontend_env = env.Copy()
1281
1282     # handle qt related user specified paths
1283     # set environment so that moc etc can be found even if its path is not set properly
1284     if frontend_env.has_key('qt_dir') and frontend_env['qt_dir']:
1285         frontend_env['QTDIR'] = frontend_env['qt_dir']
1286         if os.path.isdir(os.path.join(frontend_env['qt_dir'], 'bin')):
1287             os.environ['PATH'] += os.pathsep + os.path.join(frontend_env['qt_dir'], 'bin')
1288             frontend_env.PrependENVPath('PATH', os.path.join(frontend_env['qt_dir'], 'bin'))
1289         if os.path.isdir(os.path.join(frontend_env['qt_dir'], 'lib')):
1290             frontend_env.PrependENVPath('PKG_CONFIG_PATH', os.path.join(frontend_env['qt_dir'], 'lib'))
1291
1292     # if separate qt_lib_path is given
1293     if frontend_env.has_key('qt_lib_path') and frontend_env['qt_lib_path']:
1294         qt_lib_path = frontend_env.subst('$qt_lib_path')
1295         frontend_env.AppendUnique(LIBPATH = [qt_lib_path])
1296         frontend_env.PrependENVPath('PKG_CONFIG_PATH', qt_lib_path)
1297     else:
1298         qt_lib_path = None
1299
1300     # if separate qt_inc_path is given
1301     if frontend_env.has_key('qt_inc_path') and frontend_env['qt_inc_path']:
1302         qt_inc_path = frontend_env['qt_inc_path']
1303     else:
1304         qt_inc_path = None
1305
1306     # local qt4 toolset from
1307     # http://www.iua.upf.es/~dgarcia/Codders/sconstools.html
1308     #
1309     # NOTE: I have to patch qt4.py since it does not automatically
1310     # process .C file!!! (add to cxx_suffixes )
1311     #
1312     frontend_env.Tool('qt4', [scons_dir])
1313     frontend_env['QT_AUTOSCAN'] = 0
1314     frontend_env['QT4_AUTOSCAN'] = 0
1315     frontend_env['QT4_UICDECLFLAGS'] = '-tr lyx::qt_'
1316
1317     if qt_lib_path is None:
1318         qt_lib_path = os.path.join(frontend_env.subst('$QTDIR'), 'lib')
1319     if qt_inc_path is None:
1320         qt_inc_path = os.path.join(frontend_env.subst('$QTDIR'), 'include')
1321
1322
1323     conf = Configure(frontend_env,
1324         custom_tests = { 
1325             'CheckPackage' : utils.checkPackage,
1326             'CheckCommand' : utils.checkCommand,
1327         }
1328     )
1329
1330     succ = False
1331     # first: try pkg_config
1332     if frontend_env['HAS_PKG_CONFIG']:
1333         succ = conf.CheckPackage('QtCore') or conf.CheckPackage('QtCore4')
1334         # FIXME: use pkg_config information?
1335         #frontend_env['QT4_PKG_CONFIG'] = succ
1336     # second: try to link to it
1337     if not succ:
1338         # Under linux, I can test the following perfectly
1339         # Under windows, lib names need to passed as libXXX4.a ...
1340         if platform_name == 'win32':
1341             succ = conf.CheckLibWithHeader('QtCore4', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
1342         else:
1343             succ = conf.CheckLibWithHeader('QtCore', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
1344     # still can not find it
1345     if not succ:
1346         print 'Did not find qt libraries, exiting!'
1347         Exit(1)
1348     #
1349     # Now, determine the correct suffix:
1350     qt_libs = ['QtCore', 'QtGui']
1351     if platform_name == 'win32':
1352         if mode == 'debug' and use_vc and \
1353             conf.CheckLibWithHeader('QtCored4', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
1354             qt_lib_suffix = 'd4'
1355             use_qt_debug_libs = True
1356         else:
1357             qt_lib_suffix = '4'
1358             use_qt_debug_libs = False
1359     else:
1360         if mode == 'debug' and conf.CheckLibWithHeader('QtCore_debug', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
1361             qt_lib_suffix = '_debug'
1362             use_qt_debug_libs = True
1363         else:
1364             qt_lib_suffix = ''
1365             use_qt_debug_libs = False
1366     frontend_env.EnableQt4Modules(qt_libs, debug = (mode == 'debug' and use_qt_debug_libs))
1367     frontend_libs = [x + qt_lib_suffix for x in qt_libs]
1368     qtcore_lib = ['QtCore' + qt_lib_suffix]
1369
1370     # check uic and moc commands for qt frontends
1371     if conf.CheckCommand('uic') == None or conf.CheckCommand('moc') == None:
1372         print 'uic or moc command is not found for frontend', frontend
1373         Exit(1)
1374     
1375     # now, if msvc2005 is used, we will need that QT_LIB_PATH/QT_LIB.manifest file
1376     if use_vc:
1377         if mode == 'debug':
1378             if qt_lib_path is not None:
1379                 manifest = os.path.join(qt_lib_path, 'QtGuid4.dll.manifest')
1380             else:
1381                 manifest = 'QtGuid4.dll.manifest'
1382         else:
1383             if qt_lib_path is not None:
1384                 manifest = os.path.join(qt_lib_path, 'QtGui4.dll.manifest')
1385             else:
1386                 manifest = 'QtGui4.dll.manifest'
1387         if os.path.isfile(manifest):
1388             frontend_env['LINKCOM'] = [frontend_env['LINKCOM'], 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % manifest]
1389
1390     frontend_env = conf.Finish()
1391
1392 #
1393 # Report results
1394 #
1395 # fill in the version info
1396 env['VERSION_INFO'] = '''Configuration
1397   Host type:                      %s
1398   Special build flags:            %s
1399   C   Compiler:                   %s
1400   C   Compiler flags:             %s %s
1401   C++ Compiler:                   %s
1402   C++ Compiler LyX flags:         %s
1403   C++ Compiler flags:             %s %s
1404   Linker flags:                   %s
1405   Linker user flags:              %s
1406 Build info:
1407   Builing directory:              %s
1408   Local library directory:        %s
1409   Libraries paths:                %s
1410   Boost libraries:                %s
1411   Frontend libraries:             %s
1412   System libraries:               %s
1413   include search path:            %s
1414 Frontend:
1415   Frontend:                       %s
1416   Packaging:                      %s
1417   LyX dir:                        %s
1418   LyX files dir:                  %s
1419 ''' % (platform_name,
1420     env.subst('$CCFLAGS'), env.subst('$CC'),
1421     env.subst('$CPPFLAGS'), env.subst('$CFLAGS'),
1422     env.subst('$CXX'), env.subst('$CXXFLAGS'),
1423     env.subst('$CPPFLAGS'), env.subst('$CXXFLAGS'),
1424     env.subst('$LINKFLAGS'), env.subst('$LINKFLAGS'),
1425     env.subst('$BUILDDIR'), env.subst('$LOCALLIBPATH'),
1426     str(env['LIBPATH']), str(boost_libraries),
1427     str(frontend_libs), str(system_libs), str(env['CPPPATH']),
1428     frontend, packaging_method,
1429     prefix, env['LYX_DIR'])
1430
1431 if frontend in ['qt4']:
1432     env['VERSION_INFO'] += '''  include dir:                    %s
1433   library dir:                    %s
1434   X11:                            %s
1435 ''' % (qt_inc_path, qt_lib_path, env['X11'])
1436
1437 print env['VERSION_INFO']
1438
1439 #
1440 # Mingw command line may be too short for our link usage,
1441 # Here we use a trick from scons wiki
1442 # http://www.scons.org/cgi-sys/cgiwrap/scons/moin.cgi/LongCmdLinesOnWin32
1443 #
1444 # I also would like to add logging (commands only) capacity to the
1445 # spawn system.
1446 logfile = env.get('logfile', default_log_file)
1447 if logfile != '' or platform_name == 'win32':
1448     import time
1449     utils.setLoggedSpawn(env, logfile, longarg = (platform_name == 'win32'),
1450         info = '''# This is a log of commands used by scons to build lyx
1451 # Time: %s
1452 # Command: %s
1453 # Info: %s
1454 ''' % (time.asctime(), ' '.join(sys.argv),
1455     env['VERSION_INFO'].replace('\n','\n# ')) )
1456
1457
1458 # Cleanup stuff
1459 #
1460 # -h will print out help info
1461 Help(opts.GenerateHelpText(env))
1462
1463
1464
1465 #----------------------------------------------------------
1466 # Start building
1467 #----------------------------------------------------------
1468 # this has been the source of problems on some platforms...
1469 # I find that I need to supply it with full path name
1470 env.SConsignFile(os.path.join(Dir(env['BUILDDIR']).abspath, '.sconsign'))
1471 # this usage needs further investigation.
1472 #env.CacheDir('%s/Cache/%s' % (env['BUILDDIR'], frontend))
1473
1474 print "Building all targets recursively"
1475
1476 if env.has_key('rebuild'):
1477     rebuild_targets = env['rebuild'].split(',')
1478     if 'none' in rebuild_targets or 'no' in rebuild_targets:
1479         rebuild_targets = []
1480     elif 'all' in rebuild_targets or 'yes' in rebuild_targets:
1481         # None: let scons decide which components to build
1482         # Forcing all components to be rebuilt is in theory not necessary
1483         rebuild_targets = None    
1484 else:
1485     rebuild_targets = None
1486
1487 def libExists(libname):
1488     ''' Check whether or not lib $LOCALLIBNAME/libname already exists'''
1489     return os.path.isfile(File(env.subst('$LOCALLIBPATH/${LIBPREFIX}%s$LIBSUFFIX'%libname)).abspath)
1490
1491 def appExists(apppath, appname):
1492     ''' Check whether or not application already exists'''
1493     return os.path.isfile(File(env.subst('$BUILDDIR/common/%s/${PROGPREFIX}%s$PROGSUFFIX' % (apppath, appname))).abspath)
1494
1495 targets = BUILD_TARGETS
1496 build_install = 'install' in targets or 'installer' in targets
1497 build_installer = 'installer' in targets
1498 # msvc need to pass full target name, so I have to look for path/lyx etc
1499 build_lyx = build_installer or targets == [] or True in ['lyx' in x for x in targets] \
1500     or build_install or 'all' in targets
1501 build_boost = (included_boost and not libExists('boost_regex')) or 'boost' in targets
1502 build_intl = (included_gettext and not libExists('included_intl')) or 'intl' in targets
1503 build_support = build_lyx or True in [x in targets for x in ['support', 'client', 'tex2lyx']]
1504 build_mathed = build_lyx or 'mathed' in targets
1505 build_insets = build_lyx or 'insets' in targets
1506 build_frontends = build_lyx or 'frontends' in targets
1507 build_graphics = build_lyx or 'graphics' in targets
1508 build_controllers = build_lyx or 'controllers' in targets
1509 build_client = True in ['client' in x for x in targets] \
1510     or build_install or 'all' in targets or build_installer
1511 build_tex2lyx = True in ['tex2lyx' in x for x in targets] \
1512     or build_install or 'all' in targets or build_installer
1513 build_lyxbase = build_lyx or 'lyxbase' in targets
1514 build_po = 'po' in targets or build_install or 'all' in targets
1515 build_qt4 = (build_lyx and frontend == 'qt4') or 'qt4' in targets
1516 build_msvs_projects = use_vc and 'msvs_projects' in targets
1517
1518
1519 # now, if rebuild_targets is specified, do not rebuild some targets
1520 if rebuild_targets is not None:
1521     #
1522     def ifBuildLib(name, libname, old_value):
1523         # explicitly asked to rebuild
1524         if name in rebuild_targets:
1525             return True
1526         # else if not rebuild, and if the library already exists
1527         elif libExists(libname):
1528             return False
1529         # do not change the original value
1530         else:
1531             return old_value
1532     build_boost = ifBuildLib('boost', 'included_boost_filesystem', build_boost)
1533     build_intl = ifBuildLib('intl', 'included_intl', build_intl)
1534     build_support = ifBuildLib('support', 'support', build_support)
1535     build_mathed = ifBuildLib('mathed', 'mathed', build_mathed)
1536     build_insets = ifBuildLib('insets', 'insets', build_insets)
1537     build_frontends = ifBuildLib('frontends', 'frontends', build_frontends)
1538     build_graphics = ifBuildLib('graphics', 'graphics', build_graphics)
1539     build_controllers = ifBuildLib('controllers', 'controllers', build_controllers)
1540     build_lyxbase = ifBuildLib('lyxbase', 'lyxbase_pre', build_lyxbase)
1541     build_qt4 = ifBuildLib('qt4', 'qt4', build_qt4)
1542     #
1543     def ifBuildApp(name, appname, old_value):
1544         # explicitly asked to rebuild
1545         if name in rebuild_targets:
1546             return True
1547         # else if not rebuild, and if the library already exists
1548         elif appExists(name, appname):
1549             return False
1550         # do not change the original value
1551         else:
1552             return old_value
1553     build_tex2lyx = ifBuildApp('tex2lyx', 'tex2lyx', build_tex2lyx)
1554     build_client = ifBuildApp('client', 'lyxclient', build_client)
1555
1556 # sync frontend and frontend (?)
1557 if build_qt4:
1558     frontend = 'qt4'
1559
1560
1561 if build_boost:
1562     #
1563     # boost libraries
1564     #
1565     # special builddir
1566     env.BuildDir('$BUILDDIR/boost', '$TOP_SRCDIR/boost/libs', duplicate = 0)
1567
1568     boostenv = env.Copy()
1569     #
1570     # boost use its own config.h
1571     boostenv['CPPPATH'] = ['$TOP_SRCDIR/boost', '$BUILDDIR/boost'] + extra_inc_paths
1572     boostenv.AppendUnique(CCFLAGS = ['-DBOOST_USER_CONFIG="<config.h>"'])
1573
1574     for lib in boost_libs:
1575         print 'Processing files in boost/libs/%s/src...' % lib
1576         boostlib = boostenv.StaticLibrary(
1577             target = '$LOCALLIBPATH/included_boost_%s' % lib,
1578             source = ['$BUILDDIR/boost/%s/src/%s' % (lib, x) for x in eval('boost_libs_%s_src_files' % lib)]
1579         )
1580         Alias('boost', boostlib)
1581
1582
1583 if build_intl:
1584     #
1585     # intl
1586     #
1587     intlenv = env.Copy()
1588
1589     print "Processing files in intl..."
1590
1591     env.BuildDir('$BUILDDIR/intl', '$TOP_SRCDIR/intl', duplicate = 0)
1592
1593     # we need the original C compiler for these files
1594     intlenv['CC'] = C_COMPILER
1595     intlenv['CCFLAGS'] = C_CCFLAGS
1596     if use_vc:
1597         intlenv.Append(CCFLAGS=['/Dinline#', '/D__attribute__(x)#', '/Duintmax_t=UINT_MAX'])
1598     # intl does not use global config.h
1599     intlenv['CPPPATH'] = ['$BUILDDIR/intl'] + extra_inc_paths
1600
1601     intlenv.Append(CCFLAGS = [
1602         r'-DLOCALEDIR=\"' + env['LOCALEDIR'].replace('\\', '\\\\') + r'\"',
1603         r'-DLOCALE_ALIAS_PATH=\"' + env['LOCALEDIR'].replace('\\', '\\\\') + r'\"',
1604         r'-DLIBDIR=\"' + env['TOP_SRCDIR'].replace('\\', '\\\\') + r'/lib\"',
1605         '-DIN_LIBINTL',
1606         '-DENABLE_RELOCATABLE=1',
1607         '-DIN_LIBRARY',
1608         r'-DINSTALLDIR=\"' + prefix.replace('\\', '\\\\') + r'/lib\"',
1609         '-DNO_XMALLOC',
1610         '-Dset_relocation_prefix=libintl_set_relocation_prefix',
1611         '-Drelocate=libintl_relocate',
1612         '-DDEPENDS_ON_LIBICONV=1',
1613         '-DHAVE_CONFIG_H'
1614         ]
1615     )
1616
1617     intl = intlenv.StaticLibrary(
1618         target = '$LOCALLIBPATH/included_intl',
1619         LIBS = ['c'],
1620         source = ['$BUILDDIR/intl/%s' % x for x in intl_files]
1621     )
1622     Alias('intl', intl)
1623
1624
1625 #
1626 # Now, src code under src/
1627 #
1628 env.BuildDir('$BUILDDIR/common', '$TOP_SRCDIR/src', duplicate = 0)
1629
1630
1631 if build_support:
1632     #
1633     # src/support
1634     #
1635     print "Processing files in src/support..."
1636
1637     frontend_env.Depends('$BUILDDIR/common/support/package.C', '$BUILDDIR/common/config.h')
1638     env.substFile('$BUILDDIR/common/support/package.C', '$TOP_SRCDIR/src/support/package.C.in')
1639
1640     support = frontend_env.StaticLibrary(
1641         target = '$LOCALLIBPATH/support',
1642         source = ['$BUILDDIR/common/support/%s' % x for x in src_support_files],
1643     )
1644     Alias('support', support)
1645
1646
1647 if build_mathed:
1648     #
1649     # src/mathed
1650     #
1651     print "Processing files in src/mathed..."
1652     #
1653     mathed = env.StaticLibrary(
1654         target = '$LOCALLIBPATH/mathed',
1655         source = ['$BUILDDIR/common/mathed/%s' % x for x in src_mathed_files]
1656     )
1657     Alias('mathed', mathed)
1658
1659
1660 if build_insets:
1661     #
1662     # src/insets
1663     #
1664     print "Processing files in src/insets..."
1665     #
1666     insets = env.StaticLibrary(
1667         target = '$LOCALLIBPATH/insets',
1668         source = ['$BUILDDIR/common/insets/%s' % x for x in src_insets_files]
1669     )
1670     Alias('insets', insets)
1671
1672
1673 if build_frontends:
1674     #
1675     # src/frontends
1676     #
1677     print "Processing files in src/frontends..."
1678
1679     frontends = env.StaticLibrary(
1680         target = '$LOCALLIBPATH/frontends',
1681         source = ['$BUILDDIR/common/frontends/%s' % x for x in src_frontends_files]
1682     )
1683     Alias('frontends', frontends)
1684
1685
1686 if build_graphics:
1687     #
1688     # src/graphics
1689     #
1690     print "Processing files in src/graphics..."
1691
1692     graphics = env.StaticLibrary(
1693         target = '$LOCALLIBPATH/graphics',
1694         source = ['$BUILDDIR/common/graphics/%s' % x for x in src_graphics_files]
1695     )
1696     Alias('graphics', graphics)
1697
1698
1699 if build_controllers:
1700     #
1701     # src/frontends/controllers
1702     #
1703     print "Processing files in src/frontends/controllers..."
1704
1705     controllers = env.StaticLibrary(
1706         target = '$LOCALLIBPATH/controllers',
1707         source = ['$BUILDDIR/common/frontends/controllers/%s' % x for x in src_frontends_controllers_files]
1708     )
1709     Alias('controllers', controllers)
1710
1711
1712 #
1713 # src/frontend/qt4
1714 #
1715 if build_qt4:
1716     env.BuildDir('$BUILDDIR/$frontend', '$TOP_SRCDIR/src/frontend/$frontend', duplicate = 0)
1717
1718     print "Processing files in src/frontends/qt4..."
1719
1720     qt4_moc_files = ["$BUILDDIR/common/frontends/qt4/%s" % x for x in src_frontends_qt4_moc_files]
1721
1722     #
1723     # Compile resources
1724     #
1725     resources = [frontend_env.Uic4(x.split('.')[0]) for x in \
1726         ["$BUILDDIR/common/frontends/qt4/ui/%s" % x for x in src_frontends_qt4_ui_files]]
1727
1728     #
1729     # moc qt4_moc_files, the moced files are included in the original files
1730     #
1731     qt4_moced_files = [frontend_env.Moc4(x.replace('.C', '_moc.cpp'), x.replace('.C', '.h')) for x in qt4_moc_files]
1732
1733     qt4 = frontend_env.StaticLibrary(
1734         target = '$LOCALLIBPATH/qt4',
1735         source = ['$BUILDDIR/common/frontends/qt4/%s' % x for x in src_frontends_qt4_files],
1736         CPPPATH = [
1737             '$CPPPATH',
1738             '$BUILDDIR/common',
1739             '$BUILDDIR/common/images',
1740             '$BUILDDIR/common/frontends',
1741             '$BUILDDIR/common/frontends/qt4',
1742             '$BUILDDIR/common/frontends/controllers'
1743         ],
1744         CCFLAGS =  [
1745             '$CCFLAGS',
1746             '-DHAVE_CONFIG_H',
1747             '-DQT_CLEAN_NAMESPACE',
1748             '-DQT_GENUINE_STR',
1749             '-DQT_NO_STL',
1750             '-DQT_NO_KEYWORDS',
1751         ]
1752     )
1753     Alias('qt4', qt4)
1754
1755
1756 if build_client:
1757     #
1758     # src/client
1759     #
1760     frontend_env.BuildDir('$BUILDDIR/common', '$TOP_SRCDIR/src', duplicate = 0)
1761
1762     print "Processing files in src/client..."
1763
1764     if env['HAVE_FCNTL']:
1765         client = frontend_env.Program(
1766             target = '$BUILDDIR/common/client/lyxclient',
1767             LIBS = ['support'] + intl_libs + system_libs +
1768                 socket_libs + boost_libraries + qtcore_lib,
1769             source = ['$BUILDDIR/common/client/%s' % x for x in src_client_files] + \
1770                 utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/client.rc')
1771         )
1772         Alias('client', frontend_env.Command(os.path.join('$BUILDDIR', os.path.split(str(client[0]))[1]),
1773             client, [Copy('$TARGET', '$SOURCE')]))
1774     else:
1775         client = None
1776     Alias('client', client)
1777 else:
1778     if env['HAVE_FCNTL']:
1779         # define client even if lyxclient is not built with rebuild=no
1780         client = [env.subst('$BUILDDIR/common/client/${PROGPREFIX}lyxclient$PROGSUFFIX')]
1781     else:
1782         client = None
1783
1784
1785 if build_tex2lyx:
1786     #
1787     # tex2lyx
1788     #
1789     print "Processing files in src/tex2lyx..."
1790
1791     #
1792     for file in ['FloatList.C', 'Floating.C', 'counters.C', 'lyxlayout.h', 'lyxlayout.C', 
1793         'lyxtextclass.h', 'lyxtextclass.C', 'lyxlex.C', 'lyxlex_pimpl.C']:
1794         frontend_env.Command('$BUILDDIR/common/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
1795             [Copy('$TARGET', '$SOURCE')])
1796
1797     tex2lyx = frontend_env.Program(
1798         target = '$BUILDDIR/common/tex2lyx/tex2lyx',
1799         LIBS = ['support'] + boost_libraries + intl_libs + system_libs + qtcore_lib,
1800         source = ['$BUILDDIR/common/tex2lyx/%s' % x for x in src_tex2lyx_files] + \
1801             utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/tex2lyx.rc'),
1802         CPPPATH = ['$BUILDDIR/common/tex2lyx', '$CPPPATH'],
1803         LIBPATH = ['#$LOCALLIBPATH', '$LIBPATH'],
1804     )
1805     Alias('tex2lyx', frontend_env.Command(os.path.join('$BUILDDIR', os.path.split(str(tex2lyx[0]))[1]),
1806         tex2lyx, [Copy('$TARGET', '$SOURCE')]))
1807     Alias('tex2lyx', tex2lyx)
1808 else:
1809     # define tex2lyx even if tex2lyx is not built with rebuild=no
1810     tex2lyx = [frontend_env.subst('$BUILDDIR/common/tex2lyx/${PROGPREFIX}tex2lyx$PROGSUFFIX')]
1811
1812
1813 if build_lyxbase:
1814     #
1815     # src/
1816     #
1817     print "Processing files in src..."
1818
1819     env.Depends('$BUILDDIR/common/version.C', '$BUILDDIR/common/config.h')
1820     env.substFile('$BUILDDIR/common/version.C', '$TOP_SRCDIR/src/version.C.in')
1821
1822     if env.has_key('USE_ASPELL') and env['USE_ASPELL']:
1823         src_post_files.append('aspell.C')
1824     elif env.has_key('USE_PSPELL') and env['USE_PSPELL']:
1825         src_post_files.append('pspell.C')
1826     elif env.has_key('USE_ISPELL') and env['USE_ISPELL']:
1827         src_post_files.append('ispell.C')
1828
1829     # msvc requires at least one source file with main()
1830     # so I exclude main.C from lyxbase
1831     lyxbase_pre = env.StaticLibrary(
1832         target = '$LOCALLIBPATH/lyxbase_pre',
1833         source = ['$BUILDDIR/common/%s' % x for x in src_pre_files]
1834     )
1835     lyxbase_post = env.StaticLibrary(
1836         target = '$LOCALLIBPATH/lyxbase_post',
1837         source = ["$BUILDDIR/common/%s" % x for x in src_post_files]
1838     )
1839     Alias('lyxbase', lyxbase_pre)
1840     Alias('lyxbase', lyxbase_post)
1841
1842
1843 if build_lyx:
1844     #
1845     # Build lyx with given frontend
1846     #
1847     lyx = frontend_env.Program(
1848         target = '$BUILDDIR/lyx',
1849         source = ['$BUILDDIR/common/main.C'] + \
1850             utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/lyx.rc'),
1851         LIBS = [
1852             'lyxbase_pre',
1853             'mathed',
1854             'insets',
1855             'frontends',
1856             frontend,
1857             'controllers',
1858             'graphics',
1859             'support',
1860             'lyxbase_post',
1861             ] +
1862             boost_libraries +
1863             frontend_libs +
1864             intl_libs +
1865             socket_libs +
1866             system_libs
1867     )
1868     Alias('lyx', lyx)
1869 else:
1870     # define lyx even if lyx is not built with rebuild=no
1871     lyx = [frontend_env.subst('$BUILDDIR/${PROGPREFIX}lyx$PROGSUFFIX')]
1872
1873
1874 if build_msvs_projects:
1875     def build_project(target, full_target = None,
1876         src = [], inc = [], res = [], rebuildTargetOnly = True):
1877         ''' build mavs project files
1878             target:      alias (correspond to directory name)
1879             full_target: full path/filename of the target
1880             src:         source files
1881             inc:         include files
1882             res:         resource files
1883             rebuildTargetOnly:     whether or not only rebuild this target
1884
1885         For non-debug-able targets like static libraries, target (alias) is
1886         enough to build the target. For executable targets, msvs need to know
1887         the full path to start debug them.
1888         '''
1889         if rebuildTargetOnly:
1890             cmds = 'rebuild='+target
1891         else:
1892             cmds = ''
1893         if full_target is None:
1894             build_target = target
1895         else:
1896             build_target = full_target
1897         # project
1898         proj = env.MSVSProject(
1899             target = target + env['MSVSPROJECTSUFFIX'],
1900             # this allows easy access to header files (along with source)
1901             srcs = [env.subst(x) for x in src + inc],
1902             incs = [env.subst('$TOP_SRCDIR/src/config.h')],
1903             localincs = [env.subst(x) for x in inc],
1904             resources = [env.subst(x) for x in res],
1905             buildtarget = build_target,
1906             cmdargs = cmds,
1907             variant = 'Debug'
1908         )
1909         Alias('msvs_projects', proj)
1910     #
1911     boost_src = []
1912     for lib in boost_libs:
1913         boost_src += ['$TOP_SRCDIR/boost/libs/%s/src/%s' % (lib, x) for x in eval('boost_libs_%s_src_files' % lib)]
1914     build_project('boost', src = boost_src)
1915     #
1916     build_project('intl', src = ['$TOP_SRCDIR/intl/%s' % x for x in intl_files], 
1917         inc = ['$TOP_SRCDIR/intl/%s' % x for x in intl_header_files])
1918     #
1919     build_project('support', src = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files], 
1920         inc = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files])
1921     #
1922     build_project('mathed', src = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files], 
1923         inc = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files])
1924     #
1925     build_project('insets', src = ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files], 
1926         inc = ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files])
1927     #
1928     build_project('frontends', src = ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files], 
1929         inc = ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files])
1930     #
1931     build_project('graphics', src = ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files], 
1932         inc = ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files])
1933     #
1934     build_project('controllers', src = ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files], 
1935         inc = ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files])
1936     #
1937     build_project('qt4', src = ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files + src_frontends_qt4_moc_files],
1938         inc = ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
1939         res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files])
1940     #
1941     build_project('client', src = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_files],
1942         inc = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_header_files],
1943         rebuildTargetOnly = False,
1944         full_target = File(env.subst('$BUILDDIR/common/client/lyxclient$PROGSUFFIX')).abspath)
1945     #
1946     build_project('tex2lyx', src = ['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_files],
1947         inc = ['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_header_files],
1948         rebuildTargetOnly = False,
1949         full_target = File(env.subst('$BUILDDIR/common/tex2lyx/tex2lyx$PROGSUFFIX')).abspath)
1950     #
1951     build_project('lyxbase', src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files],
1952         inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files])
1953     build_project('lyx', 
1954         src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files] + \
1955             ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files] + \
1956             ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_files] + \
1957             ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files] + \
1958             ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files] + \
1959             ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files] + \
1960             ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files] + \
1961             ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files + src_frontends_qt4_moc_files],
1962         inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files] + \
1963             ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files] + \
1964             ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files] + \
1965             ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files] + \
1966             ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files] + \
1967             ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files] + \
1968             ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files] + \
1969             ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
1970         res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
1971         rebuildTargetOnly = False,
1972         full_target = File(env.subst('$BUILDDIR/lyx$PROGSUFFIX')).abspath)
1973
1974
1975 if build_po:
1976     #
1977     # po/
1978     #
1979     print 'Processing files in po...'
1980
1981     import glob
1982     # handle po files
1983     #
1984     # files to translate
1985     transfiles = glob.glob(os.path.join(env.subst('$TOP_SRCDIR'), 'po', '*.po'))
1986     # possibly *only* handle these languages
1987     languages = None
1988     if env.has_key('languages'):
1989         languages = env.make_list(env['lanauges'])
1990     # use defulat msgfmt
1991     gmo_files = []
1992     if not env['MSGFMT']:
1993         print 'msgfmt does not exist. Can not process po files'
1994     else:
1995         # create a builder
1996         env['BUILDERS']['Transfiles'] = Builder(action='$MSGFMT $SOURCE -c --statistics -o $TARGET',suffix='.gmo',src_suffix='.po')
1997         #
1998         for f in transfiles:
1999             # get filename
2000             fname = os.path.split(f)[1]
2001             # country code
2002             country = fname.split('.')[0]
2003             #
2004             if not languages or country in languages:
2005                 gmo_files.extend(env.Transfiles(f))
2006
2007
2008 if build_install:
2009     #
2010     # this part is a bit messy right now. Since scons will provide
2011     # --DESTDIR option soon, at least the dest_dir handling can be 
2012     # removed later.
2013     #
2014     # how to join dest_dir and prefix
2015     def joinPaths(path1, path2):
2016         ''' join path1 and path2, do not use os.path.join because
2017             under window, c:\destdir\d:\program is invalid '''
2018         if path1 == '':
2019             return os.path.normpath(path2)
2020         # separate drive letter
2021         (drive, path) = os.path.splitdrive(os.path.normpath(path2))
2022         # ignore drive letter, so c:\destdir + c:\program = c:\destdir\program
2023         return os.path.join(os.path.normpath(path1), path[1:])
2024     #
2025     # install to dest_dir/prefix
2026     dest_dir = env.get('DESTDIR', '')
2027     dest_prefix_dir = joinPaths(dest_dir, env.Dir(prefix).abspath)
2028     # create the directory if needed
2029     if not os.path.isdir(dest_prefix_dir):
2030         try:
2031             os.makedirs(dest_prefix_dir)
2032         except:
2033             pass
2034         if not os.path.isdir(dest_prefix_dir):
2035             print 'Can not create directory', dest_prefix_dir
2036             Exit(3)
2037     #
2038     if env.has_key('exec_prefix'):
2039         bin_dest_dir = joinPaths(dest_dir, Dir(env['exec_prefix']).abspath)
2040     else:
2041         bin_dest_dir = os.path.join(dest_prefix_dir, 'bin')
2042     if add_suffix:
2043         share_dest_dir = os.path.join(dest_prefix_dir, share_dir + program_suffix)
2044     else:
2045         share_dest_dir = os.path.join(dest_prefix_dir, share_dir)
2046     man_dest_dir = os.path.join(dest_prefix_dir, man_dir)
2047     locale_dest_dir = os.path.join(dest_prefix_dir, locale_dir)
2048     env['LYX2LYX_DEST'] = os.path.join(share_dest_dir, 'lyx2lyx')
2049     #
2050     import glob
2051     #
2052     # install executables (lyxclient may be None)
2053     #
2054     if add_suffix:
2055         version_suffix = program_suffix
2056     else:
2057         version_suffix = ''
2058     #
2059     # install lyx, if in release mode, try to strip the binary
2060     if env.has_key('STRIP') and env['STRIP'] is not None and mode != 'debug':
2061         # create a builder to strip and install
2062         env['BUILDERS']['StripInstallAs'] = Builder(action='$STRIP $SOURCE -o $TARGET')
2063
2064     # install executables
2065     for (name, obj) in (('lyx', lyx), ('tex2lyx', tex2lyx), ('client', client)):
2066         if obj is None:
2067             continue
2068         target_name = os.path.split(str(obj[0]))[1].replace(name, '%s%s' % (name, version_suffix))
2069         target = os.path.join(bin_dest_dir, target_name)
2070         if env['BUILDERS'].has_key('StripInstallAs'):
2071             env.StripInstallAs(target, obj)
2072         else:
2073             env.InstallAs(target, obj)
2074         Alias('install', target)
2075
2076     # share/lyx
2077     dirs = []
2078     for (dir,files) in [
2079             ('.', lib_files),  
2080             ('images', lib_images_files),
2081             ('images/math', lib_images_math_files),
2082             ('kbd', lib_kbd_files),
2083             ('layouts', lib_layouts_files),
2084             ('scripts', lib_scripts_files),
2085             ('templates', lib_templates_files),
2086             ('tex', lib_tex_files),
2087             ('ui', lib_ui_files),
2088             ('bind', lib_bind_files),
2089             ('bind/de', lib_bind_de_files),
2090             ('bind/fi', lib_bind_fi_files),
2091             ('bind/pt', lib_bind_pt_files),
2092             ('bind/sv', lib_bind_sv_files),
2093             ('doc', lib_doc_files),
2094             ('doc/clipart', lib_doc_clipart_files),
2095             ('doc/cs', lib_doc_cs_files),
2096             ('doc/da', lib_doc_da_files),
2097             ('doc/de', lib_doc_de_files),
2098             ('doc/es', lib_doc_es_files),
2099             ('doc/es/clipart', lib_doc_es_clipart_files),
2100             ('doc/eu', lib_doc_eu_files),
2101             ('doc/fr', lib_doc_fr_files),
2102             ('doc/he', lib_doc_he_files),
2103             ('doc/hu', lib_doc_hu_files),
2104             ('doc/it', lib_doc_it_files),
2105             ('doc/nl', lib_doc_nl_files),
2106             ('doc/nb', lib_doc_nb_files),
2107             ('doc/pl', lib_doc_pl_files),
2108             ('doc/pt', lib_doc_pt_files),
2109             ('doc/ro', lib_doc_ro_files),
2110             ('doc/ru', lib_doc_ru_files),
2111             ('doc/sk', lib_doc_sk_files),
2112             ('doc/sl', lib_doc_sl_files),
2113             ('doc/sv', lib_doc_sv_files),
2114             ('examples', lib_examples_files),
2115             ('examples/ca', lib_examples_ca_files),
2116             ('examples/cs', lib_examples_cs_files),
2117             ('examples/da', lib_examples_da_files),
2118             ('examples/de', lib_examples_de_files),
2119             ('examples/es', lib_examples_es_files),
2120             ('examples/eu', lib_examples_eu_files),
2121             ('examples/fr', lib_examples_fr_files),
2122             ('examples/he', lib_examples_he_files),
2123             ('examples/hu', lib_examples_hu_files),
2124             ('examples/it', lib_examples_it_files),
2125             ('examples/nl', lib_examples_nl_files),
2126             ('examples/pl', lib_examples_pl_files),
2127             ('examples/pt', lib_examples_pt_files),
2128             ('examples/ru', lib_examples_ru_files),
2129             ('examples/sl', lib_examples_sl_files),
2130             ('examples/ro', lib_examples_ro_files),
2131             ('lyx2lyx', lib_lyx2lyx_files)]:
2132         dirs.append(env.Install(os.path.join(share_dest_dir, dir),
2133             [env.subst('$TOP_SRCDIR/lib/%s/%s' % (dir, file)) for file in files]))
2134     Alias('install', dirs)
2135
2136     # subst and install lyx2lyx_version.py which is not in scons_manifest.py
2137     env.Depends(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py', '$BUILDDIR/common/config.h')
2138     env.substFile(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py',
2139         '$TOP_SRCDIR/lib/lyx2lyx/lyx2lyx_version.py.in')
2140     Alias('install', share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
2141     sys.path.append(share_dest_dir + '/lyx2lyx')
2142     
2143     # generate TOC files for each doc
2144     languages = depend.all_documents(env.Dir('$TOP_SRCDIR/lib/doc').abspath)
2145     tocs = []
2146     for lang in languages.keys():
2147         if os.path.isdir(os.path.join(env.Dir('$TOP_SRCDIR/lib/doc').abspath, lang)):
2148             toc = env.installTOC(os.path.join(share_dest_dir, 'doc', lang, 'TOC.lyx'),
2149                 languages[lang])
2150             tocs.append(toc)
2151             # doc_toc.build_toc needs a installed version of lyx2lyx to execute
2152             env.Depends(toc, share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
2153         else:
2154             # this is for English
2155             toc = env.installTOC(os.path.join(share_dest_dir, 'doc', 'TOC.lyx'),
2156                 languages[lang])
2157             tocs.append(toc)
2158             env.Depends(toc, share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
2159     Alias('install', tocs)
2160     
2161     if platform_name == 'cygwin':
2162         # cygwin packaging requires a file /usr/share/doc/Cygwin/foot-vendor-suffix.README
2163         Cygwin_README = os.path.join(dest_prefix_dir, 'share', 'doc', 'Cygwin', 
2164             '%s-%s.README' % (package, package_cygwin_version))
2165         env.InstallAs(Cygwin_README,
2166             os.path.join(env.subst('$TOP_SRCDIR'), 'README.cygwin'))
2167         Alias('install', Cygwin_README)
2168         # also a directory /usr/share/doc/lyx for README etc
2169         Cygwin_Doc = os.path.join(dest_prefix_dir, 'share', 'doc', package)
2170         env.Install(Cygwin_Doc, [os.path.join(env.subst('$TOP_SRCDIR'), x) for x in \
2171             ['INSTALL', 'README', 'README.Cygwin', 'RELEASE-NOTES', 'COPYING', 'ANNOUNCE']])
2172         Alias('install', Cygwin_Doc)
2173         # cygwin fonts also need to be installed
2174         Cygwin_fonts = os.path.join(share_dest_dir, 'fonts')
2175         env.Install(Cygwin_fonts, 
2176             [env.subst('$TOP_SRCDIR/development/Win32/packaging/bakoma/%s' % file) \
2177                   for file in win32_bakoma_fonts])
2178         Alias('install', Cygwin_fonts)
2179         # we also need a post installation script
2180         tmp_script = utils.installCygwinPostinstallScript('/tmp')
2181         postinstall_path = os.path.join(dest_dir, 'etc', 'postinstall')
2182         env.Install(postinstall_path, tmp_script)
2183         Alias('install', postinstall_path)
2184
2185
2186     # man
2187     env.InstallAs(os.path.join(man_dest_dir, 'lyx' + version_suffix + '.1'),
2188         env.subst('$TOP_SRCDIR/lyx.man'))
2189     env.InstallAs(os.path.join(man_dest_dir, 'tex2lyx' + version_suffix + '.1'),
2190         env.subst('$TOP_SRCDIR/src/tex2lyx/tex2lyx.man'))
2191     env.InstallAs(os.path.join(man_dest_dir, 'lyxclient' + version_suffix + '.1'),
2192         env.subst('$TOP_SRCDIR/src/client/lyxclient.man'))
2193     Alias('install', [os.path.join(man_dest_dir, x + version_suffix + '.1') for
2194         x in ['lyx', 'tex2lyx', 'lyxclient']])
2195     # locale files?
2196     # ru.gmo ==> ru/LC_MESSAGES/lyxSUFFIX.mo
2197     for gmo in gmo_files:
2198         lan = os.path.split(str(gmo))[1].split('.')[0]
2199         dest_file = os.path.join(locale_dest_dir, lan, 'LC_MESSAGES', 'lyx' + program_suffix + '.mo')
2200         env.InstallAs(dest_file, gmo)
2201         Alias('install', dest_file)
2202
2203
2204 if build_installer:
2205     #
2206     # build windows installer using NSIS
2207     #
2208     # NOTE:
2209     # There is a nsis builder on scons wiki but it does not work with
2210     # our lyx.nsi because it does not dig through all the include directives
2211     # and find the dependencies automatically. Also, it can not parse
2212     # OutFile in lyx.nsi since it is defined as SETUP_EXE which is in turn
2213     # something rely on date.
2214     # Because of this, I am doing a simple nsis builder here.
2215     if platform_name != 'win32':
2216         print 'installer target is only available for windows platform'
2217         Exit(1)
2218     if env.has_key('NSIS') and env['NSIS'] is not None:
2219         # create a builder to strip and install
2220         env['BUILDERS']['installer'] = Builder(generator=utils.env_nsis)
2221     else:
2222         print 'No nsis compiler is found. Existing...'
2223         Exit(2)
2224     if not env.has_key('win_installer') or env['win_installer'] is None:
2225         if devel_version:
2226             env['win_installer'] = '%s-%s-%s-Installer.exe' % (package_name, package_version, time.strftime('%Y-%m-%d'))
2227         else:
2228             env['win_installer'] = '%s-%s-Installer.exe' % (package_name, package_version)
2229     # provide default setting            
2230     if not env.has_key('deps_dir') or env['deps_dir'] is None:
2231         env['deps_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-deps-msvc-qt4')
2232     if not os.path.isdir(env.Dir('$deps_dir').abspath):
2233         print 'Development dependency package is not found.'
2234         Exit(1)    
2235     else:
2236         env['deps_dir'] = env.Dir('$deps_dir').abspath
2237     # build bundle?
2238     if env.has_key('bundle_dir') and os.path.isdir(env.Dir('$bundle_dir').abspath):
2239         env['bundle_dir'] = env.Dir('$bundle_dir').abspath
2240     elif os.path.isdir(os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')):
2241         env['bundle_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')
2242     else:
2243         env['bundle_dir'] = None
2244     # if absolute path is given, use it, otherwise, write to current directory
2245     if not (':' in env['win_installer'] or '/' in env['win_installer'] or '\\' in env['win_installer']):
2246         env['win_installer'] = os.path.join(env.Dir('$BUILDDIR').abspath, env['win_installer'])
2247     env.Append(NSISDEFINES={
2248         'ExeFile':env['win_installer'],
2249         'BundleExeFile':env['win_installer'].replace('.exe', '-bundle.exe'),
2250         'FilesLyx':env.Dir(dest_prefix_dir).abspath,
2251         'FilesDeps':env['deps_dir'],
2252         'FilesBundle':env['bundle_dir'],
2253         })
2254     installer = env.installer(env['win_installer'],
2255         '$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
2256     # since I can not use a scanner, explicit dependent is required
2257     env.Depends(installer, 'install')
2258     env.Alias('installer', installer)
2259     # also generate bundle?
2260     if env.has_key('bundle') and env['bundle']:
2261         if env['bundle_dir'] is None or not os.path.isdir(env['bundle_dir']):
2262             print 'Bundle directory does not exist (default to %s\lyx-windows-bundle-deps.' % env.Dir('$TOP_SRCDIR').abspath
2263             print 'Use bundle_dir option to specify'
2264             Exit(1)
2265         # generator of the builder will add bundle stuff depending on output name
2266         bundle_installer = env.installer(env['win_installer'].replace('.exe', '-bundle.exe'),
2267             '$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
2268         env.Depends(bundle_installer, 'install')
2269         env.Alias('installer', bundle_installer)
2270
2271 Default('lyx')
2272 Alias('all', ['lyx', 'client', 'tex2lyx'])