]> git.lyx.org Git - lyx.git/blobdiff - development/scons/SConstruct
fix scons for Andre's recent renames
[lyx.git] / development / scons / SConstruct
index ae6e912ece781a2c65e2bc8ff2f56416af0cf556..f4b81eb6142f3b2d57ddd4a63908d8e2412e3361 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 *
@@ -42,7 +41,8 @@ from SCons.Node.FS import default_fs
 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
@@ -255,7 +255,7 @@ if (not ARGUMENTS.has_key('load_option') or \
         and opt_cache.has_key('qt_dir'):
         opt_cache.pop('qt_dir')
     # and we do not cache some options (dest_dir is obsolete)
-    for arg in ['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. :-)
@@ -362,7 +362,7 @@ 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.C.in:
 #       TOP_SRCDIR, LOCALEDIR, LYX_DIR, PROGRAM_SUFFIX
 #     lib/lyx2lyx/lyx2lyx_version.py.in
 #       PACKAGE_VERSION
@@ -400,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.C.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.C.in)
 if add_suffix:
     env['LYX_DIR'] = Dir(os.path.join(prefix, share_dir + program_suffix)).abspath
 else:
@@ -716,6 +716,9 @@ else:
 #
 # check for msgfmt command
 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':
@@ -730,6 +733,7 @@ if platform_name == 'cygwin':
 #
 # install customized builders
 env['BUILDERS']['substFile'] = Builder(action = utils.env_subst)
+env['BUILDERS']['installTOC'] = Builder(action = utils.env_toc)
 
 
 #----------------------------------------------------------
@@ -1510,6 +1514,7 @@ build_client = True in ['client' in x for x in targets] \
 build_tex2lyx = True in ['tex2lyx' in x for x in targets] \
     or build_install or 'all' in targets or build_installer
 build_lyxbase = build_lyx or 'lyxbase' in targets
+update_po = 'update_po' 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
@@ -1634,7 +1639,7 @@ if build_support:
     print "Processing files in src/support..."
 
     frontend_env.Depends('$BUILDDIR/common/support/package.C', '$BUILDDIR/common/config.h')
-    env.substFile('$BUILDDIR/common/support/package.C', '$TOP_SRCDIR/src/support/package.C.in')
+    env.substFile('$BUILDDIR/common/support/package.C', '$TOP_SRCDIR/src/support/Package.C.in')
 
     support = frontend_env.StaticLibrary(
         target = '$LOCALLIBPATH/support',
@@ -1727,7 +1732,7 @@ if build_qt4:
     #
     # moc qt4_moc_files, the moced files are included in the original files
     #
-    qt4_moced_files = [frontend_env.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 = frontend_env.StaticLibrary(
         target = '$LOCALLIBPATH/qt4',
@@ -1788,8 +1793,8 @@ if build_tex2lyx:
     print "Processing files in src/tex2lyx..."
 
     #
-    for file in ['FloatList.C', 'Floating.C', 'counters.C', 'lyxlayout.h', 'lyxlayout.C', 
-        'lyxtextclass.h', 'lyxtextclass.C', 'lyxlex.C', 'lyxlex_pimpl.C']:
+    for file in ['FloatList.cpp', 'Floating.cpp', 'Counters.cpp', 'LyXLayout.h', 'LyXLayout.cpp', 
+        'LyXTextClass.h', 'LyXTextClass.cpp', 'Lexer.cpp', 'Lexer.h']:
         frontend_env.Command('$BUILDDIR/common/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
             [Copy('$TARGET', '$SOURCE')])
 
@@ -1819,14 +1824,14 @@ if build_lyxbase:
     env.substFile('$BUILDDIR/common/version.C', '$TOP_SRCDIR/src/version.C.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]
@@ -1845,7 +1850,7 @@ if build_lyx:
     #
     lyx = frontend_env.Program(
         target = '$BUILDDIR/lyx',
-        source = ['$BUILDDIR/common/main.C'] + \
+        source = ['$BUILDDIR/common/main.cpp'] + \
             utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/lyx.rc'),
         LIBS = [
             'lyxbase_pre',
@@ -1971,6 +1976,77 @@ if build_msvs_projects:
         full_target = File(env.subst('$BUILDDIR/lyx$PROGSUFFIX')).abspath)
 
 
+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)
+    # 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],
+                '$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=qt_ \
+                --files-from=$TOP_SRCDIR/po/POTFILES.in \
+                --copyright-holder="LyX Developers" \
+                --msgid-bugs-address="lyx-devel@lists.lyx.org" ''']
+        )
+    # 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')]
+        )
+    # get dependency files from POTFILES.in
+    dep_files = ['$TOP_SRCDIR/%s' % x.strip() for x in open(env.File('$TOP_SRCDIR/po/POTFILES.in').abspath).readlines()]
+    dep_files.append('$TOP_SRCDIR/po/POTFILES.in')
+    # 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, dep_files)
+            Alias('update_po', po)
+
+
 if build_po:
     #
     # po/
@@ -2044,6 +2120,7 @@ if build_install:
         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
     #
@@ -2075,25 +2152,18 @@ if build_install:
     dirs = []
     for (dir,files) in [
             ('.', lib_files),  
-            ('clipart', lib_clipart_files),
-            ('images', lib_images_files),
-            ('images/math', lib_images_math_files),
-            ('kbd', lib_kbd_files),
-            ('layouts', lib_layouts_files),
-            ('scripts', lib_scripts_files),
-            ('templates', lib_templates_files),
-            ('tex', lib_tex_files),
-            ('ui', lib_ui_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/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),
@@ -2108,7 +2178,6 @@ if build_install:
             ('doc/sk', lib_doc_sk_files),
             ('doc/sl', lib_doc_sl_files),
             ('doc/sv', lib_doc_sv_files),
-            ('doc', lib_doc_files),
             ('examples', lib_examples_files),
             ('examples/ca', lib_examples_ca_files),
             ('examples/cs', lib_examples_cs_files),
@@ -2126,10 +2195,44 @@ if build_install:
             ('examples/ru', lib_examples_ru_files),
             ('examples/sl', lib_examples_sl_files),
             ('examples/ro', lib_examples_ro_files),
-            ('lyx2lyx', lib_lyx2lyx_files)]:
+            ('fonts', lib_fonts_files),
+            ('images', lib_images_files),
+            ('images/math', lib_images_math_files),
+            ('kbd', lib_kbd_files),
+            ('layouts', lib_layouts_files),
+            ('lyx2lyx', lib_lyx2lyx_files),
+            ('scripts', lib_scripts_files),
+            ('templates', lib_templates_files),
+            ('tex', lib_tex_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
@@ -2155,11 +2258,6 @@ if build_install:
         env.Install(postinstall_path, tmp_script)
         Alias('install', postinstall_path)
 
-    # 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')
 
     # man
     env.InstallAs(os.path.join(man_dest_dir, 'lyx' + version_suffix + '.1'),
@@ -2193,6 +2291,9 @@ if build_installer:
     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)