]> git.lyx.org Git - lyx.git/blobdiff - development/scons/SConstruct
installer updates
[lyx.git] / development / scons / SConstruct
index e52c9e9ec517768ee6b35d96c64d168325d2abec..e3049387f13cbf88ddeef643ce08f696eaf753b4 100644 (file)
@@ -15,7 +15,6 @@
 import os, sys, copy, cPickle, glob, time
 
 # scons_utils.py defines a few utility function
-sys.path.append('config')
 import scons_utils as utils
 # import all file lists
 from scons_manifest import *
@@ -37,15 +36,13 @@ if version[0] == 0 and version[1] == 96 and version[2] < 92:
 
 # determine where I am ...
 #
-# called as 'cd development/scons; scons'
-if os.path.isfile('SConstruct'):
-    top_src_dir = '../..'
-    scons_dir = '.'
-# called as 'scons -f development/scons/SConstruct'
-else:
-    top_src_dir = '.'
-    scons_dir = 'development/scons'
-
+from SCons.Node.FS import default_fs
+# default_fs.SConstruct_dir is where SConstruct file is located.
+scons_dir = default_fs.SConstruct_dir.path
+# get the ../.. of scons_dir
+top_src_dir = os.path.split(os.path.split(default_fs.SConstruct_dir.abspath)[0])[0]
+sys.path.append(os.path.join(top_src_dir, 'lib', 'doc'))
+import depend
 
 #----------------------------------------------------------
 # Global definitions
@@ -53,12 +50,18 @@ else:
 
 # some global settings
 #
-package_version = '1.5.0svn'
-package_cygwin_version = '1.5.0svn-1'
-boost_version = '1_33_1'
-
-devel_version = True
-default_build_mode = 'debug'
+# get version number from configure.ac so that JMarc does
+# not have to change SConstruct during lyx release
+package_version = utils.getVerFromConfigure(top_src_dir)
+package_cygwin_version = '%s-1' % package_version
+boost_version = ['1_34']
+
+if 'svn' in package_version:
+    devel_version = True
+    default_build_mode = 'debug'
+else:
+    devel_version = False
+    default_build_mode = 'release'
 
 package = 'lyx'
 package_bugreport = 'lyx-devel@lists.lyx.org'
@@ -68,7 +71,7 @@ package_string = '%s %s' % (package_name, package_version)
 
 # various cache/log files
 default_log_file = 'scons_lyx.log'
-env_cache_file = 'env.cache'
+opt_cache_file = 'opt.cache'
 
 
 #----------------------------------------------------------
@@ -77,32 +80,27 @@ env_cache_file = 'env.cache'
 
 if os.name == 'nt':
     platform_name = 'win32'
-    default_frontend = 'qt4'
     default_prefix = 'c:/program files/lyx'
     default_with_x = False
     default_packaging_method = 'windows'
 elif os.name == 'posix' and sys.platform != 'cygwin':
     platform_name = sys.platform
-    default_frontend = 'qt3'
     default_prefix = '/usr/local'
     default_with_x = True
     default_packaging_method = 'posix'
 elif os.name == 'posix' and sys.platform == 'cygwin':
     platform_name = 'cygwin'
-    default_frontend = 'qt3'
     default_prefix = '/usr'
     default_with_x = True
     default_packaging_method = 'posix'
 elif os.name == 'darwin':
     platform_name = 'macosx'
-    default_frontend = 'qt3'
     # FIXME: macOSX default prefix?
     default_prefix = '.'
     default_with_x = False
     default_packaging_method = 'macosx'
 else:  # unsupported system, assume posix behavior
     platform_name = 'others'
-    default_frontend = 'qt3'
     default_prefix = '.'
     default_with_x = True
     default_packaging_method = 'posix'
@@ -119,8 +117,8 @@ if os.path.isfile('config.py'):
 opts = Options(['config.py'])
 opts.AddOptions(
     # frontend
-    EnumOption('frontend', 'Main GUI', default_frontend,
-        allowed_values = ('qt3', 'qt4', 'gtk') ),
+    EnumOption('frontend', 'Main GUI', 'qt4',
+        allowed_values = ('qt4',) ),
     # debug or release build
     EnumOption('mode', 'Building method', default_build_mode,
         allowed_values = ('debug', 'release') ),
@@ -147,7 +145,7 @@ opts.AddOptions(
     EnumOption('packaging', 'Packaging method to use.', default_packaging_method,
         allowed_values = ('windows', 'posix', 'macosx')),
     #
-    BoolOption('fast_start', 'Whether or not use cached tests and keep current config.h', True),
+    BoolOption('fast_start', 'This option is obsolete.', False),
     # No precompiled header support (too troublesome to make it work for msvc)
     # BoolOption('pch', 'Whether or not use pch', False),
     # enable assertion, (config.h has ENABLE_ASSERTIOS
@@ -191,6 +189,14 @@ opts.AddOptions(
         comp1,comp2,...: rebuild specified targets''', None),
     # can be set to a non-existing directory
     ('prefix', 'install architecture-independent files in PREFIX', default_prefix),
+    # replace the default name and location of the windows installer
+    ('win_installer', 'name or full path to the windows installer', None),
+    # the deps package used to create minimal installer (qt and other libraries)
+    ('deps_dir', 'path to the development depedency packages with zlib, iconv, zlib and qt libraries', None),
+    # whether or not build bundle installer
+    BoolOption('bundle', 'Whether or not build bundle installer', False),
+    # the bundle directory, containing bundled applications
+    PathOption('bundle_dir', 'path to the bundle dependency package with miktex setup.exe etc', None),
     # build directory, will use $mode if not set
     ('build_dir', 'Build directory', None),
     # version suffix
@@ -230,23 +236,8 @@ all_options = [x.key for x in opts.options]
 true_strings  = ('y', 'yes', 'true', 't', '1', 'on' , 'all' )
 false_strings = ('n', 'no', 'false', 'f', '0', 'off', 'none')
 
-# whether or not use current config.h, and cached tests
-#
-# if fast_start=yes (default), load variables from env_cache_file
-if (not ARGUMENTS.has_key('fast_start') or \
-    ARGUMENTS['fast_start'] in true_strings) \
-    and os.path.isfile(env_cache_file):
-    fast_start = True
-    cache_file = open(env_cache_file)
-    env_cache = cPickle.load(cache_file)
-    cache_file.close()
-    print '------------ fast_start mode --------------------'
-    print '  Use cached test results and current config.h'
-    print '  use fast_start=no to override'
-    print
-else:
-    fast_start = False
-    env_cache = {}
+if ARGUMENTS.has_key('fast_start'):
+    print 'fast_start option is obsolete'
 
 # if load_option=yes (default), load saved comand line options
 #
@@ -254,26 +245,17 @@ else:
 # and tries to be clever in choosing options to load
 if (not ARGUMENTS.has_key('load_option') or \
     ARGUMENTS['load_option'] not in false_strings) \
-    and os.path.isfile(env_cache_file):
-    cache_file = open(env_cache_file)
-    opt_cache = cPickle.load(cache_file)['arg_cache']
+    and os.path.isfile(opt_cache_file):
+    cache_file = open(opt_cache_file)
+    opt_cache = cPickle.load(cache_file)
     cache_file.close()
     # import cached options, but we should ignore qt_dir when frontend changes
     if ARGUMENTS.has_key('frontend') and opt_cache.has_key('frontend') \
         and ARGUMENTS['frontend'] != opt_cache['frontend'] \
         and opt_cache.has_key('qt_dir'):
         opt_cache.pop('qt_dir')
-    # some options will require full rebuild
-    # these are in general things that will change config.h
-    for arg in ['version_suffix', 'nls', 'boost', 'spell']:
-        if ARGUMENTS.has_key(arg) and ((not opt_cache.has_key(arg)) or \
-            ARGUMENTS[arg] != opt_cache[arg]):
-            if fast_start:
-                print "  ** fast_start is disabled because of the change of option", arg
-                print
-                fast_start = False
     # and we do not cache some options (dest_dir is obsolete)
-    for arg in ['fast_start', 'load_option', 'dest_dir']:
+    for arg in ['load_option', 'dest_dir', 'bundle']:
         if opt_cache.has_key(arg):
             opt_cache.pop(arg)
     # remove obsolete cached keys (well, SConstruct is evolving. :-)
@@ -312,9 +294,10 @@ for arg in ARGUMENTS.keys():
         print '    ' + '\n    '.join(textwrap.wrap(',  '.join(all_options)))
         Exit(1)
 
-# save arguments
-env_cache['arg_cache'] = ARGUMENTS
-
+# save options used
+cache_file = open(opt_cache_file, 'w')
+cPickle.dump(ARGUMENTS, cache_file)
+cache_file.close()
 
 #---------------------------------------------------------
 # Setting up environment
@@ -379,17 +362,17 @@ env.AppendUnique(LIBPATH = ['$LOCALLIBPATH'])
 # 3. compiler commands and flags like CCFLAGS.
 #     MSGFMT used to process po files
 # 4. Variables that will be used to replace variables in some_file.in
-#     src/support/package.C.in:
+#     src/support/Package.cpp.in:
 #       TOP_SRCDIR, LOCALEDIR, LYX_DIR, PROGRAM_SUFFIX
 #     lib/lyx2lyx/lyx2lyx_version.py.in
 #       PACKAGE_VERSION
-#     src/version.C.in
+#     src/version.cpp.in
 #       PACKAGE_VERSION, LYX_DATE, VERSION_INFO
 
 # full path name is used to build msvs project files
 # and to replace TOP_SRCDIR in package.C
 env['TOP_SRCDIR'] = Dir(top_src_dir).abspath
-# needed by src/version.C.in => src/version.C
+# needed by src/version.cpp.in => src/version.cpp
 env['PACKAGE_VERSION'] = package_version
 env['LYX_DATE'] = time.asctime()
 
@@ -417,12 +400,12 @@ if env.has_key('version_suffix'):
         program_suffix = env['version_suffix']
 else:
     program_suffix = ''
-# used by package.C.in
+# used by Package.cpp.in
 env['PROGRAM_SUFFIX'] = program_suffix
 
 # whether or not add suffix to file and directory names
 add_suffix = packaging_method != 'windows'
-# LYX_DIR are different (used in package.C.in)
+# LYX_DIR are different (used in Package.cpp.in)
 if add_suffix:
     env['LYX_DIR'] = Dir(os.path.join(prefix, share_dir + program_suffix)).abspath
 else:
@@ -444,6 +427,10 @@ if platform_name == 'win32':
     else:
         env.Tool('mingw')
         env.AppendUnique(CPPPATH = ['#c:/MinGW/include'])
+        # fix a scons winres bug (there is a missing space between ${RCINCPREFIX} and ${SOURCE.dir}
+        # in version 0.96.93
+        env['RCCOM'] = '$RC $_CPPDEFFLAGS $RCINCFLAGS ${RCINCPREFIX} ${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
+    
 
 # we differentiate between hard-coded options and default options
 # hard-coded options are required and will always be there
@@ -466,7 +453,13 @@ if use_vc:
     #   in the current code page (number)
     # C4996: foo was decleared deprecated
     CCFLAGS_required.extend(['/TP', '/EHsc'])
-    CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
+    if mode == 'debug':
+        CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MDd'])
+        # the flags are also needed in C mode (for intl lib)
+        C_CCFLAGS.extend(['/wd4819', '/wd4996', '/nologo', '/MDd'])
+    else:
+        CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
+        C_CCFLAGS.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
 else:
     if env.has_key('CXX') and env['CXX']:
         env['CC'] = env.subst('$CXX')
@@ -527,6 +520,9 @@ def setEnvVariable(env, name, required = None, default = None, split = True):
     '''
     # 1. ARGUMENTS is already set to env[name], override default.
     if ARGUMENTS.has_key(name):
+        # env[name] may be rewritten when building tools are reloaded
+        # if that is the case, commandline option will override it.
+        env[name] = ARGUMENTS[name]
         default = None
     # then use environment default
     elif os.environ.has_key(name):
@@ -570,54 +566,6 @@ if env.has_key('dest_dir'):
     print "This option is obsolete. Please use DESTDIR instead."
     env['DESTDIR'] = env['dest_dir']
 
-
-#---------------------------------------------------------
-# Frontend related variables (QTDIR etc)
-#---------------------------------------------------------
-
-if env.has_key('qt_dir') and env['qt_dir']:
-    env['QTDIR'] = env['qt_dir']
-elif os.path.isdir(os.environ.get('QTDIR', '/usr/lib/qt-3.3')):
-    env['QTDIR'] = os.environ.get('QTDIR', '/usr/lib/qt-3.3')
-
-# if there is a valid QTDIR, set path for lib and bin directories
-if env.has_key('QTDIR'):
-    # add path to the qt tools
-    if os.path.isdir(os.path.join(env['QTDIR'], 'lib')):
-        env.AppendUnique(LIBPATH = [os.path.join(env['QTDIR'], 'lib')])
-    # set environment so that moc etc can be found even if its path is not set properly
-    if os.path.isdir(os.path.join(env['QTDIR'], 'bin')):
-        os.environ['PATH'] += os.pathsep + os.path.join(env['QTDIR'], 'bin')
-        env.PrependENVPath('PATH', os.path.join(env['QTDIR'], 'bin'))
-
-if env.has_key('qt_lib_path') and env['qt_lib_path']:
-    qt_lib_path = env.subst('$qt_lib_path')
-elif env.has_key('QTDIR') and os.path.isdir(os.path.join(env.subst('$QTDIR'), 'lib')):
-    qt_lib_path = env.subst('$QTDIR/lib')
-# this is the path for cygwin.
-elif os.path.isdir(os.path.join('/usr/lib/', frontend, 'lib')):
-    qt_lib_path = '/usr/lib/%s/lib' % frontend
-else:
-    print "Qt library directory is not found. Please specify it using qt_lib_path"
-    Exit(1)
-env.AppendUnique(LIBPATH = [qt_lib_path])
-# qt4 seems to be using pkg_config
-env.PrependENVPath('PKG_CONFIG_PATH', qt_lib_path)
-
-if env.has_key('qt_inc_path') and env['qt_inc_path']:
-    qt_inc_path = env['qt_inc_path']
-elif env.has_key('QTDIR') and os.path.isdir(os.path.join(env.subst('$QTDIR'), 'include')):
-    qt_inc_path = '$QTDIR/include'
-# this is the path for cygwin.
-elif os.path.isdir('/usr/include/' + frontend):
-    qt_inc_path = '/usr/include/' + frontend
-else:
-    print "Qt include directory not found. Please specify it using qt_inc_path"
-    Exit(1)
-# Note that this CPPPATH is for testing only
-# it will be removed before calling SConscript
-env['CPPPATH'] = [qt_inc_path]
-
 #
 # extra_inc_path and extra_lib_path
 #
@@ -650,105 +598,45 @@ conf = Configure(env,
         'CheckSelectArgType' : utils.checkSelectArgType,
         'CheckBoostLibraries' : utils.checkBoostLibraries,
         'CheckCommand' : utils.checkCommand,
+        'CheckNSIS' : utils.checkNSIS,
         'CheckCXXGlobalCstd' : utils.checkCXXGlobalCstd,
         'CheckLC_MESSAGES' : utils.checkLC_MESSAGES,
         'CheckIconvConst' : utils.checkIconvConst,
+        'CheckSizeOfWChar' : utils.checkSizeOfWChar,
+        'CheckDeclaration' : utils.checkDeclaration,
     }
 )
 
 # pkg-config? (if not, we use hard-coded options)
-if not fast_start:
-    if conf.CheckPkgConfig('0.15.0'):
-        env['HAS_PKG_CONFIG'] = True
-    else:
-        print 'pkg-config >= 0.1.50 is not found'
-        env['HAS_PKG_CONFIG'] = False
-    env_cache['HAS_PKG_CONFIG'] = env['HAS_PKG_CONFIG']
+if conf.CheckPkgConfig('0.15.0'):
+    env['HAS_PKG_CONFIG'] = True
 else:
-    env['HAS_PKG_CONFIG'] = env_cache['HAS_PKG_CONFIG']
+    print 'pkg-config >= 0.1.50 is not found'
+    env['HAS_PKG_CONFIG'] = False
 
-# zlib? This is required. (fast_start assumes the existance of zlib)
-if not fast_start:
-    if (not use_vc and not conf.CheckLibWithHeader('z', 'zlib.h', 'C')) \
-        or (use_vc and not conf.CheckLibWithHeader('zdll', 'zlib.h', 'C')):
-        print 'Did not find zdll.lib or zlib.h, exiting!'
-        Exit(1)
-    has_iconv = conf.CheckLib('iconv')
-    has_libiconv = conf.CheckLib('libiconv')
-    if has_iconv:
-        env['ICONV_LIB'] = 'iconv'
-    elif has_libiconv:
-        env['ICONV_LIB'] = 'libiconv'
-    else:
-        print 'Did not find iconv or libiconv, exiting!'
-        Exit(1)
-    env_cache['ICONV_LIB'] = env['ICONV_LIB']
+# zlib? This is required.
+if (not use_vc and not conf.CheckLibWithHeader('z', 'zlib.h', 'C')) \
+    or (use_vc and not conf.CheckLibWithHeader('zdll', 'zlib.h', 'C')):
+    print 'Did not find zdll.lib or zlib.h, exiting!'
+    Exit(1)
+if conf.CheckLib('iconv'):
+    env['ICONV_LIB'] = 'iconv'
+elif conf.CheckLib('libiconv'):
+    env['ICONV_LIB'] = 'libiconv'
+elif conf.CheckFunc('iconv_open'):
+    env['ICONV_LIB'] = None
 else:
-    env['ICONV_LIB'] = env_cache['ICONV_LIB']
-
-# qt libraries?
-if not fast_start:
-    #
-    # qt3 does not use pkg_config
-    if frontend == 'qt3':
-        # windows lib name is qt-mt3
-        if not conf.CheckLibWithHeader('qt-mt', 'qapp.h', 'c++', 'QApplication qapp();') \
-            and not conf.CheckLibWithHeader('qt-mt3', 'qapp.h', 'c++', 'QApplication qapp();'):
-            print 'Did not find qt libraries, exiting!'
-            Exit(1)
-    elif frontend == 'qt4':
-        succ = False
-        # first: try pkg_config
-        if env['HAS_PKG_CONFIG']:
-            succ = conf.CheckPackage('QtCore') or conf.CheckPackage('QtCore4')
-            # FIXME: use pkg_config information?
-            #env['QT4_PKG_CONFIG'] = succ
-        # second: try to link to it
-        if not succ:
-            # Under linux, I can test the following perfectly
-            # Under windows, lib names need to passed as libXXX4.a ...
-            succ = conf.CheckLibWithHeader('QtCore', 'QtGui/QApplication', 'c++', 'QApplication qapp();') or \
-                conf.CheckLibWithHeader('QtCore4', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
-        # third: try to look up the path
-        if not succ:
-            succ = True
-            for lib in ['QtCore', 'QtGui']:
-                # windows version has something like QtGui4 ...
-                if not (os.path.isfile(os.path.join(qt_lib_path, 'lib%s.a' % lib)) or \
-                    os.path.isfile(os.path.join(qt_lib_path, 'lib%s4.a' % lib))):
-                    succ = False
-                    break
-        # still can not find it
-        if succ:
-            print "Qt4 libraries are found."
-        else:
-            print 'Did not find qt libraries, exiting!'
-            Exit(1)
-
-# now, if msvc2005 is used, we will need that QT_LIB_PATH/QT_LIB.manifest file
-if use_vc:
-    if frontend == 'qt3':
-        manifest = os.path.join(qt_lib_path, 'qt-mt3.dll.manifest')
-    elif frontend == 'qt4':
-        if mode == 'debug':
-            manifest = os.path.join(qt_lib_path, 'QtGuid4.dll.manifest')
-        else:
-            manifest = os.path.join(qt_lib_path, 'QtGui4.dll.manifest')
-    if os.path.isfile(manifest):
-        env['LINKCOM'] = [env['LINKCOM'], 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % manifest]
+    print 'Did not find iconv or libiconv, exiting!'
+    Exit(1)
 
 # check socket libs
-if not fast_start:
-    socket_libs = []
-    if conf.CheckLib('socket'):
-        socket_libs.append('socket')
-    # nsl is the network services library and provides a
-    # transport-level interface to networking services.
-    if conf.CheckLib('nsl'):
-        socket_libs.append('nsl')
-    env_cache['SOCKET_LIBS'] = socket_libs
-else:
-    socket_libs = env_cache['SOCKET_LIBS']
+socket_libs = []
+if conf.CheckLib('socket'):
+    socket_libs.append('socket')
+# nsl is the network services library and provides a
+# transport-level interface to networking services.
+if conf.CheckLib('nsl'):
+    socket_libs.append('nsl')
 
 # check available boost libs (since lyx1.4 does not use iostream)
 boost_libs = []
@@ -756,48 +644,39 @@ for lib in ['signals', 'regex', 'filesystem', 'iostreams']:
     if os.path.isdir(os.path.join(top_src_dir, 'boost', 'libs', lib)):
         boost_libs.append(lib)
 
-if not fast_start:
-    # check boost libraries
-    boost_opt = ARGUMENTS.get('boost', 'auto')
-    # check for system boost
-    lib_paths = env['LIBPATH'] + ['/usr/lib', '/usr/local/lib']
-    inc_paths = env['CPPPATH'] + ['/usr/include', '/usr/local/include']
-    # default to $BUILDDIR/libs (use None since this path will be added anyway)
-    boost_libpath = None
-    # here I assume that all libraries are in the same directory
-    if boost_opt == 'included':
+# check boost libraries
+boost_opt = ARGUMENTS.get('boost', 'auto')
+# check for system boost
+lib_paths = env['LIBPATH'] + ['/usr/lib', '/usr/local/lib']
+inc_paths = env['CPPPATH'] + ['/usr/include', '/usr/local/include']
+# default to $BUILDDIR/libs (use None since this path will be added anyway)
+boost_libpath = None
+# here I assume that all libraries are in the same directory
+if boost_opt == 'included':
+    boost_libraries = ['included_boost_%s' % x for x in boost_libs]
+    included_boost = True
+    env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
+elif boost_opt == 'auto':
+    res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
+    # if not found, use local boost
+    if res[0] is None:
         boost_libraries = ['included_boost_%s' % x for x in boost_libs]
         included_boost = True
         env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
-    elif boost_opt == 'auto':
-        res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
-        # if not found, use local boost
-        if res[0] is None:
-            boost_libraries = ['included_boost_%s' % x for x in boost_libs]
-            included_boost = True
-            env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
-        else:
-            included_boost = False
-            (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
-    elif boost_opt == 'system':
-        res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
-        if res[0] is None:
-            print "Can not find system boost libraries with version %s " % boost_version
-            print "Please supply a path through extra_lib_path and try again."
-            print "Or use boost=included to use included boost libraries."
-            Exit(2)
-        else:
-            included_boost = False
-            (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
-    env_cache['BOOST_LIBRARIES'] = boost_libraries
-    env_cache['INCLUDED_BOOST'] = included_boost
-    env_cache['BOOST_INC_PATH'] = env['BOOST_INC_PATH']
-    env_cache['BOOST_LIBPATH'] = boost_libpath
-else:
-    boost_libraries = env_cache['BOOST_LIBRARIES']
-    included_boost = env_cache['INCLUDED_BOOST']
-    env['BOOST_INC_PATH'] = env_cache['BOOST_INC_PATH']
-    boost_libpath = env_cache['BOOST_LIBPATH']
+    else:
+        included_boost = False
+        (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
+elif boost_opt == 'system':
+    res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
+    if res[0] is None:
+        print "Can not find system boost libraries with version %s " % boost_version
+        print "Please supply a path through extra_lib_path and try again."
+        print "Or use boost=included to use included boost libraries."
+        Exit(2)
+    else:
+        included_boost = False
+        (boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
+
 
 if boost_libpath is not None:
     env.AppendUnique(LIBPATH = [boost_libpath])
@@ -805,65 +684,58 @@ if boost_libpath is not None:
 
 env['ENABLE_NLS'] = env['nls']
 
-if not fast_start:
-    if not env['ENABLE_NLS']:
-        intl_libs = []
-        included_gettext = False
-    else:
-        # check gettext libraries
-        gettext_opt = ARGUMENTS.get('gettext', 'auto')
-        # check for system gettext
-        succ = False
-        if gettext_opt in ['auto', 'system']:
-            if conf.CheckLib('intl'):
-                included_gettext = False
-                intl_libs = ['intl']
-                succ = True
-            else: # no found
-                if gettext_opt == 'system':
-                    print "Can not find system gettext library"
-                    print "Please supply a path through extra_lib_path and try again."
-                    print "Or use gettext=included to use included gettext libraries."
-                    Exit(2)
-        # now, auto and succ = false, or gettext=included
-        if not succ:
-            # we do not need to set LIBPATH now.
-            included_gettext = True
-            intl_libs = ['included_intl']
-    env_cache['INCLUDED_GETTEXT'] = included_gettext
-    env_cache['INTL_LIBS'] = intl_libs
+if not env['ENABLE_NLS']:
+    intl_libs = []
+    included_gettext = False
 else:
-    included_gettext = env_cache['INCLUDED_GETTEXT']
-    intl_libs = env_cache['INTL_LIBS']
+    # check gettext libraries
+    gettext_opt = ARGUMENTS.get('gettext', 'auto')
+    # check for system gettext
+    succ = False
+    if gettext_opt in ['auto', 'system']:
+        if conf.CheckFunc('gettext'):
+            included_gettext = False
+            intl_libs = []
+            succ = True
+        elif conf.CheckLib('intl'):
+            included_gettext = False
+            intl_libs = ['intl']
+            succ = True
+        else: # no found
+            if gettext_opt == 'system':
+                print "Can not find system gettext library"
+                print "Please supply a path through extra_lib_path and try again."
+                print "Or use gettext=included to use included gettext libraries."
+                Exit(2)
+    # now, auto and succ = false, or gettext=included
+    if not succ:
+        # we do not need to set LIBPATH now.
+        included_gettext = True
+        intl_libs = ['included_intl']
+
 
 #
 # check for msgfmt command
-if not fast_start:
-    env['MSGFMT'] = conf.CheckCommand('msgfmt')
-    env_cache['MSGFMT'] = env['MSGFMT']
-else:
-    env['MSGFMT'] = env_cache['MSGFMT']
+env['MSGFMT'] = conf.CheckCommand('msgfmt')
+env['MSGMERGE'] = conf.CheckCommand('msgmerge')
+env['XGETTEXT'] = conf.CheckCommand('xgettext')
+env['MSGUNIQ'] = conf.CheckCommand('msguniq')
+
+# if under windows, check the nsis compiler
+if platform_name == 'win32':
+    env['NSIS'] = conf.CheckNSIS()
 
 # cygwin packaging requires the binaries to be stripped
 if platform_name == 'cygwin':
-    if not fast_start:
-        env['STRIP'] = conf.CheckCommand('strip')
-        env_cache['STRIP'] = env['STRIP']
-    else:
-        env['STRIP'] = env_cache['STRIP']
-
-# check uic and moc commands for qt frontends
-if not fast_start:
-    if frontend[:2] == 'qt' and (conf.CheckCommand('uic') == None \
-        or conf.CheckCommand('moc') == None):
-        print 'uic or moc command is not found for frontend', frontend
-        Exit(1)
+    env['STRIP'] = conf.CheckCommand('strip')
 
 #
 # Customized builders
 #
 # install customized builders
 env['BUILDERS']['substFile'] = Builder(action = utils.env_subst)
+env['BUILDERS']['installTOC'] = Builder(action = utils.env_toc)
+env['BUILDERS']['potfiles'] = Builder(action = utils.env_potfiles)
 
 
 #----------------------------------------------------------
@@ -877,14 +749,12 @@ if platform_name == 'win32' and mode == 'debug' and use_vc:
 # check the existence of config.h
 config_h = os.path.join(env.Dir('$BUILDDIR/common').path, 'config.h')
 boost_config_h = os.path.join(env.Dir('$BUILDDIR/boost').path, 'config.h')
-if not fast_start or not os.path.isfile(boost_config_h) \
-    or not os.path.isfile(config_h):
-    #
-    print "Creating %s..." % boost_config_h
-    #
-    utils.createConfigFile(conf,
-        config_file = boost_config_h,
-        config_pre = '''/* boost/config.h.  Generated by SCons.  */
+#
+print "Creating %s..." % boost_config_h
+#
+utils.createConfigFile(conf,
+    config_file = boost_config_h,
+    config_pre = '''/* boost/config.h.  Generated by SCons.  */
 
 /* -*- C++ -*- */
 /*
@@ -901,19 +771,22 @@ if not fast_start or not os.path.isfile(boost_config_h) \
 #ifndef _BOOST_CONFIG_H
 #define _BOOST_CONFIG_H
 ''',
-        headers = [
-            ('ostream', 'HAVE_OSTREAM', 'cxx'),
-            ('locale', 'HAVE_LOCALE', 'cxx'),
-            ('sstream', 'HAVE_SSTREAM', 'cxx'),
-            #('newapis.h', 'HAVE_NEWAPIS_H', 'c'),
-        ],
-        custom_tests = [
-            (env.has_key('assertions') and env['assertions'],
-                'ENABLE_ASSERTIONS',
-                'Define if you want assertions to be enabled in the code'
-            ),
-        ],
-        config_post = '''
+    headers = [
+        ('ostream', 'HAVE_OSTREAM', 'cxx'),
+        ('locale', 'HAVE_LOCALE', 'cxx'),
+        ('sstream', 'HAVE_SSTREAM', 'cxx'),
+        #('newapis.h', 'HAVE_NEWAPIS_H', 'c'),
+    ],
+    custom_tests = [
+        (env.has_key('assertions') and env['assertions'],
+            'ENABLE_ASSERTIONS',
+            'Define if you want assertions to be enabled in the code'
+        ),
+    ],
+    types = [
+        ('wchar_t', 'HAVE_WCHAR_T', None),
+    ],
+    config_post = '''
 
 #if defined(HAVE_OSTREAM) && defined(HAVE_LOCALE) && defined(HAVE_SSTREAM)
 #  define USE_BOOST_FORMAT 1
@@ -941,51 +814,62 @@ if not fast_start or not os.path.isfile(boost_config_h) \
 #  define WANT_GETFILEATTRIBUTESEX_WRAPPER 1
 #endif
 
+#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4
+#  define LIBC_WCTYPE_USES_UCS4
+#endif
+
 #endif
 '''
-    )
-    #
-    print "\nGenerating %s..." % config_h
+)
+#
+print "\nGenerating %s..." % config_h
 
-    # AIKSAURUS_H_LOCATION
-    if (conf.CheckCXXHeader("Aiksaurus.h")):
-        aik_location = '<Aiksaurus.h>'
-    elif (conf.CheckCXXHeader("Aiksaurus/Aiksaurus.h")):
-        aik_location = '<Aiksaurus/Aiksaurus.h>'
-    else:
-        aik_location = ''
-
-    # determine headers to use
-    spell_opt = ARGUMENTS.get('spell', 'auto')
-    env['USE_ASPELL'] = False
-    env['USE_PSPELL'] = False
-    env['USE_ISPELL'] = False
-    if spell_opt in ['auto', 'aspell'] and conf.CheckLib(aspell_lib):
-        spell_engine = 'USE_ASPELL'
-    elif spell_opt in ['auto', 'pspell'] and conf.CheckLib('pspell'):
-        spell_engine = 'USE_PSPELL'
-    elif spell_opt in ['auto', 'ispell'] and conf.CheckLib('ispell'):
-        spell_engine = 'USE_ISPELL'
-    else:
-        spell_engine = None
+# AIKSAURUS_H_LOCATION
+if (conf.CheckCXXHeader("Aiksaurus.h")):
+    aik_location = '<Aiksaurus.h>'
+elif (conf.CheckCXXHeader("Aiksaurus/Aiksaurus.h")):
+    aik_location = '<Aiksaurus/Aiksaurus.h>'
+else:
+    aik_location = ''
+
+# determine headers to use
+spell_opt = ARGUMENTS.get('spell', 'auto')
+env['USE_ASPELL'] = False
+env['USE_PSPELL'] = False
+env['USE_ISPELL'] = False
+if spell_opt in ['auto', 'aspell'] and conf.CheckLib(aspell_lib):
+    spell_engine = 'USE_ASPELL'
+elif spell_opt in ['auto', 'pspell'] and conf.CheckLib('pspell'):
+    spell_engine = 'USE_PSPELL'
+elif spell_opt in ['auto', 'ispell'] and conf.CheckLib('ispell'):
+    spell_engine = 'USE_ISPELL'
+else:
+    spell_engine = None
 
-    if spell_engine is not None:
-        env[spell_engine] = True
-    else:
-        if spell_opt == 'auto':
-            print "Warning: Can not locate any spell checker"
-        elif spell_opt != 'no':
-            print "Warning: Can not locate specified spell checker:", spell_opt
-            Exit(1)
+if spell_engine is not None:
+    env[spell_engine] = True
+else:
+    if spell_opt == 'auto':
+        print "Warning: Can not locate any spell checker"
+    elif spell_opt != 'no':
+        print "Warning: Can not locate specified spell checker:", spell_opt
+        Exit(1)
 
-    # check arg types of select function
-    (select_arg1, select_arg234, select_arg5) = conf.CheckSelectArgType()
+# check arg types of select function
+(select_arg1, select_arg234, select_arg5) = conf.CheckSelectArgType()
 
-    #
-    # create config.h
-    result = utils.createConfigFile(conf,
-        config_file = config_h,
-        config_pre = '''/* config.h.  Generated by SCons.  */
+# check the size of wchar_t
+sizeof_wchar_t = conf.CheckSizeOfWChar()
+# something wrong
+if sizeof_wchar_t == 0:
+    print 'Error: Can not determine the size of wchar_t.'
+    Exit(1)
+
+#
+# create config.h
+result = utils.createConfigFile(conf,
+    config_file = config_h,
+    config_pre = '''/* config.h.  Generated by SCons.  */
 
 /* -*- C++ -*- */
 /*
@@ -1002,154 +886,163 @@ if not fast_start or not os.path.isfile(boost_config_h) \
 #ifndef _CONFIG_H
 #define _CONFIG_H
 ''',
-        headers = [
-            ('io.h', 'HAVE_IO_H', 'c'),
-            ('limits.h', 'HAVE_LIMITS_H', 'c'),
-            ('locale.h', 'HAVE_LOCALE_H', 'c'),
-            ('process.h', 'HAVE_PROCESS_H', 'c'),
-            ('stdlib.h', 'HAVE_STDLIB_H', 'c'),
-            ('sys/stat.h', 'HAVE_SYS_STAT_H', 'c'),
-            ('sys/time.h', 'HAVE_SYS_TIME_H', 'c'),
-            ('sys/types.h', 'HAVE_SYS_TYPES_H', 'c'),
-            ('sys/utime.h', 'HAVE_SYS_UTIME_H', 'c'),
-            ('sys/socket.h', 'HAVE_SYS_SOCKET_H', 'c'),
-            ('unistd.h', 'HAVE_UNISTD_H', 'c'),
-            ('utime.h', 'HAVE_UTIME_H', 'c'),
-            ('direct.h', 'HAVE_DIRECT_H', 'c'),
-            ('istream', 'HAVE_ISTREAM', 'cxx'),
-            ('ios', 'HAVE_IOS', 'cxx'),
-        ],
-        functions = [
-            ('open', 'HAVE_OPEN', None),
-            ('close', 'HAVE_CLOSE', None),
-            ('popen', 'HAVE_POPEN', None),
-            ('pclose', 'HAVE_PCLOSE', None),
-            ('_open', 'HAVE__OPEN', None),
-            ('_close', 'HAVE__CLOSE', None),
-            ('_popen', 'HAVE__POPEN', None),
-            ('_pclose', 'HAVE__PCLOSE', None),
-            ('getpid', 'HAVE_GETPID', None),
-            ('_getpid', 'HAVE__GETPID', None),
-            ('mkdir', 'HAVE_MKDIR', None),
-            ('_mkdir', 'HAVE__MKDIR', None),
-            ('mktemp', 'HAVE_MKTEMP', None),
-            ('mkstemp', 'HAVE_MKSTEMP', None),
-            ('strerror', 'HAVE_STRERROR', None),
-            ('count', 'HAVE_STD_COUNT', '''
+    headers = [
+        ('io.h', 'HAVE_IO_H', 'c'),
+        ('limits.h', 'HAVE_LIMITS_H', 'c'),
+        ('locale.h', 'HAVE_LOCALE_H', 'c'),
+        ('process.h', 'HAVE_PROCESS_H', 'c'),
+        ('stdlib.h', 'HAVE_STDLIB_H', 'c'),
+        ('sys/stat.h', 'HAVE_SYS_STAT_H', 'c'),
+        ('sys/time.h', 'HAVE_SYS_TIME_H', 'c'),
+        ('sys/types.h', 'HAVE_SYS_TYPES_H', 'c'),
+        ('sys/utime.h', 'HAVE_SYS_UTIME_H', 'c'),
+        ('sys/socket.h', 'HAVE_SYS_SOCKET_H', 'c'),
+        ('unistd.h', 'HAVE_UNISTD_H', 'c'),
+        ('utime.h', 'HAVE_UTIME_H', 'c'),
+        ('direct.h', 'HAVE_DIRECT_H', 'c'),
+        ('istream', 'HAVE_ISTREAM', 'cxx'),
+        ('ios', 'HAVE_IOS', 'cxx'),
+    ],
+    functions = [
+        ('open', 'HAVE_OPEN', None),
+        ('chmod', 'HAVE_CHMOD', None),
+        ('close', 'HAVE_CLOSE', None),
+        ('popen', 'HAVE_POPEN', None),
+        ('pclose', 'HAVE_PCLOSE', None),
+        ('_open', 'HAVE__OPEN', None),
+        ('_close', 'HAVE__CLOSE', None),
+        ('_popen', 'HAVE__POPEN', None),
+        ('_pclose', 'HAVE__PCLOSE', None),
+        ('getpid', 'HAVE_GETPID', None),
+        ('_getpid', 'HAVE__GETPID', None),
+        ('mkdir', 'HAVE_MKDIR', None),
+        ('_mkdir', 'HAVE__MKDIR', None),
+        ('mktemp', 'HAVE_MKTEMP', None),
+        ('mkstemp', 'HAVE_MKSTEMP', None),
+        ('strerror', 'HAVE_STRERROR', None),
+        ('count', 'HAVE_STD_COUNT', '''
 #include <algorithm>
 int count()
 {
-    char a[] = "hello";
-    return std::count(a, a+5, 'l');
+char a[] = "hello";
+return std::count(a, a+5, 'l');
 }
 '''),
-            ('getcwd', 'HAVE_GETCWD', None),
-            ('setenv', 'HAVE_SETENV', None),
-            ('putenv', 'HAVE_PUTENV', None),
-            ('fcntl', 'HAVE_FCNTL', None),
-        ],
-        types = [
-            ('std::istreambuf_iterator<std::istream>', 'HAVE_DECL_ISTREAMBUF_ITERATOR',
-                '#include <streambuf>\n#include <istream>')
-        ],
-        libs = [
-            ('gdi32', 'HAVE_LIBGDI32'),
-            (('Aiksaurus', 'libAiksaurus'), 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB'),
-        ],
-        custom_tests = [
-            (conf.CheckType('pid_t', includes='#include <sys/types.h>'),
-                'HAVE_PID_T',
-                'Define is sys/types.h does not have pid_t',
-                '',
-                '#define pid_t int',
-            ),
-            (conf.CheckCXXGlobalCstd(),
-                'CXX_GLOBAL_CSTD',
-                'Define if your C++ compiler puts C library functions in the global namespace'
-            ),
-            (conf.CheckMkdirOneArg(),
-                'MKDIR_TAKES_ONE_ARG',
-                'Define if mkdir takes only one argument.'
-            ),
-            (conf.CheckIconvConst(),
-                'ICONV_CONST',
-                'Define as const if the declaration of iconv() needs const.',
-                '#define ICONV_CONST const',
-                '#define ICONV_CONST',
-            ),
-            (conf.CheckLC_MESSAGES(),
-                'HAVE_LC_MESSAGES',
-                'Define if your <locale.h> file defines LC_MESSAGES.'
-            ),
-            (devel_version, 'DEVEL_VERSION', 'Whether or not a development version'),
-            (env['nls'],
-                'ENABLE_NLS',
-                "Define to 1 if translation of program messages to the user's native anguage is requested.",
-            ),
-            (env['nls'] and not included_gettext,
-                'HAVE_GETTEXT',
-                'Define to 1 if using system gettext library'
-            ),
-            (env.has_key('warnings') and env['warnings'],
-                'WITH_WARNINGS',
-                'Define this if you want to see the warning directives put here and there by the developpers to get attention'
-            ),
-            (env.has_key('concept_checks') and env['concept_checks'],
-                '_GLIBCXX_CONCEPT_CHECKS',
-                'libstdc++ concept checking'
-            ),
-            (env.has_key('stdlib_debug') and env['stdlib_debug'],
-                '_GLIBCXX_DEBUG',
-                'libstdc++ debug mode'
-            ),
-            (env.has_key('stdlib_debug') and env['stdlib_debug'],
-                '_GLIBCXX_DEBUG_PEDANTIC',
-                'libstdc++ pedantic debug mode'
-            ),
-            (os.name != 'nt', 'BOOST_POSIX',
-                'Indicates to boost < 1.34 which API to use (posix or windows).'
-            ),
-            (os.name != 'nt', 'BOOST_POSIX_API',
-                'Indicates to boost 1.34 which API to use (posix or windows).'
-            ),
-            (os.name != 'nt', 'BOOST_POSIX_PATH',
-                'Indicates to boost 1.34 which path style to use (posix or windows).'
-            ),
-            (spell_engine is not None, spell_engine,
-                'Spell engine to use'
-            ),
-            # we need to know the byte order for unicode conversions
-            (sys.byteorder == 'big', 'WORDS_BIGENDIAN',
-                'Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX).'
-            ),
-        ],
-        extra_items = [
-            ('#define PACKAGE "%s%s"' % (package, program_suffix),
-                'Name of package'),
-            ('#define PACKAGE_BUGREPORT "%s"' % package_bugreport,
-                'Define to the address where bug reports for this package should be sent.'),
-            ('#define PACKAGE_NAME "%s"' % package_name,
-                'Define to the full name of this package.'),
-            ('#define PACKAGE_STRING "%s"' % package_string,
-                'Define to the full name and version of this package.'),
-            ('#define PACKAGE_TARNAME "%s"' % package_tarname,
-                'Define to the one symbol short name of this package.'),
-            ('#define PACKAGE_VERSION "%s"' % package_version,
-                'Define to the version of this package.'),
-            ('#define BOOST_ALL_NO_LIB 1',
-                'disable automatic linking of boost libraries.'),
-            ('#define USE_%s_PACKAGING 1' % packaging_method.upper(),
-                'Packaging method'),
-            ('#define AIKSAURUS_H_LOCATION ' + aik_location,
-                'Aiksaurus include file'),
-            ('#define SELECT_TYPE_ARG1 %s' % select_arg1,
-                "Define to the type of arg 1 for `select'."),
-            ('#define SELECT_TYPE_ARG234 %s' % select_arg234,
-                "Define to the type of arg 2, 3, 4 for `select'."),
-            ('#define SELECT_TYPE_ARG5 %s' % select_arg5,
-                "Define to the type of arg 5 for `select'."),
-        ],
-        config_post = '''/************************************************************
+        ('getcwd', 'HAVE_GETCWD', None),
+        ('setenv', 'HAVE_SETENV', None),
+        ('putenv', 'HAVE_PUTENV', None),
+        ('fcntl', 'HAVE_FCNTL', None),
+        ('mkfifo', 'HAVE_MKFIFO', None),
+    ],
+    declarations = [
+        ('mkstemp', 'HAVE_DECL_MKSTEMP', ['unistd.h', 'stdlib.h']),
+    ],
+    types = [
+        ('std::istreambuf_iterator<std::istream>', 'HAVE_DECL_ISTREAMBUF_ITERATOR',
+            '#include <streambuf>\n#include <istream>'),
+        ('wchar_t', 'HAVE_WCHAR_T', None),
+        ('mode_t', 'HAVE_MODE_T', "#include <sys/types.h>"),
+    ],
+    libs = [
+        ('gdi32', 'HAVE_LIBGDI32'),
+        (('Aiksaurus', 'libAiksaurus'), 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB'),
+    ],
+    custom_tests = [
+        (conf.CheckType('pid_t', includes='#include <sys/types.h>'),
+            'HAVE_PID_T',
+            'Define is sys/types.h does not have pid_t',
+            '',
+            '#define pid_t int',
+        ),
+        (conf.CheckCXXGlobalCstd(),
+            'CXX_GLOBAL_CSTD',
+            'Define if your C++ compiler puts C library functions in the global namespace'
+        ),
+        (conf.CheckMkdirOneArg(),
+            'MKDIR_TAKES_ONE_ARG',
+            'Define if mkdir takes only one argument.'
+        ),
+        (conf.CheckIconvConst(),
+            'ICONV_CONST',
+            'Define as const if the declaration of iconv() needs const.',
+            '#define ICONV_CONST const',
+            '#define ICONV_CONST',
+        ),
+        (conf.CheckLC_MESSAGES(),
+            'HAVE_LC_MESSAGES',
+            'Define if your <locale.h> file defines LC_MESSAGES.'
+        ),
+        (devel_version, 'DEVEL_VERSION', 'Whether or not a development version'),
+        (env['nls'],
+            'ENABLE_NLS',
+            "Define to 1 if translation of program messages to the user's native anguage is requested.",
+        ),
+        (env['nls'] and not included_gettext,
+            'HAVE_GETTEXT',
+            'Define to 1 if using system gettext library'
+        ),
+        (env.has_key('warnings') and env['warnings'],
+            'WITH_WARNINGS',
+            'Define this if you want to see the warning directives put here and there by the developpers to get attention'
+        ),
+        (env.has_key('concept_checks') and env['concept_checks'],
+            '_GLIBCXX_CONCEPT_CHECKS',
+            'libstdc++ concept checking'
+        ),
+        (env.has_key('stdlib_debug') and env['stdlib_debug'],
+            '_GLIBCXX_DEBUG',
+            'libstdc++ debug mode'
+        ),
+        (env.has_key('stdlib_debug') and env['stdlib_debug'],
+            '_GLIBCXX_DEBUG_PEDANTIC',
+            'libstdc++ pedantic debug mode'
+        ),
+        (os.name != 'nt', 'BOOST_POSIX',
+            'Indicates to boost < 1.34 which API to use (posix or windows).'
+        ),
+        (os.name != 'nt', 'BOOST_POSIX_API',
+            'Indicates to boost 1.34 which API to use (posix or windows).'
+        ),
+        (os.name != 'nt', 'BOOST_POSIX_PATH',
+            'Indicates to boost 1.34 which path style to use (posix or windows).'
+        ),
+        (spell_engine is not None, spell_engine,
+            'Spell engine to use'
+        ),
+        # we need to know the byte order for unicode conversions
+        (sys.byteorder == 'big', 'WORDS_BIGENDIAN',
+            'Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX).'
+        ),
+    ],
+    extra_items = [
+        ('#define PACKAGE "%s%s"' % (package, program_suffix),
+            'Name of package'),
+        ('#define PACKAGE_BUGREPORT "%s"' % package_bugreport,
+            'Define to the address where bug reports for this package should be sent.'),
+        ('#define PACKAGE_NAME "%s"' % package_name,
+            'Define to the full name of this package.'),
+        ('#define PACKAGE_STRING "%s"' % package_string,
+            'Define to the full name and version of this package.'),
+        ('#define PACKAGE_TARNAME "%s"' % package_tarname,
+            'Define to the one symbol short name of this package.'),
+        ('#define PACKAGE_VERSION "%s"' % package_version,
+            'Define to the version of this package.'),
+        ('#define BOOST_ALL_NO_LIB 1',
+            'disable automatic linking of boost libraries.'),
+        ('#define USE_%s_PACKAGING 1' % packaging_method.upper(),
+            'Packaging method'),
+        ('#define AIKSAURUS_H_LOCATION ' + aik_location,
+            'Aiksaurus include file'),
+        ('#define SELECT_TYPE_ARG1 %s' % select_arg1,
+            "Define to the type of arg 1 for `select'."),
+        ('#define SELECT_TYPE_ARG234 %s' % select_arg234,
+            "Define to the type of arg 2, 3, 4 for `select'."),
+        ('#define SELECT_TYPE_ARG5 %s' % select_arg5,
+            "Define to the type of arg 5 for `select'."),
+        ('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
+            'Define to be the size of type wchar_t'),
+    ],
+    config_post = '''/************************************************************
 ** You should not need to change anything beyond this point */
 
 #ifndef HAVE_STRERROR
@@ -1172,29 +1065,28 @@ int mkstemp(char*);
 
 #endif
 '''
-    )
+)
 
-    # these keys are needed in env
-    for key in ['USE_ASPELL', 'USE_PSPELL', 'USE_ISPELL', 'HAVE_FCNTL',\
-        'HAVE_LIBGDI32', 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB']:
-        # USE_ASPELL etc does not go through result
-        if result.has_key(key):
-            env[key] = result[key]
-        env_cache[key] = env[key]
+# these keys are needed in env
+for key in ['USE_ASPELL', 'USE_PSPELL', 'USE_ISPELL', 'HAVE_FCNTL',\
+    'HAVE_LIBGDI32', 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB']:
+    # USE_ASPELL etc does not go through result
+    if result.has_key(key):
+        env[key] = result[key]
 
+#
+# if nls=yes and gettext=included, create intl/config.h
+# intl/libintl.h etc
+#
+intl_config_h = os.path.join(env.Dir('$BUILDDIR/intl').path, 'config.h')
+if env['nls'] and included_gettext:
     #
-    # if nls=yes and gettext=included, create intl/config.h
-    # intl/libintl.h etc
+    print "Creating %s..." % intl_config_h
     #
-    intl_config_h = os.path.join(env.Dir('$BUILDDIR/intl').path, 'config.h')
-    if env['nls'] and included_gettext:
-        #
-        print "Creating %s..." % intl_config_h
-        #
-        # create intl/config.h
-        result = utils.createConfigFile(conf,
-            config_file = intl_config_h,
-            config_pre = '''/* intl/config.h.  Generated by SCons.  */
+    # create intl/config.h
+    result = utils.createConfigFile(conf,
+        config_file = intl_config_h,
+        config_pre = '''/* intl/config.h.  Generated by SCons.  */
 
 /* -*- C++ -*- */
 /*
@@ -1211,111 +1103,95 @@ int mkstemp(char*);
 #ifndef _CONFIG_H
 #define _CONFIG_H
 ''',
-            headers = [
-                ('unistd.h', 'HAVE_UNISTD_H', 'c'),
-                ('inttypes.h', 'HAVE_INTTYPES_H', 'c'),
-                ('string.h', 'HAVE_STRING_H', 'c'),
-                ('strings.h', 'HAVE_STRINGS_H', 'c'),
-                ('argz.h', 'HAVE_ARGZ_H', 'c'),
-                ('limits.h', 'HAVE_LIMITS_H', 'c'),
-                ('alloca.h', 'HAVE_ALLOCA_H', 'c'),
-                ('stddef.h', 'HAVE_STDDEF_H', 'c'),
-                ('stdint.h', 'HAVE_STDINT_H', 'c'),
-                ('sys/param.h', 'HAVE_SYS_PARAM_H', 'c'),
-            ],
-            functions = [
-                ('getcwd', 'HAVE_GETCWD', None),
-                ('stpcpy', 'HAVE_STPCPY', None),
-                ('strcasecmp', 'HAVE_STRCASECMP', None),
-                ('strdup', 'HAVE_STRDUP', None),
-                ('strtoul', 'HAVE_STRTOUL', None),
-                ('alloca', 'HAVE_ALLOCA', None),
-                ('__fsetlocking', 'HAVE___FSETLOCKING', None),
-                ('mempcpy', 'HAVE_MEMPCPY', None),
-                ('__argz_count', 'HAVE___ARGZ_COUNT', None),
-                ('__argz_next', 'HAVE___ARGZ_NEXT', None),
-                ('__argz_stringify', 'HAVE___ARGZ_STRINGIFY', None),
-                ('setlocale', 'HAVE_SETLOCALE', None),
-                ('tsearch', 'HAVE_TSEARCH', None),
-                ('getegid', 'HAVE_GETEGID', None),
-                ('getgid', 'HAVE_GETGID', None),
-                ('getuid', 'HAVE_GETUID', None),
-                ('wcslen', 'HAVE_WCSLEN', None),
-                ('asprintf', 'HAVE_ASPRINTF', None),
-                ('wprintf', 'HAVE_WPRINTF', None),
-                ('snprintf', 'HAVE_SNPRINTF', None),
-                ('printf', 'HAVE_POSIX_PRINTF', None),
-                ('fcntl', 'HAVE_FCNTL', None),
-            ],
-            types = [
-                ('intmax_t', 'HAVE_INTMAX_T', None),
-                ('long double', 'HAVE_LONG_DOUBLE', None),
-                ('long long', 'HAVE_LONG_LONG', None),
-                ('wchar_t', 'HAVE_WCHAR_T', None),
-                ('wint_t', 'HAVE_WINT_T', None),
-                ('uintmax_t', 'HAVE_INTTYPES_H_WITH_UINTMAX', '#include <inttypes.h>'),
-                ('uintmax_t', 'HAVE_STDINT_H_WITH_UINTMAX', '#include <stdint.h>'),
-            ],
-            libs = [
-                ('c', 'HAVE_LIBC'),
-            ],
-            custom_tests = [
-                (conf.CheckLC_MESSAGES(),
-                    'HAVE_LC_MESSAGES',
-                    'Define if your <locale.h> file defines LC_MESSAGES.'
-                ),
-                (conf.CheckIconvConst(),
-                    'ICONV_CONST',
-                    'Define as const if the declaration of iconv() needs const.',
-                    '#define ICONV_CONST const',
-                    '#define ICONV_CONST',
-                ),
-                (conf.CheckType('intmax_t', includes='#include <stdint.h>') or \
-                conf.CheckType('intmax_t', includes='#include <inttypes.h>'),
-                    'HAVE_INTMAX_T',
-                    "Define to 1 if you have the `intmax_t' type."
-                ),
-                (env.has_key('nls') and env['nls'],
-                    'ENABLE_NLS',
-                    "Define to 1 if translation of program messages to the user's native anguage is requested.",
-                ),
-            ],
-            extra_items = [
-                ('#define HAVE_ICONV 1', 'Define if iconv or libiconv is found')
-            ],
-            config_post = '#endif'
-        )
+        headers = [
+            ('unistd.h', 'HAVE_UNISTD_H', 'c'),
+            ('inttypes.h', 'HAVE_INTTYPES_H', 'c'),
+            ('string.h', 'HAVE_STRING_H', 'c'),
+            ('strings.h', 'HAVE_STRINGS_H', 'c'),
+            ('argz.h', 'HAVE_ARGZ_H', 'c'),
+            ('limits.h', 'HAVE_LIMITS_H', 'c'),
+            ('alloca.h', 'HAVE_ALLOCA_H', 'c'),
+            ('stddef.h', 'HAVE_STDDEF_H', 'c'),
+            ('stdint.h', 'HAVE_STDINT_H', 'c'),
+            ('sys/param.h', 'HAVE_SYS_PARAM_H', 'c'),
+        ],
+        functions = [
+            ('getcwd', 'HAVE_GETCWD', None),
+            ('stpcpy', 'HAVE_STPCPY', None),
+            ('strcasecmp', 'HAVE_STRCASECMP', None),
+            ('strdup', 'HAVE_STRDUP', None),
+            ('strtoul', 'HAVE_STRTOUL', None),
+            ('alloca', 'HAVE_ALLOCA', None),
+            ('__fsetlocking', 'HAVE___FSETLOCKING', None),
+            ('mempcpy', 'HAVE_MEMPCPY', None),
+            ('__argz_count', 'HAVE___ARGZ_COUNT', None),
+            ('__argz_next', 'HAVE___ARGZ_NEXT', None),
+            ('__argz_stringify', 'HAVE___ARGZ_STRINGIFY', None),
+            ('setlocale', 'HAVE_SETLOCALE', None),
+            ('tsearch', 'HAVE_TSEARCH', None),
+            ('getegid', 'HAVE_GETEGID', None),
+            ('getgid', 'HAVE_GETGID', None),
+            ('getuid', 'HAVE_GETUID', None),
+            ('wcslen', 'HAVE_WCSLEN', None),
+            ('asprintf', 'HAVE_ASPRINTF', None),
+            ('wprintf', 'HAVE_WPRINTF', None),
+            ('snprintf', 'HAVE_SNPRINTF', None),
+            ('printf', 'HAVE_POSIX_PRINTF', None),
+            ('fcntl', 'HAVE_FCNTL', None),
+        ],
+        types = [
+            ('intmax_t', 'HAVE_INTMAX_T', None),
+            ('long double', 'HAVE_LONG_DOUBLE', None),
+            ('long long', 'HAVE_LONG_LONG', None),
+            ('wchar_t', 'HAVE_WCHAR_T', None),
+            ('wint_t', 'HAVE_WINT_T', None),
+            ('uintmax_t', 'HAVE_INTTYPES_H_WITH_UINTMAX', '#include <inttypes.h>'),
+            ('uintmax_t', 'HAVE_STDINT_H_WITH_UINTMAX', '#include <stdint.h>'),
+        ],
+        libs = [
+            ('c', 'HAVE_LIBC'),
+        ],
+        custom_tests = [
+            (conf.CheckLC_MESSAGES(),
+                'HAVE_LC_MESSAGES',
+                'Define if your <locale.h> file defines LC_MESSAGES.'
+            ),
+            (conf.CheckIconvConst(),
+                'ICONV_CONST',
+                'Define as const if the declaration of iconv() needs const.',
+                '#define ICONV_CONST const',
+                '#define ICONV_CONST',
+            ),
+            (conf.CheckType('intmax_t', includes='#include <stdint.h>') or \
+            conf.CheckType('intmax_t', includes='#include <inttypes.h>'),
+                'HAVE_INTMAX_T',
+                "Define to 1 if you have the `intmax_t' type."
+            ),
+            (env.has_key('nls') and env['nls'],
+                'ENABLE_NLS',
+                "Define to 1 if translation of program messages to the user's native anguage is requested.",
+            ),
+        ],
+        extra_items = [
+            ('#define HAVE_ICONV 1', 'Define if iconv or libiconv is found'),
+            ('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
+                'Define to be the size of type wchar_t'),
+        ],
+        config_post = '#endif'
+    )
 
-        # these keys are needed in env
-        for key in ['HAVE_ASPRINTF', 'HAVE_WPRINTF', 'HAVE_SNPRINTF', \
-            'HAVE_POSIX_PRINTF', 'HAVE_LIBC']:
-            # USE_ASPELL etc does not go through result
-            if result.has_key(key):
-                env[key] = result[key]
-            env_cache[key] = env[key]
+    # these keys are needed in env
+    for key in ['HAVE_ASPRINTF', 'HAVE_WPRINTF', 'HAVE_SNPRINTF', \
+        'HAVE_POSIX_PRINTF', 'HAVE_LIBC']:
+        # USE_ASPELL etc does not go through result
+        if result.has_key(key):
+            env[key] = result[key]
 
-else:
-    #
-    # this comes as a big surprise, without this line
-    # (doing nothing obvious), adding fast_start=yes
-    # to a build with fast_start=no will result in a rebuild
-    # Note that the exact header file to check does not matter
-    conf.CheckCHeader('io.h')
-    # only a few variables need to be rescanned
-    for key in ['USE_ASPELL', 'USE_PSPELL', 'USE_ISPELL', 'HAVE_FCNTL',\
-        'HAVE_LIBGDI32', 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB']:
-        env[key] = env_cache[key]
-    #
-    # nls related keys
-    if env['nls'] and included_gettext:
-        # only a few variables need to be rescanned
-        for key in ['HAVE_ASPRINTF', 'HAVE_WPRINTF', 'HAVE_SNPRINTF', \
-            'HAVE_POSIX_PRINTF', 'HAVE_LIBC']:
-            env[key] = env_cache[key]
 
 # this looks misplaced, but intl/libintl.h is needed by src/message.C
 if env['nls'] and included_gettext:
     # libgnuintl.h.in => libintl.h
+    env.Depends('$TOP_SRCDIR/intl/libintl.h', '$BUILDDIR/intl/config.h')
     env.substFile('$BUILDDIR/intl/libintl.h', '$TOP_SRCDIR/intl/libgnuintl.h.in')
     env.Command('$BUILDDIR/intl/libgnuintl.h', '$BUILDDIR/intl/libintl.h',
         [Copy('$TARGET', '$SOURCE')])
@@ -1328,47 +1204,23 @@ env = conf.Finish()
 # Now set up our build process accordingly
 #----------------------------------------------------------
 
-#
-# QT_LIB
-#
-# NOTE: Tool('qt') or Tool('qt4') will be loaded later
-# in their respective directory and specialized env.
-if frontend == 'qt3':
-    # note: env.Tool('qt') my set QT_LIB to qt
-    if platform_name == 'win32':
-        qt_libs = ['qt-mt3']
-    else:
-        qt_libs = ['qt-mt']
-    frontend_libs = qt_libs
-elif frontend == 'qt4':
-    qt_libs = ['QtCore', 'QtGui']
-    # set the right lib names
-    if platform_name == 'win32':
-        if mode == 'debug' and use_vc:
-            qt_lib_suffix = 'd4'
-        else:
-            qt_lib_suffix = '4'
-    else:
-        if mode == 'debug':
-            qt_lib_suffix = '_debug'
-        else:
-            qt_lib_suffix = ''
-    frontend_libs = [x + qt_lib_suffix for x in qt_libs]
-
-
+if env['ICONV_LIB'] is None:
+    system_libs = []
+else:
+    system_libs = [env['ICONV_LIB']]
 if platform_name in ['win32', 'cygwin']:
     # the final link step needs stdc++ to succeed under mingw
     # FIXME: shouldn't g++ automatically link to stdc++?
     if use_vc:
-        system_libs = [env['ICONV_LIB'], 'ole32', 'shlwapi', 'shell32', 'advapi32', 'zdll']
+        system_libs += ['ole32', 'shlwapi', 'shell32', 'advapi32', 'zdll']
     else:
-        system_libs = [env['ICONV_LIB'], 'shlwapi', 'stdc++', 'z']
+        system_libs += ['shlwapi', 'stdc++', 'z']
 elif platform_name == 'cygwin' and env['X11']:
-    system_libs = [env['ICONV_LIB'], 'GL',  'Xmu', 'Xi', 'Xrender', 'Xrandr',
+    system_libs += ['GL',  'Xmu', 'Xi', 'Xrender', 'Xrandr',
         'Xcursor', 'Xft', 'freetype', 'fontconfig', 'Xext', 'X11', 'SM', 'ICE', 
         'resolv', 'pthread', 'z']
 else:
-    system_libs = [env['ICONV_LIB'], 'z']
+    system_libs += ['z']
 
 libs = [
     ('HAVE_LIBGDI32', 'gdi32'),
@@ -1411,8 +1263,6 @@ else:
 if env['nls'] and included_gettext:
     env['CPPPATH'].append('$BUILDDIR/intl')
 #
-# QT_INC_PATH is not needed for *every* source file
-env['CPPPATH'].remove(qt_inc_path)
 
 #
 # A Link script for cygwin see
@@ -1426,6 +1276,128 @@ if platform_name == 'cygwin':
     env.AppendUnique(LINKFLAGS = ['-Wl,--enable-runtime-pseudo-reloc',
         '-Wl,--script,%s' % ld_script, '-Wl,-s'])
 
+
+#---------------------------------------------------------
+# Frontend related variables (QTDIR etc)
+#---------------------------------------------------------
+
+#
+# create a separate environment so that other files do not have
+# to be built with all the include directories etc
+#
+if frontend == 'qt4':
+    frontend_env = env.Copy()
+
+    # handle qt related user specified paths
+    # set environment so that moc etc can be found even if its path is not set properly
+    if frontend_env.has_key('qt_dir') and frontend_env['qt_dir']:
+        frontend_env['QTDIR'] = frontend_env['qt_dir']
+        if os.path.isdir(os.path.join(frontend_env['qt_dir'], 'bin')):
+            os.environ['PATH'] += os.pathsep + os.path.join(frontend_env['qt_dir'], 'bin')
+            frontend_env.PrependENVPath('PATH', os.path.join(frontend_env['qt_dir'], 'bin'))
+        if os.path.isdir(os.path.join(frontend_env['qt_dir'], 'lib')):
+            frontend_env.PrependENVPath('PKG_CONFIG_PATH', os.path.join(frontend_env['qt_dir'], 'lib'))
+
+    # if separate qt_lib_path is given
+    if frontend_env.has_key('qt_lib_path') and frontend_env['qt_lib_path']:
+        qt_lib_path = frontend_env.subst('$qt_lib_path')
+        frontend_env.AppendUnique(LIBPATH = [qt_lib_path])
+        frontend_env.PrependENVPath('PKG_CONFIG_PATH', qt_lib_path)
+    else:
+        qt_lib_path = None
+
+    # if separate qt_inc_path is given
+    if frontend_env.has_key('qt_inc_path') and frontend_env['qt_inc_path']:
+        qt_inc_path = frontend_env['qt_inc_path']
+    else:
+        qt_inc_path = None
+
+    # local qt4 toolset from
+    # http://www.iua.upf.es/~dgarcia/Codders/sconstools.html
+    #
+    # NOTE: I have to patch qt4.py since it does not automatically
+    # process .C file!!! (add to cxx_suffixes )
+    #
+    frontend_env.Tool('qt4', [scons_dir])
+    frontend_env['QT_AUTOSCAN'] = 0
+    frontend_env['QT4_AUTOSCAN'] = 0
+    frontend_env['QT4_UICDECLFLAGS'] = '-tr lyx::qt_'
+
+    if qt_lib_path is None:
+        qt_lib_path = os.path.join(frontend_env.subst('$QTDIR'), 'lib')
+    if qt_inc_path is None:
+        qt_inc_path = os.path.join(frontend_env.subst('$QTDIR'), 'include')
+
+
+    conf = Configure(frontend_env,
+        custom_tests = { 
+            'CheckPackage' : utils.checkPackage,
+            'CheckCommand' : utils.checkCommand,
+        }
+    )
+
+    succ = False
+    # first: try pkg_config
+    if frontend_env['HAS_PKG_CONFIG']:
+        succ = conf.CheckPackage('QtCore') or conf.CheckPackage('QtCore4')
+        # FIXME: use pkg_config information?
+        #frontend_env['QT4_PKG_CONFIG'] = succ
+    # second: try to link to it
+    if not succ:
+        # Under linux, I can test the following perfectly
+        # Under windows, lib names need to passed as libXXX4.a ...
+        if platform_name == 'win32':
+            succ = conf.CheckLibWithHeader('QtCore4', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
+        else:
+            succ = conf.CheckLibWithHeader('QtCore', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
+    # still can not find it
+    if not succ:
+        print 'Did not find qt libraries, exiting!'
+        Exit(1)
+    #
+    # Now, determine the correct suffix:
+    qt_libs = ['QtCore', 'QtGui']
+    if platform_name == 'win32':
+        if mode == 'debug' and use_vc and \
+            conf.CheckLibWithHeader('QtCored4', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
+            qt_lib_suffix = 'd4'
+            use_qt_debug_libs = True
+        else:
+            qt_lib_suffix = '4'
+            use_qt_debug_libs = False
+    else:
+        if mode == 'debug' and conf.CheckLibWithHeader('QtCore_debug', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
+            qt_lib_suffix = '_debug'
+            use_qt_debug_libs = True
+        else:
+            qt_lib_suffix = ''
+            use_qt_debug_libs = False
+    frontend_env.EnableQt4Modules(qt_libs, debug = (mode == 'debug' and use_qt_debug_libs))
+    frontend_libs = [x + qt_lib_suffix for x in qt_libs]
+    qtcore_lib = ['QtCore' + qt_lib_suffix]
+
+    # check uic and moc commands for qt frontends
+    if conf.CheckCommand('uic') == None or conf.CheckCommand('moc') == None:
+        print 'uic or moc command is not found for frontend', frontend
+        Exit(1)
+    
+    # now, if msvc2005 is used, we will need that QT_LIB_PATH/QT_LIB.manifest file
+    if use_vc:
+        if mode == 'debug':
+            if qt_lib_path is not None:
+                manifest = os.path.join(qt_lib_path, 'QtGuid4.dll.manifest')
+            else:
+                manifest = 'QtGuid4.dll.manifest'
+        else:
+            if qt_lib_path is not None:
+                manifest = os.path.join(qt_lib_path, 'QtGui4.dll.manifest')
+            else:
+                manifest = 'QtGui4.dll.manifest'
+        if os.path.isfile(manifest):
+            frontend_env['LINKCOM'] = [frontend_env['LINKCOM'], 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % manifest]
+
+    frontend_env = conf.Finish()
+
 #
 # Report results
 #
@@ -1465,14 +1437,13 @@ Frontend:
     frontend, packaging_method,
     prefix, env['LYX_DIR'])
 
-if frontend in ['qt3', 'qt4']:
+if frontend in ['qt4']:
     env['VERSION_INFO'] += '''  include dir:                    %s
   library dir:                    %s
   X11:                            %s
 ''' % (qt_inc_path, qt_lib_path, env['X11'])
 
-if not fast_start:
-    print env['VERSION_INFO']
+print env['VERSION_INFO']
 
 #
 # Mingw command line may be too short for our link usage,
@@ -1498,10 +1469,6 @@ if logfile != '' or platform_name == 'win32':
 # -h will print out help info
 Help(opts.GenerateHelpText(env))
 
-# save environment settings (for fast_start option)
-cache_file = open(env_cache_file, 'w')
-cPickle.dump(env_cache, cache_file)
-cache_file.close()
 
 
 #----------------------------------------------------------
@@ -1535,9 +1502,11 @@ def appExists(apppath, appname):
     return os.path.isfile(File(env.subst('$BUILDDIR/common/%s/${PROGPREFIX}%s$PROGSUFFIX' % (apppath, appname))).abspath)
 
 targets = BUILD_TARGETS
+build_install = 'install' in targets or 'installer' in targets
+build_installer = 'installer' in targets
 # msvc need to pass full target name, so I have to look for path/lyx etc
-build_lyx = targets == [] or True in ['lyx' in x for x in targets] \
-    or 'install' in targets or 'all' in targets
+build_lyx = build_installer or targets == [] or True in ['lyx' in x for x in targets] \
+    or build_install or 'all' in targets
 build_boost = (included_boost and not libExists('boost_regex')) or 'boost' in targets
 build_intl = (included_gettext and not libExists('included_intl')) or 'intl' in targets
 build_support = build_lyx or True in [x in targets for x in ['support', 'client', 'tex2lyx']]
@@ -1547,12 +1516,13 @@ build_frontends = build_lyx or 'frontends' in targets
 build_graphics = build_lyx or 'graphics' in targets
 build_controllers = build_lyx or 'controllers' in targets
 build_client = True in ['client' in x for x in targets] \
-    or 'install' in targets or 'all' in targets
+    or build_install or 'all' in targets or build_installer
 build_tex2lyx = True in ['tex2lyx' in x for x in targets] \
-    or 'install' in targets or 'all' in targets
+    or build_install or 'all' in targets or build_installer
 build_lyxbase = build_lyx or 'lyxbase' in targets
-build_po = 'po' in targets or 'install' in targets or 'all' in targets
-build_qt3 = (build_lyx and frontend == 'qt3') or 'qt3' in targets
+update_po = 'update_po' in targets
+update_manifest = 'update_manifest' in targets
+build_po = 'po' in targets or build_install or 'all' in targets
 build_qt4 = (build_lyx and frontend == 'qt4') or 'qt4' in targets
 build_msvs_projects = use_vc and 'msvs_projects' in targets
 
@@ -1579,7 +1549,6 @@ if rebuild_targets is not None:
     build_graphics = ifBuildLib('graphics', 'graphics', build_graphics)
     build_controllers = ifBuildLib('controllers', 'controllers', build_controllers)
     build_lyxbase = ifBuildLib('lyxbase', 'lyxbase_pre', build_lyxbase)
-    build_qt3 = ifBuildLib('qt3', 'qt3', build_qt3)
     build_qt4 = ifBuildLib('qt4', 'qt4', build_qt4)
     #
     def ifBuildApp(name, appname, old_value):
@@ -1595,10 +1564,8 @@ if rebuild_targets is not None:
     build_tex2lyx = ifBuildApp('tex2lyx', 'tex2lyx', build_tex2lyx)
     build_client = ifBuildApp('client', 'lyxclient', build_client)
 
-# sync frontend and frontend (maybe build qt4 with frontend=qt3)
-if build_qt3:
-    frontend = 'qt3'
-elif build_qt4:
+# sync frontend and frontend (?)
+if build_qt4:
     frontend = 'qt4'
 
 
@@ -1678,11 +1645,12 @@ if build_support:
     #
     print "Processing files in src/support..."
 
-    env.substFile('$BUILDDIR/common/support/package.C', '$TOP_SRCDIR/src/support/package.C.in')
+    frontend_env.Depends('$BUILDDIR/common/support/Package.cpp', '$BUILDDIR/common/config.h')
+    Package_cpp = env.substFile('$BUILDDIR/common/support/Package.cpp', '$TOP_SRCDIR/src/support/Package.cpp.in')
 
-    support = env.StaticLibrary(
+    support = frontend_env.StaticLibrary(
         target = '$LOCALLIBPATH/support',
-        source = ['$BUILDDIR/common/support/%s' % x for x in src_support_files]
+        source = ['$BUILDDIR/common/support/%s' % x for x in src_support_files] + Package_cpp,
     )
     Alias('support', support)
 
@@ -1753,103 +1721,45 @@ if build_controllers:
 
 
 #
-# src/frontend/qt3/4
+# src/frontend/qt4
 #
-if build_qt3 or build_qt4:
+if build_qt4:
     env.BuildDir('$BUILDDIR/$frontend', '$TOP_SRCDIR/src/frontend/$frontend', duplicate = 0)
 
-if build_qt3:
-    print "Processing files in src/frontends/qt3..."
-
-    qt3env = env.Copy()
-    # disable auto scan to speed up non build time
-    qt3env['QT_AUTOSCAN'] = 0
-    qt3env['QT_MOCHPREFIX'] = ''
-
-    # load qt3 tools
-    qt3env.Tool('qt')
-
-    qt3env.AppendUnique(CPPPATH = [
-        '$BUILDDIR/common',
-        '$BUILDDIR/common/images',
-        '$BUILDDIR/common/frontends',
-        '$BUILDDIR/common/frontends/qt3',
-        '$BUILDDIR/common/frontends/controllers',
-        qt_inc_path]
-    )
-
-    qt3_moc_files = ["$BUILDDIR/common/frontends/qt3/%s" % x for x in src_frontends_qt3_moc_files]
-    
-    # manually moc and uic files for better performance
-    qt3_moced_files = [qt3env.Moc(x.replace('.C', '_moc.cpp'), x.replace('.C', '.h')) for x in qt3_moc_files]
-
-    qt3_uiced_files = [qt3env.Uic('$BUILDDIR/common/frontends/qt3/ui/'+x) for x in \
-        src_frontends_qt3_ui_files]
-
-    qt3_uiced_cc_files = []
-    for x in qt3_uiced_files:
-        qt3_uiced_cc_files.extend(x[1:])
-
-    qt3 = qt3env.StaticLibrary(
-        target = '$LOCALLIBPATH/qt3',
-        source = ['$BUILDDIR/common/frontends/qt3/%s' % x for x in src_frontends_qt3_files] \
-            + qt3_uiced_cc_files
-    )
-    Alias('qt3', qt3)
-
-
-if build_qt4:
     print "Processing files in src/frontends/qt4..."
 
-    qt4env = env.Copy()
-    qt4env['QT_AUTOSCAN'] = 0
-
-    # local qt4 toolset from
-    # http://www.iua.upf.es/~dgarcia/Codders/sconstools.html
-    #
-    # NOTE: I have to patch qt4.py since it does not automatically
-    # process .C file!!! (add to cxx_suffixes )
-    #
-    qt4env.Tool('qt4', [scons_dir])
-    qt4env.EnableQt4Modules(qt_libs, debug = (mode == 'debug'))
-
-    qt4env.AppendUnique(CPPPATH = [
-        '$BUILDDIR/common',
-        '$BUILDDIR/common/images',
-        '$BUILDDIR/common/frontends',
-        '$BUILDDIR/common/frontends/qt4',
-        '$BUILDDIR/common/frontends/controllers',
-        qt_inc_path
-        ]
-    )
-
-    # FIXME: replace by something from pkg_config
-    qt4env.Append(CCFLAGS = [
-        '-DHAVE_CONFIG_H',
-        '-DQT_CLEAN_NAMESPACE',
-        '-DQT_GENUINE_STR',
-        '-DQT_NO_STL',
-        '-DQT_NO_KEYWORDS',
-        ]
-    )
-
-
     qt4_moc_files = ["$BUILDDIR/common/frontends/qt4/%s" % x for x in src_frontends_qt4_moc_files]
 
     #
     # Compile resources
     #
-    resources = [qt4env.Uic4(x.split('.')[0]) for x in \
+    resources = [frontend_env.Uic4(x.split('.')[0]) for x in \
         ["$BUILDDIR/common/frontends/qt4/ui/%s" % x for x in src_frontends_qt4_ui_files]]
 
     #
     # moc qt4_moc_files, the moced files are included in the original files
     #
-    qt4_moced_files = [qt4env.Moc4(x.replace('.C', '_moc.cpp'), x.replace('.C', '.h')) for x in qt4_moc_files]
+    qt4_moced_files = [frontend_env.Moc4(x.replace('.cpp', '_moc.cpp'), x.replace('.cpp', '.h')) for x in qt4_moc_files]
 
-    qt4 = qt4env.StaticLibrary(
+    qt4 = frontend_env.StaticLibrary(
         target = '$LOCALLIBPATH/qt4',
-        source = ['$BUILDDIR/common/frontends/qt4/%s' % x for x in src_frontends_qt4_files]
+        source = ['$BUILDDIR/common/frontends/qt4/%s' % x for x in src_frontends_qt4_files],
+        CPPPATH = [
+            '$CPPPATH',
+            '$BUILDDIR/common',
+            '$BUILDDIR/common/images',
+            '$BUILDDIR/common/frontends',
+            '$BUILDDIR/common/frontends/qt4',
+            '$BUILDDIR/common/frontends/controllers'
+        ],
+        CCFLAGS =  [
+            '$CCFLAGS',
+            '-DHAVE_CONFIG_H',
+            '-DQT_CLEAN_NAMESPACE',
+            '-DQT_GENUINE_STR',
+            '-DQT_NO_STL',
+            '-DQT_NO_KEYWORDS',
+        ]
     )
     Alias('qt4', qt4)
 
@@ -1858,18 +1768,19 @@ if build_client:
     #
     # src/client
     #
-    env.BuildDir('$BUILDDIR/common', '$TOP_SRCDIR/src', duplicate = 0)
+    frontend_env.BuildDir('$BUILDDIR/common', '$TOP_SRCDIR/src', duplicate = 0)
 
     print "Processing files in src/client..."
 
     if env['HAVE_FCNTL']:
-        client = env.Program(
+        client = frontend_env.Program(
             target = '$BUILDDIR/common/client/lyxclient',
             LIBS = ['support'] + intl_libs + system_libs +
-                socket_libs + boost_libraries,
-            source = ['$BUILDDIR/common/client/%s' % x for x in src_client_files]
+                socket_libs + boost_libraries + qtcore_lib,
+            source = ['$BUILDDIR/common/client/%s' % x for x in src_client_files] + \
+                utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/client.rc')
         )
-        Alias('client', env.Command(os.path.join('$BUILDDIR', os.path.split(str(client[0]))[1]),
+        Alias('client', frontend_env.Command(os.path.join('$BUILDDIR', os.path.split(str(client[0]))[1]),
             client, [Copy('$TARGET', '$SOURCE')]))
     else:
         client = None
@@ -1888,27 +1799,25 @@ if build_tex2lyx:
     #
     print "Processing files in src/tex2lyx..."
 
-    tex2lyx_env = env.Copy()
     #
-    tex2lyx_env.Prepend(CPPPATH = ['$BUILDDIR/common/tex2lyx'])
-    tex2lyx_env.AppendUnique(LIBPATH = ['#$LOCALLIBPATH'])
-
-    for file in ['FloatList.C', 'Floating.C', 'counters.C', 'lyxlayout.h', 'lyxlayout.C',
-        'lyxtextclass.h', 'lyxtextclass.C', 'lyxlex.C', 'lyxlex_pimpl.C']:
-        env.Command('$BUILDDIR/common/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
+    for file in src_tex2lyx_copied_files + src_tex2lyx_copied_header_files:
+        frontend_env.Command('$BUILDDIR/common/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
             [Copy('$TARGET', '$SOURCE')])
 
-    tex2lyx = tex2lyx_env.Program(
+    tex2lyx = frontend_env.Program(
         target = '$BUILDDIR/common/tex2lyx/tex2lyx',
-        LIBS = ['support'] + boost_libraries + system_libs,
-        source = ['$BUILDDIR/common/tex2lyx/%s' % x for x in src_tex2lyx_files]
+        LIBS = ['support'] + boost_libraries + intl_libs + system_libs + qtcore_lib,
+        source = ['$BUILDDIR/common/tex2lyx/%s' % x for x in src_tex2lyx_files + src_tex2lyx_copied_files] + \
+            utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/tex2lyx.rc'),
+        CPPPATH = ['$BUILDDIR/common/tex2lyx', '$CPPPATH'],
+        LIBPATH = ['#$LOCALLIBPATH', '$LIBPATH'],
     )
-    Alias('tex2lyx', env.Command(os.path.join('$BUILDDIR', os.path.split(str(tex2lyx[0]))[1]),
+    Alias('tex2lyx', frontend_env.Command(os.path.join('$BUILDDIR', os.path.split(str(tex2lyx[0]))[1]),
         tex2lyx, [Copy('$TARGET', '$SOURCE')]))
     Alias('tex2lyx', tex2lyx)
 else:
     # define tex2lyx even if tex2lyx is not built with rebuild=no
-    tex2lyx = [env.subst('$BUILDDIR/common/tex2lyx/${PROGPREFIX}tex2lyx$PROGSUFFIX')]
+    tex2lyx = [frontend_env.subst('$BUILDDIR/common/tex2lyx/${PROGPREFIX}tex2lyx$PROGSUFFIX')]
 
 
 if build_lyxbase:
@@ -1917,20 +1826,21 @@ if build_lyxbase:
     #
     print "Processing files in src..."
 
-    env.substFile('$BUILDDIR/common/version.C', '$TOP_SRCDIR/src/version.C.in')
+    env.Depends('$BUILDDIR/common/version.cpp', '$BUILDDIR/common/config.h')
+    version_cpp = env.substFile('$BUILDDIR/common/version.cpp', '$TOP_SRCDIR/src/version.cpp.in')
 
     if env.has_key('USE_ASPELL') and env['USE_ASPELL']:
-        src_post_files.append('aspell.C')
+        src_post_files.append('ASpell.cpp')
     elif env.has_key('USE_PSPELL') and env['USE_PSPELL']:
-        src_post_files.append('pspell.C')
+        src_post_files.append('PSpell.cpp')
     elif env.has_key('USE_ISPELL') and env['USE_ISPELL']:
-        src_post_files.append('ispell.C')
+        src_post_files.append('ISpell.cpp')
 
     # msvc requires at least one source file with main()
-    # so I exclude main.C from lyxbase
+    # so I exclude main.cpp from lyxbase
     lyxbase_pre = env.StaticLibrary(
         target = '$LOCALLIBPATH/lyxbase_pre',
-        source = ['$BUILDDIR/common/%s' % x for x in src_pre_files]
+        source = ['$BUILDDIR/common/%s' % x for x in src_pre_files] + version_cpp
     )
     lyxbase_post = env.StaticLibrary(
         target = '$LOCALLIBPATH/lyxbase_post',
@@ -1944,9 +1854,10 @@ if build_lyx:
     #
     # Build lyx with given frontend
     #
-    lyx = env.Program(
-        target = '$BUILDDIR/$frontend/lyx',
-        source = ['$BUILDDIR/common/main.C'],
+    lyx = frontend_env.Program(
+        target = '$BUILDDIR/lyx',
+        source = ['$BUILDDIR/common/main.cpp'] + \
+            utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/lyx.rc'),
         LIBS = [
             'lyxbase_pre',
             'mathed',
@@ -1964,14 +1875,10 @@ if build_lyx:
             socket_libs +
             system_libs
     )
-    # [/path/to/lyx.ext] => lyx-qt3.ext
-    target_name = os.path.split(str(lyx[0]))[1].replace('lyx', 'lyx-%s' % frontend)
-    Alias('lyx', env.Command(os.path.join('$BUILDDIR', target_name), lyx,
-        [Copy('$TARGET', '$SOURCE')]))
     Alias('lyx', lyx)
 else:
     # define lyx even if lyx is not built with rebuild=no
-    lyx = [env.subst('$BUILDDIR/$frontend/${PROGPREFIX}lyx$PROGSUFFIX')]
+    lyx = [frontend_env.subst('$BUILDDIR/${PROGPREFIX}lyx$PROGSUFFIX')]
 
 
 if build_msvs_projects:
@@ -1990,9 +1897,9 @@ if build_msvs_projects:
         the full path to start debug them.
         '''
         if rebuildTargetOnly:
-            cmds = 'fast_start=yes rebuild='+target
+            cmds = 'rebuild='+target
         else:
-            cmds = 'fast_start=yes'
+            cmds = ''
         if full_target is None:
             build_target = target
         else:
@@ -2011,40 +1918,6 @@ if build_msvs_projects:
         )
         Alias('msvs_projects', proj)
     #
-    boost_src = []
-    for lib in boost_libs:
-        boost_src += ['$TOP_SRCDIR/boost/libs/%s/src/%s' % (lib, x) for x in eval('boost_libs_%s_src_files' % lib)]
-    build_project('boost', src = boost_src)
-    #
-    build_project('intl', src = ['$TOP_SRCDIR/intl/%s' % x for x in intl_files], 
-        inc = ['$TOP_SRCDIR/intl/%s' % x for x in intl_header_files])
-    #
-    build_project('support', src = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files], 
-        inc = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files])
-    #
-    build_project('mathed', src = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files], 
-        inc = ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files])
-    #
-    build_project('insets', src = ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files], 
-        inc = ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files])
-    #
-    build_project('frontends', src = ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files], 
-        inc = ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files])
-    #
-    build_project('graphics', src = ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files], 
-        inc = ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files])
-    #
-    build_project('controllers', src = ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files], 
-        inc = ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files])
-    #
-    build_project('qt3', src = ['$TOP_SRCDIR/src/frontends/qt3/%s' % x for x in src_frontends_qt3_files + src_frontends_qt3_moc_files],
-        inc = ['$TOP_SRCDIR/src/frontends/qt3/%s' % x for x in src_frontends_qt3_header_files],
-        res = ['$TOP_SRCDIR/src/frontends/qt3/ui/%s' % x for x in src_frontends_qt3_ui_files])
-    #
-    build_project('qt4', src = ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files + src_frontends_qt4_moc_files],
-        inc = ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
-        res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files])
-    #
     build_project('client', src = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_files],
         inc = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_header_files],
         rebuildTargetOnly = False,
@@ -2055,51 +1928,179 @@ if build_msvs_projects:
         rebuildTargetOnly = False,
         full_target = File(env.subst('$BUILDDIR/common/tex2lyx/tex2lyx$PROGSUFFIX')).abspath)
     #
-    build_project('lyxbase', src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files],
-        inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files])
-    #
-    if frontend == 'qt3':
-        build_project('lyx', 
-            src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files] + \
-                ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files] + \
-                ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_files] + \
-                ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files] + \
-                ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files] + \
-                ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files] + \
-                ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files] + \
-                ['$TOP_SRCDIR/src/frontends/qt3/%s' % x for x in src_frontends_qt3_files + src_frontends_qt3_moc_files],
-            inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files] + \
-                ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files] + \
-                ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files] + \
-                ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files] + \
-                ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/qt3/%s' % x for x in src_frontends_qt3_header_files],
-            res = ['$TOP_SRCDIR/src/frontends/qt3/ui/%s' % x for x in src_frontends_qt3_ui_files],
-            rebuildTargetOnly = False,
-            full_target = File(env.subst('$BUILDDIR/$frontend/lyx$PROGSUFFIX')).abspath)
-    else:
-        build_project('lyx', 
-            src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files] + \
-                ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files] + \
-                ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_files] + \
-                ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files] + \
-                ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files] + \
-                ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files] + \
-                ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files] + \
-                ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files + src_frontends_qt4_moc_files],
-            inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files] + \
-                ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files] + \
-                ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files] + \
-                ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files] + \
-                ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files] + \
-                ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
-            res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
-            rebuildTargetOnly = False,
-            full_target = File(env.subst('$BUILDDIR/$frontend/lyx$PROGSUFFIX')).abspath)
+    build_project('lyx', 
+        src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files + ['version.cpp']] + \
+            ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files + ['Package.cpp'] ] + \
+            ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_files] + \
+            ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files] + \
+            ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files] + \
+            ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files] + \
+            ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_files] + \
+            ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files + src_frontends_qt4_moc_files],
+        inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files] + \
+            ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files] + \
+            ['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files] + \
+            ['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files] + \
+            ['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files] + \
+            ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files] + \
+            ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files] + \
+            ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
+        res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
+        rebuildTargetOnly = False,
+        full_target = File(env.subst('$BUILDDIR/lyx$PROGSUFFIX')).abspath)
+
+
+if update_manifest:
+    #
+    # update scons_manifest.py
+    #
+    # When you run 'scons update_manifest', it tells you which files are missing
+    # and which files are not in the source tree. It also generates a 
+    # scons_manifest.py.new file with all the missing files added to 
+    # XXX_extra_files. It will *not* change other sections of existing
+    # manifest.py
+    #
+    print 'Validating development/scons/scons_manifest.py...'
+    #
+    manifest = open(env.File('$TOP_SRCDIR/development/scons/scons_manifest.py.new').abspath, 'w')
+    print >> manifest, 'from SCons.Util import Split\n'
+    #
+    ignore_dirs = ['boost/boost', 'm4', 'development', 
+        utils.relativePath(env.Dir('$BUILDDIR').abspath, env.Dir('$TOP_SRCDIR').abspath)]
+    ignore_types = ['.svn', '.deps', '.cache', '.tmp', '.bak', '.gmo', '.pot',
+        '.pyc', '.pyo', '.o', '_moc.cpp', 'Makefile.in', 'config.h.in',
+        'LaTeXConfig.lyx', 'version.cpp', 'Package.cpp']
+    ext_types = ['_header_files', '_files', '_pre_files', '_post_files', '_moc_files', '_inc_files',
+        '_copied_files', '_copied_header_files', '_extra_header_files', '_extra_src_files', '_extra_files']
+    for root,path,files in os.walk(env.Dir('$TOP_SRCDIR').abspath):
+        if os.path.split(root)[-1][0] == '.' \
+            or True in [x in root for x in ignore_types] \
+            or True in [utils.isSubDir(root, x) for x in ignore_dirs]:
+            continue
+        dirname = utils.relativePath(root, env.subst('$TOP_SRCDIR')).replace(os.sep, '_')
+        if dirname == '':
+            dirname = 'TOP'
+        # files in the current manifest.py
+        cur_files = []
+        for ext in ext_types:
+            if 'copied' not in ext and dirname + ext in locals():
+                cur_files.extend(eval(dirname + ext))
+        cur_files.sort()
+        # compare files with cur_files
+        files = [x for x in files if x[0] != '.' and True not in [len(x) >= len(y) and x[-len(y):] == y for y in ignore_types]]
+        files.sort()
+        if cur_files != files:
+            missing = []
+            for f in files:
+                if f not in cur_files:
+                    missing.append(f)
+            extra = []
+            for f in cur_files:
+                if f not in files:
+                    extra.append(f)
+            if len(missing) > 0:
+                print 'Missing: %s in %s' % (', '.join(missing), root)
+                if dirname + '_extra_files' in locals():
+                    exec('%s_extra_files.extend(missing)' % dirname)
+                else:
+                    exec('%s_extra_files = missing' % dirname)
+            if len(extra) > 0:
+                print 'Extra: %s in %s' % (', '.join(extra), root)
+        # write to a new manifest file
+        for ext in ext_types:
+            if dirname + ext in locals():
+                exec('%s%s.sort()' % (dirname, ext))
+                print >> manifest, "%s%s = Split('''\n   " % (dirname, ext),
+                print >> manifest, eval(r"'\n    '.join(%s%s)" % (dirname, ext))
+                print >> manifest, "''')\n\n"
+    manifest.close()
+    Alias('update_manifest', None)
+
+
+if update_po:
+    #
+    # update po files
+    #
+    print 'Updating po/*.po files...'
+
+    # whether or not update po files
+    if not env['XGETTEXT'] or not env['MSGMERGE'] or not env['MSGUNIQ']:
+        print 'xgettext or msgmerge does not exist. Cannot merge po files'
+        Exit(1)
+    # rebuild POTFILES.in
+    POTFILES_in = env.potfiles('$TOP_SRCDIR/po/POTFILES.in', 
+        ['$TOP_SRCDIR/src/%s' % x for x in  src_header_files + src_pre_files + src_post_files + \
+            src_extra_src_files] + \
+        ['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files + src_support_files + \
+            src_support_extra_header_files + src_support_extra_src_files] + \
+        ['$TOP_SRCDIR/src/mathed/%s' % x for x in  src_mathed_header_files + src_mathed_files] + \
+        ['$TOP_SRCDIR/src/insets/%s' % x for x in  src_insets_header_files + src_insets_files] + \
+        ['$TOP_SRCDIR/src/frontends/%s' % x for x in  src_frontends_header_files + src_frontends_files] + \
+        ['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files + src_graphics_files] + \
+        ['$TOP_SRCDIR/src/frontends/controllers/%s' % x for x in src_frontends_controllers_header_files + src_frontends_controllers_files] + \
+        ['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files + src_frontends_qt4_files + src_frontends_qt4_moc_files] + \
+        ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_header_files + src_client_files ]  + \
+        ['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_header_files + src_tex2lyx_files ]
+    )
+    Alias('update_po', POTFILES_in)
+    # build language_l10n.pot, ui_l10n.pot, layouts_l10n.pot, qt4_l10n.pot
+    # and combine them to lyx.po
+    env['LYX_POT'] = 'python $TOP_SRCDIR/po/lyx_pot.py'
+    lyx_po = env.Command('$BUILDDIR/po/lyx.po',
+        env.Command('$BUILDDIR/po/all.po',
+            [env.Command('$BUILDDIR/po/qt4_l10n.pot', 
+                ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
+                '$LYX_POT -b $TOP_SRCDIR -t qt4 -o $TARGET $SOURCES'),
+             env.Command('$BUILDDIR/po/layouts_l10n.pot', 
+                ['$TOP_SRCDIR/lib/layouts/%s' % x for x in lib_layouts_files + lib_layouts_inc_files],
+                '$LYX_POT -b $TOP_SRCDIR -t layouts -o $TARGET $SOURCES'),
+             env.Command('$BUILDDIR/po/languages_l10n.pot', '$TOP_SRCDIR/lib/languages', 
+                '$LYX_POT -b $TOP_SRCDIR -t languages -o $TARGET $SOURCES'),
+             env.Command('$BUILDDIR/po/ui_l10n.pot', 
+                ['$TOP_SRCDIR/lib/ui/%s' % x for x in lib_ui_files],
+                '$LYX_POT -b $TOP_SRCDIR -t ui -o $TARGET $SOURCES'),
+             ], utils.env_cat),
+            ['$MSGUNIQ -o $TARGET $SOURCE',
+             '''$XGETTEXT --default-domain=${TARGET.base} \
+                --directory=$TOP_SRCDIR --add-comments=TRANSLATORS: \
+                --language=C++ --join-existing \
+                --keyword=_ --keyword=N_ --keyword=B_ --keyword=qt_ \
+                --files-from=$TOP_SRCDIR/po/POTFILES.in \
+                --copyright-holder="LyX Developers" \
+                --msgid-bugs-address="lyx-devel@lists.lyx.org" ''']
+        )
+    env.Depends(lyx_po, POTFILES_in)
+    # copy lyx.po to lyx.pot
+    lyx_pot = env.Command('$BUILDDIR/po/lyx.pot', lyx_po,
+        Copy('$TARGET', '$SOURCE'))
+    #
+    import glob
+    # files to translate
+    transfiles = glob.glob(os.path.join(env.Dir('$TOP_SRCDIR/po').abspath, '*.po'))
+    # possibly *only* handle these languages
+    languages = None
+    if env.has_key('languages'):
+        languages = env.make_list(env['languages'])
+    # merge. if I use lan.po as $TARGET, it will be removed
+    # before it is merged. In this builder,
+    # $BUILDDIR/po/lang.po is merged from po/lang.po and $BUILDDIR/po/lyx.pot
+    # and is copied to po/lang.po
+    env['BUILDERS']['msgmerge'] = Builder(action=[
+        '$MSGMERGE $TOP_SRCDIR/po/${TARGET.filebase}.po $SOURCE -o $TARGET',
+        Copy('$TOP_SRCDIR/po/${TARGET.filebase}.po', '$TARGET')]
+        )
+    # for each po file, generate pot
+    for po_file in transfiles:
+        # get filename
+        fname = os.path.split(po_file)[1]
+        # country code
+        country = fname.split('.')[0]
+        #
+        if not languages or country in languages:
+            # merge po files, the generated lan.po_new file is copied to lan.po file.
+            po = env.msgmerge('$BUILDDIR/po/%s.po' % country, lyx_pot)
+            env.Depends(po, POTFILES_in)
+            Alias('update_po', po)
 
 
 if build_po:
@@ -2123,7 +2124,7 @@ if build_po:
         print 'msgfmt does not exist. Can not process po files'
     else:
         # create a builder
-        env['BUILDERS']['Transfiles'] = Builder(action='$MSGFMT $SOURCE -o $TARGET',suffix='.gmo',src_suffix='.po')
+        env['BUILDERS']['Transfiles'] = Builder(action='$MSGFMT $SOURCE -c --statistics -o $TARGET',suffix='.gmo',src_suffix='.po')
         #
         for f in transfiles:
             # get filename
@@ -2135,7 +2136,7 @@ if build_po:
                 gmo_files.extend(env.Transfiles(f))
 
 
-if 'install' in targets:
+if build_install:
     #
     # this part is a bit messy right now. Since scons will provide
     # --DESTDIR option soon, at least the dest_dir handling can be 
@@ -2145,7 +2146,7 @@ if 'install' in targets:
     def joinPaths(path1, path2):
         ''' join path1 and path2, do not use os.path.join because
             under window, c:\destdir\d:\program is invalid '''
-        if path1 is None:
+        if path1 == '':
             return os.path.normpath(path2)
         # separate drive letter
         (drive, path) = os.path.splitdrive(os.path.normpath(path2))
@@ -2153,7 +2154,7 @@ if 'install' in targets:
         return os.path.join(os.path.normpath(path1), path[1:])
     #
     # install to dest_dir/prefix
-    dest_dir = env.get('DESTDIR', None)
+    dest_dir = env.get('DESTDIR', '')
     dest_prefix_dir = joinPaths(dest_dir, env.Dir(prefix).abspath)
     # create the directory if needed
     if not os.path.isdir(dest_prefix_dir):
@@ -2175,6 +2176,7 @@ if 'install' in targets:
         share_dest_dir = os.path.join(dest_prefix_dir, share_dir)
     man_dest_dir = os.path.join(dest_prefix_dir, man_dir)
     locale_dest_dir = os.path.join(dest_prefix_dir, locale_dir)
+    env['LYX2LYX_DEST'] = os.path.join(share_dest_dir, 'lyx2lyx')
     #
     import glob
     #
@@ -2206,42 +2208,115 @@ if 'install' in targets:
     dirs = []
     for (dir,files) in [
             ('.', lib_files),  
-            ('clipart', lib_clipart_files),
+            ('bind', lib_bind_files),
+            ('bind/de', lib_bind_de_files),
+            ('bind/fi', lib_bind_fi_files),
+            ('bind/pt', lib_bind_pt_files),
+            ('bind/sv', lib_bind_sv_files),
+            ('doc', lib_doc_files),
+            ('doc/clipart', lib_doc_clipart_files),
+            ('doc/cs', lib_doc_cs_files),
+            ('doc/da', lib_doc_da_files),
+            ('doc/de', lib_doc_de_files),
+            ('doc/de/clipart', lib_doc_de_clipart_files),
+            ('doc/es', lib_doc_es_files),
+            ('doc/es/clipart', lib_doc_es_clipart_files),
+            ('doc/eu', lib_doc_eu_files),
+            ('doc/fr', lib_doc_fr_files),
+            ('doc/he', lib_doc_he_files),
+            ('doc/hu', lib_doc_hu_files),
+            ('doc/it', lib_doc_it_files),
+            ('doc/nl', lib_doc_nl_files),
+            ('doc/nb', lib_doc_nb_files),
+            ('doc/pl', lib_doc_pl_files),
+            ('doc/pt', lib_doc_pt_files),
+            ('doc/ro', lib_doc_ro_files),
+            ('doc/ru', lib_doc_ru_files),
+            ('doc/sk', lib_doc_sk_files),
+            ('doc/sl', lib_doc_sl_files),
+            ('doc/sv', lib_doc_sv_files),
             ('examples', lib_examples_files),
+            ('examples/ca', lib_examples_ca_files),
+            ('examples/cs', lib_examples_cs_files),
+            ('examples/da', lib_examples_da_files),
+            ('examples/de', lib_examples_de_files),
+            ('examples/es', lib_examples_es_files),
+            ('examples/eu', lib_examples_eu_files),
+            ('examples/fa', lib_examples_fa_files),
+            ('examples/fr', lib_examples_fr_files),
+            ('examples/he', lib_examples_he_files),
+            ('examples/hu', lib_examples_hu_files),
+            ('examples/it', lib_examples_it_files),
+            ('examples/nl', lib_examples_nl_files),
+            ('examples/pl', lib_examples_pl_files),
+            ('examples/pt', lib_examples_pt_files),
+            ('examples/ru', lib_examples_ru_files),
+            ('examples/sl', lib_examples_sl_files),
+            ('examples/ro', lib_examples_ro_files),
+            ('fonts', lib_fonts_files),
             ('images', lib_images_files),
             ('images/math', lib_images_math_files),
-            ('bind', lib_bind_files),
             ('kbd', lib_kbd_files),
-            ('layouts', lib_layouts_files),
+            ('layouts', lib_layouts_files + lib_layouts_inc_files),
+            ('lyx2lyx', lib_lyx2lyx_files),
             ('scripts', lib_scripts_files),
             ('templates', lib_templates_files),
             ('tex', lib_tex_files),
-            ('ui', lib_ui_files),
-            ('doc', lib_doc_files),
-            ('lyx2lyx', lib_lyx2lyx_files)]:
+            ('ui', lib_ui_files)]:
         dirs.append(env.Install(os.path.join(share_dest_dir, dir),
             [env.subst('$TOP_SRCDIR/lib/%s/%s' % (dir, file)) for file in files]))
     Alias('install', dirs)
+
+    # subst and install lyx2lyx_version.py which is not in scons_manifest.py
+    env.Depends(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py', '$BUILDDIR/common/config.h')
+    env.substFile(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py',
+        '$TOP_SRCDIR/lib/lyx2lyx/lyx2lyx_version.py.in')
+    Alias('install', share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
+    sys.path.append(share_dest_dir + '/lyx2lyx')
+    
+    # generate TOC files for each doc
+    languages = depend.all_documents(env.Dir('$TOP_SRCDIR/lib/doc').abspath)
+    tocs = []
+    for lang in languages.keys():
+        if os.path.isdir(os.path.join(env.Dir('$TOP_SRCDIR/lib/doc').abspath, lang)):
+            toc = env.installTOC(os.path.join(share_dest_dir, 'doc', lang, 'TOC.lyx'),
+                languages[lang])
+            tocs.append(toc)
+            # doc_toc.build_toc needs a installed version of lyx2lyx to execute
+            env.Depends(toc, share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
+        else:
+            # this is for English
+            toc = env.installTOC(os.path.join(share_dest_dir, 'doc', 'TOC.lyx'),
+                languages[lang])
+            tocs.append(toc)
+            env.Depends(toc, share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
+    Alias('install', tocs)
     
     if platform_name == 'cygwin':
         # cygwin packaging requires a file /usr/share/doc/Cygwin/foot-vendor-suffix.README
-        Cygwin_README = os.path.join(dest_prefix_dir, 'doc', 'Cygwin', 
-            '%s%s.README' % (package, package_cygwin_version))
+        Cygwin_README = os.path.join(dest_prefix_dir, 'share', 'doc', 'Cygwin', 
+            '%s-%s.README' % (package, package_cygwin_version))
         env.InstallAs(Cygwin_README,
             os.path.join(env.subst('$TOP_SRCDIR'), 'README.cygwin'))
         Alias('install', Cygwin_README)
         # also a directory /usr/share/doc/lyx for README etc
-        Cygwin_Doc = os.path.join(dest_prefix_dir, 'doc', package)
+        Cygwin_Doc = os.path.join(dest_prefix_dir, 'share', 'doc', package)
         env.Install(Cygwin_Doc, [os.path.join(env.subst('$TOP_SRCDIR'), x) for x in \
             ['INSTALL', 'README', 'README.Cygwin', 'RELEASE-NOTES', 'COPYING', 'ANNOUNCE']])
         Alias('install', Cygwin_Doc)
+        # cygwin fonts also need to be installed
+        Cygwin_fonts = os.path.join(share_dest_dir, 'fonts')
+        env.Install(Cygwin_fonts, 
+            [env.subst('$TOP_SRCDIR/development/Win32/packaging/bakoma/%s' % file) \
+                  for file in win32_bakoma_fonts])
+        Alias('install', Cygwin_fonts)
+        # we also need a post installation script
+        tmp_script = utils.installCygwinPostinstallScript('/tmp')
+        postinstall_path = os.path.join(dest_dir, 'etc', 'postinstall')
+        env.Install(postinstall_path, tmp_script)
+        Alias('install', postinstall_path)
+
 
-    # lyx1.4.x does not have lyx2lyx_version.py.in
-    if os.path.isfile(env.subst('$TOP_SRCDIR/lib/lyx2lyx/lyx2lyx_version.py.in')):
-        # subst and install this file
-        env.substFile(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py',
-            '$TOP_SRCDIR/lib/lyx2lyx/lyx2lyx_version.py.in')
-        Alias('install', share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
     # man
     env.InstallAs(os.path.join(man_dest_dir, 'lyx' + version_suffix + '.1'),
         env.subst('$TOP_SRCDIR/lyx.man'))
@@ -2260,5 +2335,75 @@ if 'install' in targets:
         Alias('install', dest_file)
 
 
+if build_installer:
+    #
+    # build windows installer using NSIS
+    #
+    # NOTE:
+    # There is a nsis builder on scons wiki but it does not work with
+    # our lyx.nsi because it does not dig through all the include directives
+    # and find the dependencies automatically. Also, it can not parse
+    # OutFile in lyx.nsi since it is defined as SETUP_EXE which is in turn
+    # something rely on date.
+    # Because of this, I am doing a simple nsis builder here.
+    if platform_name != 'win32':
+        print 'installer target is only available for windows platform'
+        Exit(1)
+    if mode != 'release':
+        print 'installer has to be built in release mode (use option mode=release)'
+        Exit(1)
+    if env.has_key('NSIS') and env['NSIS'] is not None:
+        # create a builder to strip and install
+        env['BUILDERS']['installer'] = Builder(generator=utils.env_nsis)
+    else:
+        print 'No nsis compiler is found. Existing...'
+        Exit(2)
+    if not env.has_key('win_installer') or env['win_installer'] is None:
+        if devel_version:
+            env['win_installer'] = '%s-%s-%s-Installer.exe' % (package_name, package_version, time.strftime('%Y-%m-%d'))
+        else:
+            env['win_installer'] = '%s-%s-Installer.exe' % (package_name, package_version)
+    # provide default setting            
+    if not env.has_key('deps_dir') or env['deps_dir'] is None:
+        env['deps_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-deps-msvc-qt4')
+    if not os.path.isdir(env.Dir('$deps_dir').abspath):
+        print 'Development dependency package is not found.'
+        Exit(1)    
+    else:
+        env['deps_dir'] = env.Dir('$deps_dir').abspath
+    # build bundle?
+    if env.has_key('bundle_dir') and os.path.isdir(env.Dir('$bundle_dir').abspath):
+        env['bundle_dir'] = env.Dir('$bundle_dir').abspath
+    elif os.path.isdir(os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')):
+        env['bundle_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')
+    else:
+        env['bundle_dir'] = None
+    # if absolute path is given, use it, otherwise, write to current directory
+    if not (':' in env['win_installer'] or '/' in env['win_installer'] or '\\' in env['win_installer']):
+        env['win_installer'] = os.path.join(env.Dir('$BUILDDIR').abspath, env['win_installer'])
+    env.Append(NSISDEFINES={
+        'ExeFile':env['win_installer'],
+        'BundleExeFile':env['win_installer'].replace('.exe', '-bundle.exe'),
+        'FilesLyx':env.Dir(dest_prefix_dir).abspath,
+        'FilesDeps':env['deps_dir'],
+        'FilesBundle':env['bundle_dir'],
+        })
+    installer = env.installer(env['win_installer'],
+        '$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
+    # since I can not use a scanner, explicit dependent is required
+    env.Depends(installer, 'install')
+    env.Alias('installer', installer)
+    # also generate bundle?
+    if env.has_key('bundle') and env['bundle']:
+        if env['bundle_dir'] is None or not os.path.isdir(env['bundle_dir']):
+            print 'Bundle directory does not exist (default to %s\lyx-windows-bundle-deps.' % env.Dir('$TOP_SRCDIR').abspath
+            print 'Use bundle_dir option to specify'
+            Exit(1)
+        # generator of the builder will add bundle stuff depending on output name
+        bundle_installer = env.installer(env['win_installer'].replace('.exe', '-bundle.exe'),
+            '$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
+        env.Depends(bundle_installer, 'install')
+        env.Alias('installer', bundle_installer)
+
 Default('lyx')
 Alias('all', ['lyx', 'client', 'tex2lyx'])