]> git.lyx.org Git - lyx.git/blobdiff - development/scons/SConstruct
Add math fonts to SVN
[lyx.git] / development / scons / SConstruct
index 6f38ec600076bdaa33ef22bda99b40cd6cf829d8..b15ba7ab1689384fcc7772538d518152676ac87c 100644 (file)
@@ -1984,7 +1984,7 @@ if update_po:
 
     # 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. Can not merge po files'
+        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
@@ -2008,8 +2008,8 @@ if update_po:
                 --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' ''']
+                --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,
@@ -2021,7 +2021,7 @@ if update_po:
     # possibly *only* handle these languages
     languages = None
     if env.has_key('languages'):
-        languages = env.make_list(env['lanauges'])
+        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
@@ -2152,14 +2152,6 @@ if build_install:
     dirs = []
     for (dir,files) in [
             ('.', lib_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),
@@ -2203,7 +2195,16 @@ 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)