]> git.lyx.org Git - lyx.git/blobdiff - development/scons/scons_manifest.py
fix SCons
[lyx.git] / development / scons / scons_manifest.py
index 88c1792b693555d3b096d1918eef0d2bafaa6b81..3af6c75674ae9b8368495986c8ae9066048d733d 100644 (file)
@@ -3,6 +3,9 @@ from SCons.Util import Split
 TOP_extra_files = Split('''
     ABOUT-NLS
     ANNOUNCE
+    autogen.sh
+    config.log
+    configure.ac
     COPYING
     INSTALL
     INSTALL.MacOSX
@@ -10,6 +13,7 @@ TOP_extra_files = Split('''
     INSTALL.autoconf
     INSTALL.cmake
     INSTALL.scons
+    lyx.1in
     Makefile.am
     NEWS
     README
@@ -17,24 +21,21 @@ TOP_extra_files = Split('''
     README.Win32
     README.localization
     RELEASE-NOTES
-    UPGRADING
-    autogen.sh
-    config.log
-    configure.ac
-    lyx.1in
     rename.sh
     scons_lyx.log
+    UPGRADING
 ''')
 
 
 src_header_files = Split('''
-    ASpell_local.h
+    AspellChecker.h
     Author.h
     BiblioInfo.h
     Bidi.h
     Box.h
     BranchList.h
     Buffer.h
+    buffer_funcs.h
     BufferList.h
     BufferParams.h
     BufferView.h
@@ -46,6 +47,7 @@ src_header_files = Split('''
     Color.h
     ColorSet.h
     ColorCode.h
+    Compare.h
     CompletionList.h
     Converter.h
     ConverterCache.h
@@ -58,9 +60,11 @@ src_header_files = Split('''
     Dimension.h
     DispatchResult.h
     DocIterator.h
+    EnchantChecker.h
     Encoding.h
     ErrorList.h
     Exporter.h
+    factory.h
     FloatList.h
     Floating.h
     Font.h
@@ -72,6 +76,8 @@ src_header_files = Split('''
     FuncRequest.h
     FuncStatus.h
     Graph.h
+    HSpace.h
+    HunspellChecker.h
     IndicesList.h
     InsetIterator.h
     InsetList.h
@@ -89,13 +95,20 @@ src_header_files = Split('''
     Lexer.h
     LyX.h
     LyXAction.h
-    LyXFunc.h
+    lyxfind.h
     LyXRC.h
     LyXVC.h
     MetricsInfo.h
     ModuleList.h
     Mover.h
+    output.h
+    output_docbook.h
+    output_latex.h
+    output_plaintext.h
+    output_xhtml.h
+    OutputEnums.h
     OutputParams.h
+    paper.h
     ParIterator.h
     Paragraph.h
     ParagraphList.h
@@ -104,10 +117,11 @@ src_header_files = Split('''
     PDFOptions.h
     PrinterParams.h
     Row.h
-    Section.h
+    rowpainter.h
     Server.h
     ServerSocket.h
     Session.h
+    sgml.h
     Spacing.h
     SpellChecker.h
     TexRow.h
@@ -118,23 +132,11 @@ src_header_files = Split('''
     TocBackend.h
     Trans.h
     Undo.h
+    update_flags.h
     VCBackend.h
     VSpace.h
-    Variables.h
-    WordLangTuple.h
-    buffer_funcs.h
-    factory.h
-    lyxfind.h
-    output.h
-    output_docbook.h
-    output_latex.h
-    output_plaintext.h
-    paper.h
-    paragraph_funcs.h
-    rowpainter.h
-    sgml.h
-    update_flags.h
     version.h
+    WordLangTuple.h
     WordList.h
 ''')
 
@@ -147,11 +149,13 @@ src_pre_files = Split('''
     BufferList.cpp
     BufferParams.cpp
     BufferView.cpp
+    buffer_funcs.cpp
     Bullet.cpp
     Changes.cpp
     Chktex.cpp
     CmdDef.cpp
     Color.cpp
+    Compare.cpp
     Converter.cpp
     ConverterCache.cpp
     CoordCache.cpp
@@ -164,6 +168,7 @@ src_pre_files = Split('''
     Encoding.cpp
     ErrorList.cpp
     Exporter.cpp
+    factory.cpp
     FloatList.cpp
     Floating.cpp
     Font.cpp
@@ -173,6 +178,7 @@ src_pre_files = Split('''
     FuncRequest.cpp
     FuncStatus.cpp
     Graph.cpp
+    HSpace.cpp
     IndicesList.cpp
     InsetIterator.cpp
     InsetList.cpp
@@ -186,24 +192,32 @@ src_pre_files = Split('''
     LayoutFile.cpp
     LayoutModuleList.cpp
     Length.cpp
+    lengthcommon.cpp
     Lexer.cpp
     LyX.cpp
     LyXAction.cpp
-    LyXFunc.cpp
+    lyxfind.cpp
     LyXRC.cpp
     LyXVC.cpp
     MetricsInfo.cpp
     Mover.cpp
+    output.cpp
     OutputParams.cpp
+    output_docbook.cpp
+    output_latex.cpp
+    output_plaintext.cpp
+    output_xhtml.cpp
     PDFOptions.cpp
     ParIterator.cpp
     Paragraph.cpp
     ParagraphMetrics.cpp
     ParagraphParameters.cpp
     Row.cpp
+    rowpainter.cpp
     Server.cpp
     ServerSocket.cpp
     Session.cpp
+    sgml.cpp
     Spacing.cpp
     TexRow.cpp
     Text.cpp
@@ -215,38 +229,27 @@ src_pre_files = Split('''
     Trans.cpp
     Undo.cpp
     VCBackend.cpp
-    VSpace.cpp
-    buffer_funcs.cpp
-    factory.cpp
-    lengthcommon.cpp
-    lyxfind.cpp
-    output.cpp
-    output_docbook.cpp
-    output_latex.cpp
-    output_plaintext.cpp
-    paragraph_funcs.cpp
-    rowpainter.cpp
-    sgml.cpp
     version.cpp
+    VSpace.cpp
     WordList.cpp
 ''')
 
 
 src_post_files = Split('''
     BiblioInfo.cpp
+    boost.cpp
     Box.cpp
     Dimension.cpp
     ModuleList.cpp
     PrinterParams.cpp
     Thesaurus.cpp
-    boost.cpp
 ''')
 
 
 src_extra_src_files = Split('''
-    ASpell.cpp
-    Section.cpp
-    Variables.cpp
+    AspellChecker.cpp
+    EnchantChecker.cpp
+    HunspellChecker.cpp
     main.cpp
 ''')
 
@@ -263,35 +266,21 @@ src_client_header_files = Split('''
 
 
 src_client_files = Split('''
-    Messages.cpp
     boost.cpp
     client.cpp
     gettext.cpp
+    Messages.cpp
 ''')
 
 
 src_client_extra_files = Split('''
-    Makefile.am
     lyxclient.1in
+    Makefile.am
     pch.h
 ''')
 
 
 src_support_header_files = Split('''
-    ExceptionMessage.h
-    FileMonitor.h
-    FileName.h
-    ForkedCalls.h
-    Messages.h
-    Package.h
-    Path.h
-    RandomAccessList.h
-    SignalSlot.h
-    SignalSlotPrivate.h
-    Systemcall.h
-    SystemcallPrivate.h
-    Timeout.h
-    Translator.h
     convert.h
     copied_ptr.h
     debug.h
@@ -299,8 +288,12 @@ src_support_header_files = Split('''
     docstring.h
     docstring_list.h
     environment.h
+    ExceptionMessage.h
+    FileMonitor.h
+    FileName.h
     filetools.h
     foreach.h
+    ForkedCalls.h
     gettext.h
     gzstream.h
     lassert.h
@@ -309,11 +302,20 @@ src_support_header_files = Split('''
     lyxalgo.h
     lyxlib.h
     lyxtime.h
+    Messages.h
     os.h
     os_win32.h
+    Package.h
+    Path.h
+    ProgressInterface.h
     qstring_helpers.h
+    RandomAccessList.h
     socktools.h
+    Systemcall.h
+    SystemcallPrivate.h
     textutils.h
+    Timeout.h
+    Translator.h
     types.h
     unicode.h
     userinfo.h
@@ -322,31 +324,29 @@ src_support_header_files = Split('''
 
 
 src_support_files = Split('''
-    FileMonitor.cpp
-    FileName.cpp
-    ForkedCalls.cpp
-    Messages.cpp
-    Package.cpp
-    Path.cpp
-    SignalSlot.cpp
-    SignalSlotPrivate.cpp
-    Systemcall.cpp
-    Timeout.cpp
     convert.cpp
     debug.cpp
     docstream.cpp
     docstring.cpp
     environment.cpp
+    FileMonitor.cpp
+    FileName.cpp
     filetools.cpp
+    ForkedCalls.cpp
     gettext.cpp
     gzstream.cpp
     kill.cpp
     lassert.cpp
     lstrings.cpp
     lyxtime.cpp
+    Messages.cpp
     os.cpp
+    Package.cpp
+    Path.cpp
     qstring_helpers.cpp
     socktools.cpp
+    Systemcall.cpp
+    Timeout.cpp
     unicode.cpp
     userinfo.cpp
     mythes/mythes.cxx
@@ -370,6 +370,7 @@ src_support_extra_src_files = Split('''
 src_support_extra_files = Split('''
     Makefile.am
     pch.h
+    mythes/license.readme
 ''')
 
 
@@ -582,9 +583,7 @@ src_mathed_extra_files = Split('''
 
 src_tex2lyx_header_files = Split('''
     Context.h
-    Font.h
     Parser.h
-    Spacing.h
     tex2lyx.h
 ''')
 
@@ -592,8 +591,6 @@ src_tex2lyx_header_files = Split('''
 src_tex2lyx_files = Split('''
     boost.cpp
     Context.cpp
-    Font.cpp
-    gettext.cpp
     math.cpp
     Parser.cpp
     preamble.cpp
@@ -604,6 +601,7 @@ src_tex2lyx_files = Split('''
 
 
 src_tex2lyx_copied_header_files = Split('''
+    TextClass.h
     insets/InsetLayout.h
 ''')
 
@@ -614,10 +612,13 @@ src_tex2lyx_copied_files = Split('''
     Encoding.cpp
     FloatList.cpp
     Floating.cpp
+    FontInfo.cpp
     Layout.cpp
+    LayoutModuleList.cpp
     lengthcommon.cpp
     Lexer.cpp
     ModuleList.cpp
+    Spacing.cpp
     TextClass.cpp
     insets/InsetLayout.cpp
 ''')
@@ -645,7 +646,6 @@ src_frontends_header_files = Split('''
     FontMetrics.h
     KeyModifier.h
     KeySymbol.h
-    LyXView.h
     mouse_state.h
     Painter.h
     Selection.h
@@ -713,6 +713,7 @@ src_frontends_qt4_header_files = Split('''
     GuiClipboard.h
     GuiCommandBuffer.h
     GuiCommandEdit.h
+    GuiCompare.h
     GuiCompleter.h
     GuiDelimiter.h
     GuiDialog.h
@@ -720,7 +721,6 @@ src_frontends_qt4_header_files = Split('''
     GuiErrorList.h
     GuiERT.h
     GuiExternal.h
-    GuiFloat.h
     GuiFontExample.h
     GuiFontLoader.h
     GuiGraphics.h
@@ -746,6 +746,9 @@ src_frontends_qt4_header_files = Split('''
     GuiPrefs.h
     GuiPrint.h
     GuiPrintindex.h
+    GuiPrintNomencl.h
+    GuiProgress.h
+    GuiProgressView.h
     GuiRef.h
     GuiSearch.h
     GuiSelection.h
@@ -768,17 +771,20 @@ src_frontends_qt4_header_files = Split('''
     GuiWrap.h
     IconPalette.h
     InsertTableWidget.h
+    InsetParamsDialog.h
+    InsetParamsWidget.h
     LaTeXHighlighter.h
+    LayoutBox.h
     LengthCombo.h
     LyXFileDialog.h
     Menus.h
     PanelStack.h
+    qt_helpers.h
+    qt_i18n.h
     TocModel.h
     TocWidget.h
     Toolbars.h
     Validator.h
-    qt_helpers.h
-    qt_i18n.h
 ''')
 
 
@@ -808,6 +814,7 @@ src_frontends_qt4_files = Split('''
     GuiClipboard.cpp
     GuiCommandBuffer.cpp
     GuiCommandEdit.cpp
+    GuiCompare.cpp
     GuiCompleter.cpp
     GuiDelimiter.cpp
     GuiDialog.cpp
@@ -815,7 +822,6 @@ src_frontends_qt4_files = Split('''
     GuiErrorList.cpp
     GuiERT.cpp
     GuiExternal.cpp
-    GuiFloat.cpp
     GuiFontExample.cpp
     GuiFontLoader.cpp
     GuiFontMetrics.cpp
@@ -841,6 +847,9 @@ src_frontends_qt4_files = Split('''
     GuiPrefs.cpp
     GuiPrint.cpp
     GuiPrintindex.cpp
+    GuiPrintNomencl.cpp
+    GuiProgress.cpp
+    GuiProgressView.cpp
     GuiRef.cpp
     GuiSearch.cpp
     GuiSelection.cpp
@@ -863,30 +872,32 @@ src_frontends_qt4_files = Split('''
     GuiWrap.cpp
     IconPalette.cpp
     InsertTableWidget.cpp
+    InsetParamsDialog.cpp
+    InsetParamsWidget.cpp
     LengthCombo.cpp
     LaTeXHighlighter.cpp
+    LayoutBox.cpp
     LyXFileDialog.cpp
     Menus.cpp
     PanelStack.cpp
+    qt_helpers.cpp
     TocModel.cpp
     TocWidget.cpp
     Toolbars.cpp
     Validator.cpp
-    qt_helpers.cpp
 ''')
 
 
 src_frontends_qt4_extra_files = Split('''
     GuiFontMetrics.h
     Makefile.am
-    README
     pch.h
+    README    
 ''')
 
 
 src_frontends_qt4_ui_files = Split('''
     AboutUi.ui
-    AskForTextUi.ui
     BibitemUi.ui
     BiblioUi.ui
     BibtexAddUi.ui
@@ -894,10 +905,12 @@ src_frontends_qt4_ui_files = Split('''
     BoxUi.ui
     BranchUi.ui
     BranchesUi.ui
+    BranchesUnknownUi.ui
     BulletsUi.ui
     ChangesUi.ui
     CharacterUi.ui
     CitationUi.ui
+    CompareUi.ui
     DelimiterUi.ui
     DocumentUi.ui
     ERTUi.ui
@@ -905,7 +918,6 @@ src_frontends_qt4_ui_files = Split('''
     ExternalUi.ui
     FindAndReplaceUi.ui
     FloatPlacementUi.ui
-    FloatUi.ui
     FontUi.ui
     GraphicsUi.ui
     HSpaceUi.ui
@@ -914,12 +926,15 @@ src_frontends_qt4_ui_files = Split('''
     IndexUi.ui
     IndicesUi.ui
     InfoUi.ui
+    InsetParamsUi.ui
     LabelUi.ui
     LaTeXUi.ui
     LanguageUi.ui
     ListingsUi.ui
+    ListingsSettingsUi.ui
     LogUi.ui
     MarginsUi.ui
+    MasterChildUi.ui
     MathMatrixUi.ui
     MathsUi.ui
     ModulesUi.ui
@@ -953,6 +968,8 @@ src_frontends_qt4_ui_files = Split('''
     PrefsUi.ui
     PrintUi.ui
     PrintindexUi.ui
+    PrintNomenclUi.ui
+    ProgressViewUi.ui
     RefUi.ui
     SearchUi.ui
     SendtoUi.ui
@@ -974,8 +991,7 @@ src_frontends_qt4_ui_files = Split('''
 
 
 src_frontends_qt4_ui_extra_files = Split('''
-    Makefile.am
-    compile_uic.sh
+    Makefile.am    
 ''')
 
 
@@ -1019,6 +1035,7 @@ src_insets_header_files = Split('''
     InsetNote.h
     InsetOptArg.h
     InsetPhantom.h
+    InsetPreview.h
     InsetQuotes.h
     InsetRef.h
     InsetSpace.h
@@ -1074,6 +1091,7 @@ src_insets_files = Split('''
     InsetNote.cpp
     InsetOptArg.cpp
     InsetPhantom.cpp
+    InsetPreview.cpp
     InsetQuotes.cpp
     InsetRef.cpp
     InsetSpace.cpp
@@ -1143,7 +1161,6 @@ intl_files = Split('''
 
 
 intl_extra_files = Split('''
-    VERSION
     config.charset
     libgnuintl.h.in
     locale.alias
@@ -1154,20 +1171,20 @@ intl_extra_files = Split('''
     ref-add.sin
     ref-del.sin
     vasnprintf.c
+    VERSION
 ''')
 
 
 config_extra_files = Split('''
-    Makefile.am
     common.am
     config.guess
     config.rpath
     config.sub
     depcomp
     install-sh
-    libtool.m4
     ltmain.sh
     lyxinclude.m4
+    Makefile.am
     missing
     mkinstalldirs
     pkg.m4
@@ -1184,12 +1201,6 @@ sourcedoc_extra_files = Split('''
 
 
 po_extra_files = Split('''
-    LINGUAS
-    Makefile.in.in
-    Makevars
-    POTFILES.in
-    README
-    Rules-quot
     ar.po
     bg.po
     boldquot.sed
@@ -1199,6 +1210,7 @@ po_extra_files = Split('''
     de.po
     en@boldquot.header
     en@quot.header
+    el.po
     en.po
     es.po
     eu.po
@@ -1212,18 +1224,24 @@ po_extra_files = Split('''
     it.po
     ja.po
     ko.po
+    LINGUAS
     lyx_pot.py
+    Makefile.in.in
+    Makevars
     nb.po
     nl.po
     nn.po
     pl.po
     pocheck.pl
+    POTFILES.in
     postats.sh
     pt.po
     quot.sed
+    README
     remove-potcdate.sin
     ro.po
     ru.po
+    Rules-quot
     sk.po
     sl.po
     sv.po
@@ -1236,9 +1254,9 @@ po_extra_files = Split('''
 
 
 lib_files = Split('''
-    CREDITS
     chkconfig.ltx
     configure.py
+    CREDITS
     encodings
     external_templates
     languages
@@ -1249,10 +1267,10 @@ lib_files = Split('''
 
 
 lib_extra_files = Split('''
-    Makefile.am
     autocorrect
     build-listerrors
     generate_contributions.py
+    Makefile.am
 ''')
 
 
@@ -1329,6 +1347,22 @@ lib_templates_files = Split('''
     revtex.lyx
     revtex4.lyx
     slides.lyx
+    svjour3.lyx
+    svmono_book.lyx
+    svmult_appendix.lyx
+    svmult_author.lyx
+    svmult_editor.lyx
+''')
+
+
+lib_templates_thesis_files = Split('''
+    Acknowledgments.lyx
+    alpha.bst
+    chapter-1.lyx
+    chapter-2.lyx
+    Summary.lyx
+    thesis.lyx
+    thesisExample.bib
 ''')
 
 
@@ -1343,7 +1377,6 @@ lib_ui_files = Split('''
 
 lib_fonts_files = Split('''
     BaKoMaFontLicense.txt
-    ReadmeBaKoMa4LyX.txt
     cmex10.ttf
     cmmi10.ttf
     cmr10.ttf
@@ -1352,6 +1385,7 @@ lib_fonts_files = Split('''
     eufm10.ttf
     msam10.ttf
     msbm10.ttf
+    ReadmeBaKoMa4LyX.txt
     wasy10.ttf
 ''')
 
@@ -1419,6 +1453,8 @@ lib_images_files = Split('''
     dialog-show_mathmatrix.png
     dialog-show_print.png
     dialog-show_spellchecker.png
+    dialog-show_vclog.png
+    dialog-toggle_findreplaceadv.png
     dialog-toggle_toc.png
     down.png
     ert-insert.png
@@ -1434,6 +1470,7 @@ lib_images_files = Split('''
     href-insert.png
     hidetab.png
     index-insert.png
+    info-insert_buffer_vcs-revision.png
     label-insert.png
     layout-document.png
     layout-paragraph.png
@@ -1447,11 +1484,6 @@ lib_images_files = Split('''
     layout_Section.png
     lyx-quit.png
     lyx.png
-    vc-check-in.png
-    vc-check-out.png
-    dialog-show_vclog.png
-    vc-register.png
-    vc-revert.png
     marginalnote-insert.png
     master-buffer-update.png
     master-buffer-view.png
@@ -1492,6 +1524,7 @@ lib_images_files = Split('''
     tabular-feature_delete-column.png
     tabular-feature_delete-row.png
     tabular-feature_multicolumn.png
+    tabular-feature_multirow.png
     tabular-feature_set-all-lines.png
     tabular-feature_set-border-lines.png
     tabular-feature_set-longtabular.png
@@ -1515,28 +1548,29 @@ lib_images_files = Split('''
     undo.png
     unknown.png
     up.png
+    update-others.png
     url-insert.png
+    vc-compare.png
+    vc-compare_0.png
+    vc-check-in.png
+    vc-check-out.png
+    vc-locking-toggle.png
+    vc-register.png
+    vc-repo-update.png
+    vc-revert.png
+    view-others.png
 ''')
 
 
 lib_images_extra_files = Split('''
-    README
     font-smallcaps.png
+    README
 ''')
 
 
 lib_images_math_files = Split('''
-    Bbbk.png
-    Finv.png
-    Game.png
-    Im.png
-    Lleftarrow.png
-    Lsh.png
-    Re.png
-    Rrightarrow.png
-    Rsh.png
-    Vvdash.png
     acute.png
+    adots.png
     aleph.png
     alpha.png
     amalg.png
@@ -1552,6 +1586,7 @@ lib_images_math_files = Split('''
     bar.png
     bars.png
     barwedge.png
+    Bbbk.png
     because.png
     beta.png
     beth.png
@@ -1619,6 +1654,8 @@ lib_images_math_files = Split('''
     dashrightarrow.png
     dashv.png
     ddagger.png
+    ddddot.png
+    dddot.png
     ddot.png
     ddots.png
     delim.png
@@ -1627,6 +1664,7 @@ lib_images_math_files = Split('''
     diagdown.png
     diagup.png
     diamond.png
+    diamond2.png
     diamondsuit.png
     digamma.png
     div.png
@@ -1659,6 +1697,7 @@ lib_images_math_files = Split('''
     fallingdotseq.png
     fint.png
     fintop.png
+    Finv.png
     flat.png
     font.png
     forall.png
@@ -1666,6 +1705,7 @@ lib_images_math_files = Split('''
     frac.png
     frown.png
     functions.png
+    Game.png
     gamma.png
     gamma2.png
     geq.png
@@ -1693,12 +1733,14 @@ lib_images_math_files = Split('''
     hookrightarrow.png
     hphantom.png
     hslash.png
+    iddots.png
     iiiint.png
     iiiintop.png
     iiint.png
     iiintop.png
     iint.png
     iintop.png
+    Im.png
     imath.png
     in.png
     infty.png
@@ -1747,6 +1789,7 @@ lib_images_math_files = Split('''
     lfloor_rfloor.png
     ll.png
     llcorner.png
+    Lleftarrow.png
     lll.png
     lnapprox.png
     lneq.png
@@ -1765,6 +1808,7 @@ lib_images_math_files = Split('''
     lparen.png
     lparen_rparen.png
     lrcorner.png
+    Lsh.png
     ltimes.png
     lvertneqq.png
     mapsto.png
@@ -1879,6 +1923,7 @@ lib_images_math_files = Split('''
     rbrace.png
     rbracket.png
     rceil.png
+    Re.png
     rfloor.png
     rho.png
     rightarrow.png
@@ -1894,6 +1939,8 @@ lib_images_math_files = Split('''
     risingdotseq.png
     root.png
     rparen.png
+    Rrightarrow.png
+    Rsh.png
     rtimes.png
     searrow.png
     setminus.png
@@ -1982,7 +2029,6 @@ lib_images_math_files = Split('''
     underset.png
     uparrow.png
     uparrow2.png
-    update-others.png
     updownarrow.png
     updownarrow2.png
     upharpoonleft.png
@@ -2017,8 +2063,8 @@ lib_images_math_files = Split('''
     veebar.png
     vert.png
     vert2.png
-    view-others.png
     vphantom.png
+    Vvdash.png
     wedge.png
     widehat.png
     widetilde.png
@@ -2073,12 +2119,11 @@ lib_tex_files = Split('''
 
 lib_doc_files = Split('''
     Customization.lyx
-    DocStyle.lyx
     DummyDocument1.lyx
     DummyDocument2.lyx
     DummyTextDocument.txt
     EmbeddedObjects.lyx
-    Extended.lyx
+    Additional.lyx
     Formula-numbering.lyx
     Intro.lyx
     LaTeXConfig.lyx
@@ -2102,20 +2147,17 @@ lib_doc_clipart_files = Split('''
     ChangesToolbar.png
     ChildDocumentQt4.png
     CommentNoteImageQt4.png
+    endnotes.pdf
     ERT.png
+    escher-lsd.eps
     ExternalMaterialQt4.png
     ExtraToolbar.png
-    GreyedOutNoteImageQt4.png
-    LaTeX.png
-    LyXNoteImageQt4.png
-    SpaceMarker.png
-    StandardToolbar.png
-    ToolbarEnvBox.png
-    endnotes.pdf
-    escher-lsd.eps
     floatQt4.png
     footnoteQt4.png
+    GreyedOutNoteImageQt4.png
     labelQt4.png
+    LaTeX.png
+    LyXNoteImageQt4.png
     macrobox.png
     MacroToolbar.png
     macrouse.png
@@ -2123,6 +2165,9 @@ lib_doc_clipart_files = Split('''
     mobius.eps
     platypus.eps
     referenceQt4.png
+    SpaceMarker.png
+    StandardToolbar.png
+    ToolbarEnvBox.png
     ViewToolbar.png
     with_fntright.pdf
     without_fntright.pdf
@@ -2151,7 +2196,7 @@ lib_doc_de_files = Split('''
     DummyDocument2.lyx
     DummyTextDocument.txt
     EmbeddedObjects.lyx
-    Extended.lyx
+    Additional.lyx
     Formelnummerierung.lyx
     Intro.lyx
     Math.lyx
@@ -2187,7 +2232,7 @@ lib_doc_es_files = Split('''
     DocumentoPostizo2.lyx
     DocumentoTextoPostizo.txt
     EmbeddedObjects.lyx
-    Extended.lyx
+    Additional.lyx
     Formula-numbering.lyx
     Intro.lyx
     Math.lyx
@@ -2201,22 +2246,22 @@ lib_doc_es_clipart_files = Split('''
     ComentNotaImagenQt4.png
     CuadroMinipagQt4.png
     DocumentoHijoQt4.png
-    GrisNotaImagenQt4.png
-    MaterialExternoQt4.png
-    NotaLyXImagenQt4.png
-    Resumen.pdf
     es_ERT.png
     es_ToolbarEnvBox.png
     etiquetaQt4.png
     flotanteQt4.png
+    GrisNotaImagenQt4.png
+    MaterialExternoQt4.png
+    NotaLyXImagenQt4.png
     notapieQt4.png
     referenciaQt4.png
+    Resumen.pdf
 ''')
 
 
 lib_doc_eu_files = Split('''
     Customization.lyx
-    Extended.lyx
+    Additional.lyx
     Intro.lyx
     Tutorial.lyx
     UserGuide.lyx
@@ -2229,7 +2274,7 @@ lib_doc_fr_files = Split('''
     DocumentBidon2.lyx
     DocumentTexteBidon.txt
     EmbeddedObjects.lyx
-    Extended.lyx
+    Additional.lyx
     Formula-numbering.lyx
     Intro.lyx
     Math.lyx
@@ -2243,11 +2288,11 @@ lib_doc_fr_clipart_files = Split('''
     BoxInsetDefaultQt4.png
     ChildDocumentQt4.png
     CommentNoteImageQt4.png
-    GreyedOutNoteImageQt4.png
-    LyXNoteImageQt4.png
     floatQt4.png
     footnoteQt4.png
+    GreyedOutNoteImageQt4.png
     labelQt4.png
+    LyXNoteImageQt4.png    
 ''')
 
 
@@ -2297,9 +2342,10 @@ lib_doc_it_clipart_files = Split('''
 
 
 lib_doc_ja_files = Split('''
-    Extended.lyx
+    Additional.lyx
     Intro.lyx
     LaTeXConfig.lyx
+    Math.lyx
     Shortcuts.lyx
     Tutorial.lyx
     UserGuide.lyx
@@ -2327,7 +2373,7 @@ lib_doc_nl_files = Split('''
 
 
 lib_doc_pl_files = Split('''
-    Extended.lyx
+    Additional.lyx
     Intro.lyx
     Tutorial.lyx
 ''')
@@ -2357,6 +2403,7 @@ lib_doc_sl_files = Split('''
 
 
 lib_doc_sk_files = Split('''
+    Intro.lyx
     Tutorial.lyx
     UserGuide.lyx
 ''')
@@ -2378,6 +2425,12 @@ lib_doc_uk_clipart_files = Split('''
 ''')
 
 
+lib_doc_zhCN_files = Split('''
+    Intro.lyx
+    Tutorial.lyx
+''')
+
+
 lib_examples_files = Split('''
     aa_sample.lyx
     aas_sample.lyx
@@ -2429,6 +2482,9 @@ lib_examples_files = Split('''
     serial_letter3.lyx
     simplecv.lyx
     splash.lyx
+    sweave.lyx
+    tufte-book.lyx
+    tufte-handout.lyx
     xyfigure.png
     xypic.lyx
 ''')
@@ -2464,6 +2520,7 @@ lib_examples_de_files = Split('''
     serienbrief2.lyx
     serienbrief3.lyx
     splash.lyx
+    tufte-handout.lyx
 ''')
 
 
@@ -2474,17 +2531,24 @@ lib_examples_fa_files = Split('''
 
 lib_examples_fr_files = Split('''
     AlignementDecimal.lyx
-    Foils.lyx
-    ListesPuces.lyx
+    Braille.lyx
     exemple_brut.lyx
     exemple_lyxifie.lyx
+    exemple-powerdot.lyx
+    Foils.lyx
+    linguistics.lyx
+    ListesPuces.lyx
     multicol.lyx
+    seminar.lyx
     simplecv.lyx
     splash.lyx
+    xyfigure.png
+    xypic.lyx
 ''')
 
 
 lib_examples_es_files = Split('''
+    beamer-conference-ornate20min.lyx
     Braille.lyx
     ejemplo_con_lyx.lyx
     ejemplo_sin_lyx.lyx
@@ -2492,6 +2556,8 @@ lib_examples_es_files = Split('''
     linguistics.lyx
     multicol.lyx
     splash.lyx
+    tufte-book.lyx
+    tufte-handout.lyx
 ''')
 
 
@@ -2535,6 +2601,7 @@ lib_examples_it_files = Split('''
 
 
 lib_examples_ja_files = Split('''
+    Braille.lyx
     splash.lyx
 ''')
 
@@ -2575,14 +2642,19 @@ lib_examples_sl_files = Split('''
 ''')
 
 
+lib_examples_sk_files = Split('''
+    splash.lyx
+''')
+
+
 lib_examples_uk_files = Split('''
     splash.lyx
 ''')
 
 
 lib_lyx2lyx_files = Split('''
-    LyX.py
     generate_encoding_info.py
+    LyX.py
     lyx2lyx
     lyx2lyx_lang.py
     lyx_0_06.py
@@ -2607,8 +2679,8 @@ lib_lyx2lyx_files = Split('''
 
 
 lib_lyx2lyx_extra_files = Split('''
-    Makefile.am
     lyx2lyx_version.py.in
+    Makefile.am
 ''')
 
 
@@ -2637,6 +2709,7 @@ lib_layouts_files = Split('''
     docbook-chapter.layout
     docbook-section.layout
     docbook.layout
+    doublecol-new.layout
     dtk.layout
     egs.layout
     elsart.layout
@@ -2648,8 +2721,7 @@ lib_layouts_files = Split('''
     extletter.layout
     extreport.layout
     foils.layout
-    g-brief-de.layout
-    g-brief-en.layout
+    g-brief.layout
     g-brief2.layout
     heb-article.layout
     heb-letter.layout
@@ -2674,7 +2746,6 @@ lib_layouts_files = Split('''
     literate-report.layout
     llncs.layout
     ltugboat.layout
-    manpage.layout
     memoir.layout
     moderncv.layout
     mwart.layout
@@ -2697,15 +2768,20 @@ lib_layouts_files = Split('''
     sigplanconf.layout
     simplecv.layout
     singlecol.layout
+    singlecol-new.layout
     slides.layout
     spie.layout
     svglobal.layout
     svglobal3.layout
     svjog.layout
+    svmono.layout
+    svmult.layout
     svprobth.layout
     tarticle.layout
     tbook.layout
     treport.layout
+    tufte-book.layout
+    tufte-handout.layout
 ''')
 
 
@@ -2735,6 +2811,7 @@ lib_layouts_inc_files = Split('''
     numrevtex.inc
     scrclass.inc
     stdcharstyles.inc
+    stdciteformats.inc
     stdclass.inc
     stdcounters.inc
     stdcustom.inc
@@ -2743,6 +2820,7 @@ lib_layouts_inc_files = Split('''
     stdlayouts.inc
     stdletter.inc
     stdlists.inc
+    stdrefprefix.inc
     stdsections.inc
     stdstarsections.inc
     stdstruct.inc
@@ -2750,8 +2828,11 @@ lib_layouts_inc_files = Split('''
     svjour.inc
     theorems.inc
     theorems-ams.inc
+    theorems-ams-bytype.inc
+    theorems-bytype.inc
     theorems-order.inc
     theorems-proof.inc
+    theorems-proof-std.inc
     theorems-starred.inc
     theorems-starred-equivalents.inc
 ''')
@@ -2760,23 +2841,32 @@ lib_layouts_inc_files = Split('''
 lib_layouts_module_files = Split('''
     braille.module
     endnotes.module
+    eqs-within-sections.module
+    figs-within-sections.module
     foottoend.module
     hanging.module
+    initials.module
     linguistics.module
     logicalmkup.module
     minimalistic.module
     noweb.module
     sweave.module
+    tabs-within-sections.module
+    theorems-ams-bytype.module
     theorems-ams-extended.module
+    theorems-ams-extended-bytype.module
     theorems-ams.module
+    theorems-bytype.module
+    theorems-chap-bytype.module
     theorems-chap.module
+    theorems-sec-bytype.module
     theorems-sec.module
     theorems-starred.module
     theorems-std.module
 ''')
 
 lib_scripts_files = Split('''
-    TeXFiles.py
+    bash_completion
     clean_dvi.py
     convertDefault.py
     csv2lyx.py
@@ -2792,6 +2882,7 @@ lib_scripts_files = Split('''
     lyxpreview2bitmap.py
     lyxpreview-platex2bitmap.py
     lyxpreview_tools.py
+    TeXFiles.py
     tex_copy.py
 ''')