]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
EmbeddedObjects: French translation updates by Siegfried
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     CmdDef.h
45     Color.h
46     ColorCode.h
47     Converter.h
48     ConverterCache.h
49     CoordCache.h
50     Counters.h
51     Cursor.h
52     CursorSlice.h
53     CutAndPaste.h
54     DepTable.h
55     Dimension.h
56     DispatchResult.h
57     DocIterator.h
58     EmbeddedFiles.h
59     Encoding.h
60     ErrorList.h
61     Exporter.h
62     FloatList.h
63     Floating.h
64     Font.h
65     FontEnums.h
66     FontInfo.h
67     FontIterator.h
68     FontList.h
69     Format.h
70     FuncRequest.h
71     FuncStatus.h
72     Graph.h
73     ISpell.h
74     InsetIterator.h
75     InsetList.h
76     Intl.h
77     KeyMap.h
78     KeySequence.h
79     LaTeX.h
80     LaTeXFeatures.h
81     Language.h
82     Layout.h
83     LayoutEnums.h
84     LayoutPtr.h
85     Length.h
86     Lexer.h
87     LyX.h
88     LyXAction.h
89     LyXFunc.h
90     LyXRC.h
91     LyXVC.h
92     MenuBackend.h
93     MetricsInfo.h
94     ModuleList.h
95     Mover.h
96     OutputParams.h
97     ParIterator.h
98     Paragraph.h
99     ParagraphList.h
100     ParagraphMetrics.h
101     ParagraphParameters.h
102     PDFOptions.h
103     PrinterParams.h
104     PSpell.h
105     Row.h
106     Section.h
107     Server.h
108     ServerSocket.h
109     Session.h
110     Spacing.h
111     SpellBase.h
112     TexRow.h
113     Text.h
114     TextClass.h
115     TextClassList.h
116     TextClassPtr.h
117     TextMetrics.h
118     Thesaurus.h
119     TocBackend.h
120     ToolbarBackend.h
121     Trans.h
122     Undo.h
123     VCBackend.h
124     VSpace.h
125     Variables.h
126     WordLangTuple.h
127     buffer_funcs.h
128     factory.h
129     lfuns.h
130     lyxfind.h
131     output.h
132     output_docbook.h
133     output_latex.h
134     output_plaintext.h
135     paper.h
136     paragraph_funcs.h
137     rowpainter.h
138     sgml.h
139     update_flags.h
140     version.h
141 ''')
142
143
144 src_pre_files = Split('''
145     Author.cpp
146     BiblioInfo.cpp
147     Bidi.cpp
148     BranchList.cpp
149     Buffer.cpp
150     BufferList.cpp
151     BufferParams.cpp
152     BufferView.cpp
153     Bullet.cpp
154     Changes.cpp
155     Chktex.cpp
156     CmdDef.cpp
157     Color.cpp
158     Converter.cpp
159     ConverterCache.cpp
160     CoordCache.cpp
161     Counters.cpp
162     Cursor.cpp
163     CursorSlice.cpp
164     CutAndPaste.cpp
165     DepTable.cpp
166     DocIterator.cpp
167     EmbeddedFiles.cpp
168     Encoding.cpp
169     ErrorList.cpp
170     Exporter.cpp
171     FloatList.cpp
172     Floating.cpp
173     Font.cpp
174     FontInfo.cpp
175     FontIterator.cpp
176     FontList.cpp
177     Format.cpp
178     FuncRequest.cpp
179     FuncStatus.cpp
180     Graph.cpp
181     InsetIterator.cpp
182     InsetList.cpp
183     Intl.cpp
184     KeyMap.cpp
185     KeySequence.cpp
186     LaTeX.cpp
187     LaTeXFeatures.cpp
188     Language.cpp
189     Layout.cpp
190     Length.cpp
191     Lexer.cpp
192     LyX.cpp
193     LyXAction.cpp
194     LyXFunc.cpp
195     LyXRC.cpp
196     LyXVC.cpp
197     MenuBackend.cpp
198     MetricsInfo.cpp
199     Mover.cpp
200     OutputParams.cpp
201     PDFOptions.cpp
202     ParIterator.cpp
203     Paragraph.cpp
204     ParagraphMetrics.cpp
205     ParagraphParameters.cpp
206     Row.cpp
207     Server.cpp
208     ServerSocket.cpp
209     Session.cpp
210     Spacing.cpp
211     TexRow.cpp
212     Text.cpp
213     Text2.cpp
214     Text3.cpp
215     TextClass.cpp
216     TextClassList.cpp
217     TextMetrics.cpp
218     TocBackend.cpp
219     ToolbarBackend.cpp
220     Trans.cpp
221     Undo.cpp
222     VCBackend.cpp
223     VSpace.cpp
224     boost.cpp
225     buffer_funcs.cpp
226     factory.cpp
227     lengthcommon.cpp
228     lyxfind.cpp
229     output.cpp
230     output_docbook.cpp
231     output_latex.cpp
232     output_plaintext.cpp
233     paragraph_funcs.cpp
234     rowpainter.cpp
235     sgml.cpp
236     version.cpp
237 ''')
238
239
240 src_post_files = Split('''
241     Box.cpp
242     Dimension.cpp
243     ModuleList.cpp
244     PrinterParams.cpp
245     SpellBase.cpp
246     Thesaurus.cpp
247 ''')
248
249
250 src_extra_src_files = Split('''
251     ASpell.cpp
252     ISpell.cpp
253     PSpell.cpp
254     Section.cpp
255     Variables.cpp
256     main.cpp
257 ''')
258
259
260 src_extra_files = Split('''
261     Makefile.am
262     pch.h
263 ''')
264
265
266 src_client_header_files = Split('''
267     Messages.h
268     debug.h
269 ''')
270
271
272 src_client_files = Split('''
273     Messages.cpp
274     boost.cpp
275     client.cpp
276     debug.cpp
277     gettext.cpp
278 ''')
279
280
281 src_client_extra_files = Split('''
282     Makefile.am
283     lyxclient.man
284     pch.h
285 ''')
286
287
288 src_support_header_files = Split('''
289     ExceptionMessage.h
290     FileFilterList.h
291     FileMonitor.h
292     FileName.h
293     ForkedCalls.h
294     Messages.h
295     Package.h
296     Path.h
297     RandomAccessList.h
298     SignalSlot.h
299     SignalSlotPrivate.h
300     Systemcall.h
301     Timeout.h
302     Translator.h
303     convert.h
304     copied_ptr.h
305     debug.h
306     docstream.h
307     docstring.h
308     environment.h
309     filetools.h
310     gettext.h
311     gzstream.h
312     limited_stack.h
313     lstrings.h
314     lyxalgo.h
315     lyxlib.h
316     lyxtime.h
317     os.h
318     os_win32.h
319     qstring_helpers.h
320     socktools.h
321     textutils.h
322     types.h
323     unicode.h
324     userinfo.h
325 ''')
326
327
328 src_support_files = Split('''
329     FileFilterList.cpp
330     FileMonitor.cpp
331     FileName.cpp
332     ForkedCalls.cpp
333     Messages.cpp
334     Package.cpp
335     Path.cpp
336     SignalSlot.cpp
337     Systemcall.cpp
338     Timeout.cpp
339     convert.cpp
340     debug.cpp
341     docstream.cpp
342     docstring.cpp
343     environment.cpp
344     filetools.cpp
345     gzstream.cpp
346     gettext.cpp
347     kill.cpp
348     lstrings.cpp
349     lyxsum.cpp
350     lyxtime.cpp
351     os.cpp
352     socktools.cpp
353     unicode.cpp
354     userinfo.cpp
355 ''')
356
357
358 src_support_extra_header_files = Split('''
359     
360 ''')
361
362
363 src_support_extra_src_files = Split('''
364     atexit.c
365     os_cygwin.cpp
366     os_unix.cpp
367     os_win32.cpp
368     strerror.c
369 ''')
370
371
372 src_support_extra_files = Split('''
373     Makefile.am
374     pch.h
375 ''')
376
377
378 src_support_tests_extra_files = Split('''
379     Makefile.am
380     boost.cpp
381     convert.cpp
382     filetools.cpp
383     lstrings.cpp
384     pch.h
385     test_convert
386     test_filetools
387     test_lstrings
388 ''')
389
390
391 src_support_tests_regfiles_extra_files = Split('''
392     convert
393     filetools
394     lstrings
395 ''')
396
397
398 src_support_minizip_header_files = Split('''
399     crypt.h
400     ioapi.h 
401     iowin32.h
402     unzip.h
403     zip.h
404 ''')
405
406
407 src_support_minizip_files = Split('''
408     ioapi.c
409     iowin32.c
410     zip.c
411     zipunzip.cpp
412     unzip.c
413 ''')
414
415
416 src_graphics_header_files = Split('''
417     GraphicsCache.h
418     GraphicsCacheItem.h
419     GraphicsConverter.h
420     GraphicsImage.h
421     GraphicsLoader.h
422     GraphicsParams.h
423     GraphicsTypes.h
424     PreviewImage.h
425     PreviewLoader.h
426     Previews.h
427 ''')
428
429
430 src_graphics_files = Split('''
431     GraphicsCache.cpp
432     GraphicsCacheItem.cpp
433     GraphicsConverter.cpp
434     GraphicsImage.cpp
435     GraphicsLoader.cpp
436     GraphicsParams.cpp
437     GraphicsTypes.cpp
438     PreviewImage.cpp
439     PreviewLoader.cpp
440     Previews.cpp
441 ''')
442
443
444 src_graphics_extra_files = Split('''
445     Makefile.am
446     pch.h
447 ''')
448
449
450 src_mathed_header_files = Split('''
451     CommandInset.h
452     InsetMath.h
453     InsetMathAMSArray.h
454     InsetMathArray.h
455     InsetMathBig.h
456     InsetMathBoldSymbol.h
457     InsetMathBox.h
458     InsetMathBrace.h
459     InsetMathCases.h
460     InsetMathChar.h
461     InsetMathColor.h
462     InsetMathComment.h
463     InsetMathDecoration.h
464     InsetMathDelim.h
465     InsetMathDiff.h
466     InsetMathDots.h
467     InsetMathEnv.h
468     InsetMathExFunc.h
469     InsetMathExInt.h
470     InsetMathFont.h
471     InsetMathFontOld.h
472     InsetMathFrac.h
473     InsetMathGrid.h
474     InsetMathHull.h
475     InsetMathKern.h
476     InsetMathLefteqn.h
477     InsetMathLim.h
478     InsetMathMatrix.h
479     InsetMathNest.h
480     InsetMathNumber.h
481     InsetMathOverset.h
482     InsetMathPar.h
483     InsetMathPhantom.h
484     InsetMathRef.h
485     InsetMathRoot.h
486     InsetMathScript.h
487     InsetMathSize.h
488     InsetMathSpace.h
489     InsetMathSplit.h
490     InsetMathSqrt.h
491     InsetMathStackrel.h
492     InsetMathString.h
493     InsetMathSubstack.h
494     InsetMathSymbol.h
495     InsetMathTabular.h
496     InsetMathUnderset.h
497     InsetMathUnknown.h
498     InsetMathXArrow.h
499     InsetMathXYMatrix.h
500     MacroTable.h
501     MathAtom.h
502     MathAutoCorrect.h
503     MathData.h
504     MathExtern.h
505     MathFactory.h
506     MathGridInfo.h
507     MathMacro.h
508     MathMacroArgument.h
509     MathMacroTemplate.h
510     MathParser.h
511     MathStream.h
512     MathSupport.h
513     ReplaceData.h
514     TextPainter.h
515 ''')
516
517
518 src_mathed_files = Split('''
519     CommandInset.cpp
520     InsetMath.cpp
521     InsetMathAMSArray.cpp
522     InsetMathArray.cpp
523     InsetMathBig.cpp
524     InsetMathBoldSymbol.cpp
525     InsetMathBox.cpp
526     InsetMathBrace.cpp
527     InsetMathCases.cpp
528     InsetMathChar.cpp
529     InsetMathColor.cpp
530     InsetMathComment.cpp
531     InsetMathDecoration.cpp
532     InsetMathDelim.cpp
533     InsetMathDiff.cpp
534     InsetMathDots.cpp
535     InsetMathEnv.cpp
536     InsetMathExFunc.cpp
537     InsetMathExInt.cpp
538     InsetMathFont.cpp
539     InsetMathFontOld.cpp
540     InsetMathFrac.cpp
541     InsetMathGrid.cpp
542     InsetMathHull.cpp
543     InsetMathKern.cpp
544     InsetMathLefteqn.cpp
545     InsetMathLim.cpp
546     InsetMathMatrix.cpp
547     InsetMathNest.cpp
548     InsetMathNumber.cpp
549     InsetMathOverset.cpp
550     InsetMathPar.cpp
551     InsetMathPhantom.cpp
552     InsetMathRef.cpp
553     InsetMathRoot.cpp
554     InsetMathScript.cpp
555     InsetMathSize.cpp
556     InsetMathSpace.cpp
557     InsetMathSplit.cpp
558     InsetMathSqrt.cpp
559     InsetMathStackrel.cpp
560     InsetMathString.cpp
561     InsetMathSubstack.cpp
562     InsetMathSymbol.cpp
563     InsetMathTabular.cpp
564     InsetMathUnderset.cpp
565     InsetMathUnknown.cpp
566     InsetMathXArrow.cpp
567     InsetMathXYMatrix.cpp
568     MacroTable.cpp
569     MathAtom.cpp
570     MathAutoCorrect.cpp
571     MathData.cpp
572     MathExtern.cpp
573     MathFactory.cpp
574     MathMacro.cpp
575     MathMacroArgument.cpp
576     MathMacroTemplate.cpp
577     MathParser.cpp
578     MathStream.cpp
579     MathSupport.cpp
580     TextPainter.cpp
581 ''')
582
583
584 src_mathed_extra_files = Split('''
585     BUGS
586     InsetFormulaMacro.cpp
587     InsetFormulaMacro.h
588     InsetMathMBox.cpp
589     InsetMathMBox.h
590     InsetMathXYArrow.cpp
591     InsetMathXYArrow.h
592     Makefile.am
593     README
594     pch.h
595     texify
596 ''')
597
598
599 src_tex2lyx_header_files = Split('''
600     Context.h
601     Font.h
602     Parser.h
603     Spacing.h
604     tex2lyx.h
605 ''')
606
607
608 src_tex2lyx_files = Split('''
609     Context.cpp
610     Font.cpp
611     Parser.cpp
612     boost.cpp
613     gettext.cpp
614     lengthcommon.cpp
615     math.cpp
616     preamble.cpp
617     table.cpp
618     tex2lyx.cpp
619     text.cpp
620 ''')
621
622
623 src_tex2lyx_copied_files = Split('''
624     Color.cpp
625     Counters.cpp
626     FloatList.cpp
627     Floating.cpp
628     Layout.cpp
629     Lexer.cpp
630     TextClass.cpp
631 ''')
632
633
634 src_tex2lyx_extra_files = Split('''
635     Makefile.am
636     pch.h
637     test-insets.tex
638     test-structure.tex
639     test.ltx
640     tex2lyx.man
641 ''')
642
643
644 src_frontends_header_files = Split('''
645     Application.h
646     Clipboard.h
647     FontLoader.h
648     FontMetrics.h
649     KeyModifier.h
650     KeySymbol.h
651     LyXView.h
652     Painter.h
653     Selection.h
654     WorkArea.h
655     WorkAreaManager.h
656     alert.h
657     mouse_state.h
658 ''')
659
660
661 src_frontends_files = Split('''
662     WorkAreaManager.cpp
663 ''')
664
665
666 src_frontends_extra_files = Split('''
667     Makefile.am
668     pch.h
669 ''')
670
671
672 src_frontends_controllers_extra_files = Split('''
673     Makefile.am
674     pch.h
675 ''')
676
677
678 src_frontends_controllers_tests_extra_files = Split('''
679     Makefile.am
680     biblio.cpp
681     boost.cpp
682     pch.h
683     test_biblio
684 ''')
685
686
687 src_frontends_controllers_tests_regfiles_extra_files = Split('''
688     biblio
689 ''')
690
691
692 src_frontends_qt4_header_files = Split('''
693         ButtonPolicy.h
694         Dialog.h
695     Action.h
696     BulletsModule.h
697     ButtonController.h
698     ColorCache.h
699     CustomizedWidgets.h
700     DialogView.h
701     DockView.h
702     EmptyTable.h
703     FileDialog.h
704     FloatPlacement.h
705     GuiAbout.h
706     GuiApplication.h
707     GuiBibitem.h
708     GuiBibtex.h
709     GuiBox.h
710     GuiBranches.h
711     GuiBranch.h
712     GuiChanges.h
713     GuiCharacter.h
714     GuiCharacter.h
715     GuiCitation.h
716     GuiClipboard.h
717     GuiCommandBuffer.h
718     GuiCommandEdit.h
719     GuiDelimiter.h
720     GuiDialog.h
721     GuiDocument.h
722     GuiErrorList.h
723     GuiERT.h
724     GuiExternal.h
725     GuiFloat.h
726     GuiFontExample.h
727     GuiFontLoader.h
728     GuiGraphics.h
729     GuiGraphicsUi.h
730     GuiHyperlink.h
731     GuiIdListModel.h
732     GuiImage.h
733     GuiInclude.h
734     GuiIndex.h
735     GuiKeySymbol.h
736     GuiListings.h
737     GuiLog.h
738     GuiMath.h
739     GuiMathMatrix.h
740     GuiNomencl.h
741     GuiNote.h
742     GuiPainter.h
743     GuiParagraph.h
744     GuiPopupMenu.h
745     GuiPrefs.h
746     GuiPrint.h
747     GuiRef.h
748     GuiSearch.h
749     GuiSelection.h
750     GuiSelectionManager.h
751     GuiSendto.h
752     GuiSetBorder.h
753     GuiShowFile.h
754     GuiSpellchecker.h
755     GuiSymbols.h
756     GuiTabularCreate.h
757     GuiTabular.h
758     GuiTexinfo.h
759     GuiThesaurus.h
760     GuiToc.h
761     GuiToolbar.h
762     GuiToolbars.h
763     GuiView.h
764     GuiViewSource.h
765     GuiVSpace.h
766     GuiWorkArea.h
767     GuiWrap.h
768     IconPalette.h
769     InsertTableWidget.h
770     LaTeXHighlighter.h
771     LengthCombo.h
772     LyXFileDialog.h
773     Menus.h
774     PanelStack.h
775     TocModel.h
776     TocWidget.h
777     Validator.h
778     qlkey.h
779     qt_helpers.h
780 ''')
781
782
783 src_frontends_qt4_files = Split('''
784         ButtonPolicy.cpp
785         Dialog.cpp
786     Action.cpp
787     BulletsModule.cpp
788     ButtonController.cpp
789     ColorCache.cpp
790     CustomizedWidgets.cpp
791     DialogView.cpp
792     EmptyTable.cpp
793     FileDialog.cpp
794     FloatPlacement.cpp
795     GuiAbout.cpp
796     GuiAlert.cpp
797     GuiApplication.cpp
798     GuiBibitem.cpp
799     GuiBibtex.cpp
800     GuiBox.cpp
801     GuiBranch.cpp
802     GuiBranches.cpp
803     GuiChanges.cpp
804     GuiCharacter.cpp
805     GuiCitation.cpp
806     GuiClipboard.cpp
807     GuiCommandBuffer.cpp
808     GuiCommandEdit.cpp
809     GuiDelimiter.cpp
810     GuiDialog.cpp
811     GuiDocument.cpp
812     GuiErrorList.cpp
813     GuiERT.cpp
814     GuiExternal.cpp
815     GuiFloat.cpp
816     GuiFontExample.cpp
817     GuiFontLoader.cpp
818     GuiFontMetrics.cpp
819     GuiGraphics.cpp
820     GuiHyperlink.cpp
821     GuiIdListModel.cpp 
822     GuiImage.cpp
823     GuiInclude.cpp
824     GuiIndex.cpp
825     GuiKeySymbol.cpp
826     GuiListings.cpp
827     GuiLog.cpp
828     GuiMath.cpp
829     GuiMathMatrix.cpp
830     GuiNomencl.cpp
831     GuiNote.cpp
832     GuiPainter.cpp
833     GuiParagraph.cpp
834     GuiPopupMenu.cpp
835     GuiPrefs.cpp
836     GuiPrint.cpp
837     GuiRef.cpp
838     GuiSearch.cpp
839     GuiSelection.cpp
840     GuiSelectionManager.cpp
841     GuiSendto.cpp
842     GuiSetBorder.cpp
843     GuiShowFile.cpp
844     GuiSpellchecker.cpp
845     GuiSymbols.cpp
846     GuiTabular.cpp
847     GuiTabularCreate.cpp
848     GuiTexinfo.cpp
849     GuiThesaurus.cpp
850     GuiToc.cpp
851     GuiToolbar.cpp
852     GuiToolbars.cpp
853     GuiView.cpp
854     GuiViewSource.cpp
855     GuiVSpace.cpp
856     GuiWorkArea.cpp
857     GuiWrap.cpp
858     IconPalette.cpp
859     InsertTableWidget.cpp
860     LengthCombo.cpp
861     LaTeXHighlighter.cpp
862     LyXFileDialog.cpp
863     Menus.cpp
864     PanelStack.cpp
865     TocModel.cpp
866     TocWidget.cpp
867     Validator.cpp
868     qt_helpers.cpp
869 ''')
870
871
872 src_frontends_qt4_extra_files = Split('''
873     GuiFontMetrics.h
874     Makefile.am
875     README
876     pch.h
877 ''')
878
879
880 src_frontends_qt4_ui_files = Split('''
881     AboutUi.ui
882     AskForTextUi.ui
883     BibitemUi.ui
884     BiblioUi.ui
885     BibtexAddUi.ui
886     BibtexUi.ui
887     BoxUi.ui
888     BranchUi.ui
889     BranchesUi.ui
890     BulletsUi.ui
891     ChangesUi.ui
892     CharacterUi.ui
893     CitationUi.ui
894     DelimiterUi.ui
895     DocumentUi.ui
896     ERTUi.ui
897     ErrorListUi.ui
898     EmbeddedFilesUi.ui
899     ExternalUi.ui
900     FloatPlacementUi.ui
901     FloatUi.ui
902     FontUi.ui
903     GraphicsUi.ui
904     HyperlinkUi.ui
905     IncludeUi.ui
906     IndexUi.ui
907     LaTeXUi.ui
908     LanguageUi.ui
909     ListingsUi.ui
910     LogUi.ui
911     MarginsUi.ui
912     MathMatrixUi.ui
913     MathsUi.ui
914     NomenclUi.ui
915     NoteUi.ui
916     NumberingUi.ui
917     PageLayoutUi.ui
918     ParagraphUi.ui
919     PDFSupportUi.ui
920     PreambleUi.ui
921     PrefColorsUi.ui
922     PrefConvertersUi.ui
923     PrefDateUi.ui
924     PrefDisplayUi.ui
925     PrefFileformatsUi.ui
926     PrefIdentityUi.ui
927     PrefInputUi.ui
928     PrefLanguageUi.ui
929     PrefLatexUi.ui
930     PrefPathsUi.ui
931     PrefPlaintextUi.ui
932     PrefPrinterUi.ui
933     PrefScreenFontsUi.ui
934     PrefShortcutsUi.ui
935     PrefSpellcheckerUi.ui
936     PrefUi.ui
937     PrefsUi.ui
938     PrintUi.ui
939     RefUi.ui
940     SearchUi.ui
941     SendtoUi.ui
942     ShortcutUi.ui
943     ShowFileUi.ui
944     SpellcheckerUi.ui
945     SymbolsUi.ui
946     TabularCreateUi.ui
947     TabularUi.ui
948     TexinfoUi.ui
949     TextLayoutUi.ui
950     ThesaurusUi.ui
951     TocUi.ui
952     VSpaceUi.ui
953     ViewSourceUi.ui
954     WrapUi.ui
955 ''')
956
957
958 src_frontends_qt4_ui_extra_files = Split('''
959     Makefile.am
960     compile_uic.sh
961 ''')
962
963
964 src_insets_header_files = Split('''
965     ExternalSupport.h
966     ExternalTemplate.h
967     ExternalTransforms.h
968     Inset.h
969     InsetBibitem.h
970     InsetBibtex.h
971     InsetBox.h
972     InsetBranch.h
973     InsetCaption.h
974     InsetCitation.h
975     InsetCode.h
976     InsetCollapsable.h
977     InsetCommand.h
978     InsetCommandParams.h
979     InsetERT.h
980     InsetEnvironment.h
981     InsetExternal.h
982     InsetFlex.h
983     InsetFloat.h
984     InsetFloatList.h
985     InsetFoot.h
986     InsetFootlike.h
987     InsetGraphics.h
988     InsetGraphicsParams.h
989     InsetHFill.h
990     InsetHyperlink.h
991     InsetInclude.h
992     InsetIndex.h
993     InsetInfo.h
994     InsetLabel.h
995     InsetLayout.h
996     InsetLine.h
997     InsetListings.h
998     InsetListingsParams.h
999     InsetMarginal.h
1000     InsetNewline.h
1001     InsetNewpage.h
1002     InsetNomencl.h
1003     InsetNote.h
1004     InsetOptArg.h
1005     InsetQuotes.h
1006     InsetRef.h
1007     InsetSpace.h
1008     InsetSpecialChar.h
1009     InsetTOC.h
1010     InsetTabular.h
1011     InsetText.h
1012     InsetVSpace.h
1013     InsetWrap.h
1014     MailInset.h
1015     RenderBase.h
1016     RenderButton.h
1017     RenderGraphic.h
1018     RenderPreview.h
1019 ''')
1020
1021
1022 src_insets_files = Split('''
1023     ExternalSupport.cpp
1024     ExternalTemplate.cpp
1025     ExternalTransforms.cpp
1026     Inset.cpp
1027     InsetBibitem.cpp
1028     InsetBibtex.cpp
1029     InsetBox.cpp
1030     InsetBranch.cpp
1031     InsetCaption.cpp
1032     InsetCitation.cpp
1033     InsetCollapsable.cpp
1034     InsetCommand.cpp
1035     InsetCommandParams.cpp
1036     InsetERT.cpp
1037     InsetEnvironment.cpp
1038     InsetExternal.cpp
1039     InsetFlex.cpp
1040     InsetFloat.cpp
1041     InsetFloatList.cpp
1042     InsetFoot.cpp
1043     InsetFootlike.cpp
1044     InsetGraphics.cpp
1045     InsetGraphicsParams.cpp
1046     InsetHFill.cpp
1047     InsetHyperlink.cpp
1048     InsetInclude.cpp
1049     InsetIndex.cpp
1050     InsetInfo.cpp
1051     InsetLabel.cpp
1052     InsetLine.cpp
1053     InsetListings.cpp
1054     InsetListingsParams.cpp
1055     InsetMarginal.cpp
1056     InsetNewline.cpp
1057     InsetNewpage.cpp
1058     InsetNomencl.cpp
1059     InsetNote.cpp
1060     InsetOptArg.cpp
1061     InsetQuotes.cpp
1062     InsetRef.cpp
1063     InsetSpace.cpp
1064     InsetSpecialChar.cpp
1065     InsetTOC.cpp
1066     InsetTabular.cpp
1067     InsetText.cpp
1068     InsetVSpace.cpp
1069     InsetWrap.cpp
1070     MailInset.cpp
1071     RenderButton.cpp
1072     RenderGraphic.cpp
1073     RenderPreview.cpp
1074 ''')
1075
1076
1077 src_insets_extra_files = Split('''
1078     InsetTheorem.cpp
1079     InsetTheorem.h
1080     Makefile.am
1081     pch.h
1082 ''')
1083
1084
1085 intl_header_files = Split('''
1086     eval-plural.h
1087     gettextP.h
1088     gmo.h
1089     hash-string.h
1090     loadinfo.h
1091     localcharset.h
1092     os2compat.h
1093     plural-exp.h
1094     printf-args.h
1095     printf-parse.h
1096     relocatable.h
1097     vasnprintf.h
1098     vasnwprintf.h
1099     wprintf-parse.h
1100     xsize.h
1101 ''')
1102
1103
1104 intl_files = Split('''
1105     bindtextdom.c
1106     dcgettext.c
1107     dcigettext.c
1108     dcngettext.c
1109     dgettext.c
1110     dngettext.c
1111     explodename.c
1112     finddomain.c
1113     gettext.c
1114     intl-compat.c
1115     l10nflist.c
1116     langprefs.c
1117     loadmsgcat.c
1118     localcharset.c
1119     localealias.c
1120     localename.c
1121     log.c
1122     ngettext.c
1123     osdep.c
1124     plural-exp.c
1125     plural.c
1126     printf.c
1127     relocatable.c
1128     textdomain.c
1129 ''')
1130
1131
1132 intl_extra_files = Split('''
1133     VERSION
1134     config.charset
1135     libgnuintl.h.in
1136     locale.alias
1137     os2compat.c
1138     plural.y
1139     printf-args.c
1140     printf-parse.c
1141     ref-add.sin
1142     ref-del.sin
1143     vasnprintf.c
1144 ''')
1145
1146
1147 config_extra_files = Split('''
1148     Makefile.am
1149     common.am
1150     config.guess
1151     config.rpath
1152     config.sub
1153     depcomp
1154     install-sh
1155     libtool.m4
1156     ltmain.sh
1157     lyxinclude.m4
1158     missing
1159     mkinstalldirs
1160     pkg.m4
1161     py-compile
1162     qt4.m4
1163     spell.m4
1164 ''')
1165
1166
1167 sourcedoc_extra_files = Split('''
1168     Doxyfile.in
1169     Makefile.am
1170 ''')
1171
1172
1173 po_extra_files = Split('''
1174     LINGUAS
1175     Makefile.in.in
1176     Makevars
1177     POTFILES.in
1178     README
1179     Rules-quot
1180     bg.po
1181     boldquot.sed
1182     ca.po
1183     cs.po
1184     da.po
1185     de.po
1186     en@boldquot.header
1187     en@quot.header
1188     es.po
1189     eu.po
1190     fi.po
1191     fr.po
1192     gl.po
1193     he.po
1194     hu.po
1195     insert-header.sin
1196     it.po
1197     ja.po
1198     ko.po
1199     lyx_pot.py
1200     nb.po
1201     nl.po
1202     nn.po
1203     pl.po
1204     pocheck.pl
1205     postats.sh
1206     pt.po
1207     quot.sed
1208     remove-potcdate.sin
1209     ro.po
1210     ru.po
1211     sk.po
1212     sl.po
1213     sv.po
1214     tr.po
1215     wa.po
1216     zh_CN.po
1217     zh_TW.po
1218 ''')
1219
1220
1221 lib_files = Split('''
1222     CREDITS
1223     chkconfig.ltx
1224     configure.py
1225     encodings
1226     external_templates
1227     languages
1228     symbols
1229     syntax.default
1230     unicodesymbols
1231 ''')
1232
1233
1234 lib_extra_files = Split('''
1235     Makefile.am
1236     autocorrect
1237     build-listerrors
1238     generate_contributions.py
1239 ''')
1240
1241
1242 lib_kbd_files = Split('''
1243     american-2.kmap
1244     american.kmap
1245     arabic.kmap
1246     bg-bds-1251.kmap
1247     brazil.kmap
1248     brazil2.kmap
1249     czech-prg.kmap
1250     czech.kmap
1251     espanol.kmap
1252     european.kmap
1253     farsi.kmap
1254     francais.kmap
1255     french.kmap
1256     german-2.kmap
1257     german-3.kmap
1258     german.kmap
1259     greek.kmap
1260     hebrew.kmap
1261     koi8-r.kmap
1262     koi8-u.kmap
1263     latvian.kmap
1264     magyar-2.kmap
1265     magyar-3.kmap
1266     magyar.kmap
1267     null.kmap
1268     polish.kmap
1269     polski.kmap
1270     portuges.kmap
1271     romanian.kmap
1272     serbian.kmap
1273     serbocroatian.kmap
1274     sf.kmap
1275     sg.kmap
1276     slovak.kmap
1277     slovene.kmap
1278     thai-kedmanee.kmap
1279     transilvanian.kmap
1280     turkish-f.kmap
1281     turkish.kmap
1282 ''')
1283
1284
1285 lib_templates_files = Split('''
1286     IEEEtran.lyx
1287     README.new_templates
1288     aa.lyx
1289     aastex.lyx
1290     agu_article.lyx
1291     apa.lyx
1292     beamer-conference-ornate-20min.lyx
1293     de_beamer-conference-ornate-20min.lyx
1294     dinbrief.lyx
1295     docbook_article.lyx
1296     elsart.lyx
1297     fr_beamer-conference-ornate-20min.lyx
1298     g-brief-de.lyx
1299     g-brief-en.lyx
1300     g-brief2.lyx
1301     hollywood.lyx
1302     ijmpc.lyx
1303     ijmpd.lyx
1304     iop-article.lyx
1305     kluwer.lyx
1306     koma-letter2.lyx
1307     latex8.lyx
1308     letter.lyx
1309     revtex.lyx
1310     revtex4.lyx
1311     slides.lyx
1312 ''')
1313
1314
1315 lib_ui_files = Split('''
1316     classic.ui
1317     default.ui
1318     stdmenus.inc
1319     stdtoolbars.inc
1320 ''')
1321
1322
1323 lib_fonts_files = Split('''
1324     BaKoMaFontLicense.txt
1325     ReadmeBaKoMa4LyX.txt
1326     cmex10.ttf
1327     cmmi10.ttf
1328     cmr10.ttf
1329     cmsy10.ttf
1330     esint10.ttf
1331     eufm10.ttf
1332     msam10.ttf
1333     msbm10.ttf
1334     wasy10.ttf
1335 ''')
1336
1337
1338 lib_images_files = Split('''
1339     all-changes-accept.png
1340     all-changes-reject.png
1341     amssymb.png
1342     banner.png
1343     bookmark-goto.png
1344     bookmark-save.png
1345     box-insert.png
1346     break-line.png
1347     buffer-close.png
1348     buffer-export_dvi.png
1349     buffer-export_latex.png
1350     buffer-export_pdf2.png
1351     buffer-export_ps.png
1352     buffer-export_text.png
1353     buffer-new.png
1354     buffer-reload.png
1355     buffer-update_dvi.png
1356     buffer-update_pdf2.png
1357     buffer-update_ps.png
1358     buffer-view_dvi.png
1359     buffer-view_pdf2.png
1360     buffer-view_ps.png
1361     buffer-write-as.png
1362     buffer-write.png
1363     build-program.png
1364     change-accept.png
1365     change-next.png
1366     change-reject.png
1367     changes-merge.png
1368     changes-output.png
1369     changes-track.png
1370     closetab.png
1371     copy.png
1372     cut.png
1373     demote.png
1374     depth-decrement.png
1375     depth-increment.png
1376     dialog-preferences.png
1377     dialog-show-new-inset_citation.png
1378     dialog-show-new-inset_graphics.png
1379     dialog-show-new-inset_include.png
1380     dialog-show-new-inset_ref.png
1381     dialog-show_character.png
1382     dialog-show_findreplace.png
1383     dialog-show_mathdelimiter.png
1384     dialog-show_mathmatrix.png
1385     dialog-show_print.png
1386     dialog-show_spellchecker.png
1387     dialog-toggle_toc.png
1388     down.png
1389     ert-insert.png
1390     file-open.png
1391     float-insert_figure.png
1392     float-insert_table.png
1393     font-bold.png
1394     font-emph.png
1395     font-free-apply.png
1396     font-noun.png
1397     font-sans.png
1398     footnote-insert.png
1399     href-insert.png
1400     index-insert.png
1401     label-insert.png
1402     layout-document.png
1403     layout-paragraph.png
1404     layout.png
1405     layout_Description.png
1406     layout_Enumerate.png
1407     layout_Itemize.png
1408     layout_List.png
1409     layout_LyX-Code.png
1410     layout_Scrap.png
1411     layout_Section.png
1412     lyx-quit.png
1413     lyx.png
1414     marginalnote-insert.png
1415     math-display.png
1416     math-macro-add-greedy-optional-param.png
1417     math-macro-add-optional-param.png
1418     math-macro-add-param.png
1419     math-macro-append-greedy-param.png
1420     math-macro-make-nonoptional.png
1421     math-macro-make-optional.png
1422     math-macro-remove-greedy-param.png
1423     math-macro-remove-optional-param.png
1424     math-macro-remove-param.png
1425     math-macro_newmacroname_newcommand.png
1426     math-matrix.png
1427     math-mode.png
1428     math-subscript.png
1429     math-superscript.png
1430     nomencl-insert.png
1431     note-insert.png
1432     note-next.png
1433     paste.png
1434     promote.png
1435     pin.png
1436     psnfss1.png
1437     psnfss2.png
1438     psnfss3.png
1439     psnfss4.png
1440     redo.png
1441     reload.png
1442     standard.png
1443     tabular-feature_align-center.png
1444     tabular-feature_align-left.png
1445     tabular-feature_align-right.png
1446     tabular-feature_append-column.png
1447     tabular-feature_append-row.png
1448     tabular-feature_delete-column.png
1449     tabular-feature_delete-row.png
1450     tabular-feature_multicolumn.png
1451     tabular-feature_set-all-lines.png
1452     tabular-feature_set-longtabular.png
1453     tabular-feature_set-rotate-cell.png
1454     tabular-feature_toggle-rotate-cell.png
1455     tabular-feature_set-rotate-tabular.png
1456     tabular-feature_toggle-rotate-tabular.png
1457     tabular-feature_toggle-line-bottom.png
1458     tabular-feature_toggle-line-left.png
1459     tabular-feature_toggle-line-right.png
1460     tabular-feature_toggle-line-top.png
1461     tabular-feature_unset-all-lines.png
1462     tabular-feature_valign-bottom.png
1463     tabular-feature_valign-middle.png
1464     tabular-feature_valign-top.png
1465     tabular-insert.png
1466     thesaurus-entry.png
1467     toolbar-toggle_math.png
1468     toolbar-toggle_math_panels.png
1469     toolbar-toggle_table.png
1470     undo.png
1471     unknown.png
1472     up.png
1473     url-insert.png
1474 ''')
1475
1476
1477 lib_images_extra_files = Split('''
1478     README
1479     font-smallcaps.png
1480 ''')
1481
1482
1483 lib_images_math_files = Split('''
1484     Bbbk.png
1485     Finv.png
1486     Game.png
1487     Im.png
1488     Lleftarrow.png
1489     Lsh.png
1490     Re.png
1491     Rrightarrow.png
1492     Rsh.png
1493     Vert.png
1494     Vvdash.png
1495     acute.png
1496     aleph.png
1497     alpha.png
1498     amalg.png
1499     angle.png
1500     approx.png
1501     approxeq.png
1502     asymp.png
1503     backepsilon.png
1504     backprime.png
1505     backsim.png
1506     backsimeq.png
1507     backslash.png
1508     bar.png
1509     bars.png
1510     barwedge.png
1511     because.png
1512     beta.png
1513     beth.png
1514     between.png
1515     bigcap.png
1516     bigcirc.png
1517     bigcup.png
1518     bigodot.png
1519     bigoplus.png
1520     bigotimes.png
1521     bigsqcup.png
1522     bigstar.png
1523     bigtriangledown.png
1524     bigtriangleup.png
1525     biguplus.png
1526     bigvee.png
1527     bigwedge.png
1528     blacklozenge.png
1529     blacksquare.png
1530     blacktriangle.png
1531     blacktriangledown.png
1532     blacktriangleleft.png
1533     blacktriangleright.png
1534     bot.png
1535     bowtie.png
1536     boxdot.png
1537     boxminus.png
1538     boxplus.png
1539     boxtimes.png
1540     breve.png
1541     bullet.png
1542     bumpeq.png
1543     bumpeq2.png
1544     cap.png
1545     cap2.png
1546     cases.png
1547     cdot.png
1548     cdots.png
1549     centerdot.png
1550     check.png
1551     chi.png
1552     circ.png
1553     circeq.png
1554     circlearrowleft.png
1555     circlearrowright.png
1556     circledS.png
1557     circledast.png
1558     circledcirc.png
1559     circleddash.png
1560     clubsuit.png
1561     complement.png
1562     cong.png
1563     coprod.png
1564     cup.png
1565     cup2.png
1566     curlyeqprec.png
1567     curlyeqsucc.png
1568     curlyvee.png
1569     curlywedge.png
1570     curvearrowleft.png
1571     curvearrowright.png
1572     dagger.png
1573     daleth.png
1574     dashleftarrow.png
1575     dashrightarrow.png
1576     dashv.png
1577     ddagger.png
1578     ddot.png
1579     ddots.png
1580     delim.png
1581     delta.png
1582     delta2.png
1583     diagdown.png
1584     diagup.png
1585     diamond.png
1586     diamondsuit.png
1587     digamma.png
1588     div.png
1589     divideontimes.png
1590     dot.png
1591     doteq.png
1592     doteqdot.png
1593     dotplus.png
1594     dotsint.png
1595     dotsintop.png
1596     doublebarwedge.png
1597     downarrow.png
1598     downarrow2.png
1599     downdownarrows.png
1600     downharpoonleft.png
1601     downharpoonright.png
1602     ell.png
1603     empty.png
1604     emptyset.png
1605     epsilon.png
1606     eqcirc.png
1607     eqslantgtr.png
1608     eqslantless.png
1609     equation.png
1610     equiv.png
1611     eta.png
1612     eth.png
1613     exists.png
1614     fallingdotseq.png
1615     flat.png
1616     font.png
1617     forall.png
1618     frac-square.png
1619     frac.png
1620     frown.png
1621     functions.png
1622     gamma.png
1623     gamma2.png
1624     geq.png
1625     geqq.png
1626     geqslant.png
1627     gg.png
1628     ggg.png
1629     gimel.png
1630     gnapprox.png
1631     gneq.png
1632     gneqq.png
1633     gnsim.png
1634     grave.png
1635     gtrapprox.png
1636     gtrdot.png
1637     gtreqless.png
1638     gtreqqless.png
1639     gtrless.png
1640     gtrsim.png
1641     gvertneqq.png
1642     hat.png
1643     hbar.png
1644     heartsuit.png
1645     hookleftarrow.png
1646     hookrightarrow.png
1647     hphantom.png
1648     hslash.png
1649     iiiint.png
1650     iiiintop.png
1651     iiint.png
1652     iiintop.png
1653     iint.png
1654     iintop.png
1655     imath.png
1656     in.png
1657     infty.png
1658     int.png
1659     intercal.png
1660     intop.png
1661     iota.png
1662     jmath.png
1663     kappa.png
1664     lambda.png
1665     lambda2.png
1666     langle.png
1667     lbrace.png
1668     lbrace_rbrace.png
1669     lbracket.png
1670     lbracket_rbracket.png
1671     lceil.png
1672     lceil_rceil.png
1673     ldots.png
1674     leftarrow.png
1675     leftarrow2.png
1676     leftarrowtail.png
1677     leftharpoondown.png
1678     leftharpoonup.png
1679     leftleftarrows.png
1680     leftrightarrow.png
1681     leftrightarrow2.png
1682     leftrightarrows.png
1683     leftrightharpoons.png
1684     leftrightsquigarrow.png
1685     leftthreetimes.png
1686     leq.png
1687     leqq.png
1688     leqslant.png
1689     lessapprox.png
1690     lessdot.png
1691     lesseqgtr.png
1692     lesseqqgtr.png
1693     lessgtr.png
1694     lesssim.png
1695     lfloor.png
1696     lfloor_rfloor.png
1697     ll.png
1698     llcorner.png
1699     lll.png
1700     lnapprox.png
1701     lneq.png
1702     lneqq.png
1703     lnsim.png
1704     longleftarrow.png
1705     longleftarrow2.png
1706     longleftrightarrow.png
1707     longleftrightarrow2.png
1708     longmapsto.png
1709     longrightarrow.png
1710     longrightarrow2.png
1711     looparrowleft.png
1712     looparrowright.png
1713     lozenge.png
1714     lparen.png
1715     lparen_rparen.png
1716     lrcorner.png
1717     ltimes.png
1718     lvertneqq.png
1719     mapsto.png
1720     mathbb_C.png
1721     mathbb_H.png
1722     mathbb_N.png
1723     mathbb_Q.png
1724     mathbb_R.png
1725     mathbb_Z.png
1726     mathcal_F.png
1727     mathcal_H.png
1728     mathcal_L.png
1729     mathcal_O.png
1730     mathcircumflex.png
1731     mathrm_T.png
1732     matrix.png
1733     measuredangle.png
1734     mho.png
1735     mid.png
1736     models.png
1737     mp.png
1738     mu.png
1739     multimap.png
1740     nabla.png
1741     natural.png
1742     ncong.png
1743     nearrow.png
1744     neg.png
1745     neq.png
1746     nexists.png
1747     ngeq.png
1748     ngeqq.png
1749     ngeqslant.png
1750     ngtr.png
1751     ni.png
1752     nleftarrow.png
1753     nleftarrow2.png
1754     nleftrightarrow.png
1755     nleftrightarrow2.png
1756     nleq.png
1757     nleqq.png
1758     nleqslant.png
1759     nless.png
1760     nmid.png
1761     notin.png
1762     nparallel.png
1763     nprec.png
1764     npreceq.png
1765     nrightarrow.png
1766     nrightarrow2.png
1767     nshortmid.png
1768     nshortparallel.png
1769     nsim.png
1770     nsubseteq.png
1771     nsucc.png
1772     nsucceq.png
1773     nsupseteq.png
1774     nsupseteqq.png
1775     ntriangleleft.png
1776     ntrianglelefteq.png
1777     ntriangleright.png
1778     ntrianglerighteq.png
1779     nu.png
1780     nvdash.png
1781     nvdash2.png
1782     nvdash3.png
1783     nwarrow.png
1784     odot.png
1785     oiint.png
1786     oiintop.png
1787     oint.png
1788     ointclockwise.png
1789     ointclockwiseop.png
1790     ointctrclockwise.png
1791     ointctrclockwiseop.png
1792     ointop.png
1793     omega.png
1794     omega2.png
1795     ominus.png
1796     oplus.png
1797     oslash.png
1798     otimes.png
1799     overbrace.png
1800     overleftarrow.png
1801     overleftrightarrow.png
1802     overline.png
1803     overrightarrow.png
1804     overset.png
1805     parallel.png
1806     partial.png
1807     perp.png
1808     phantom.png
1809     phi.png
1810     phi2.png
1811     pi.png
1812     pi2.png
1813     pitchfork.png
1814     pm.png
1815     prec.png
1816     precapprox.png
1817     preccurlyeq.png
1818     preceq.png
1819     precnapprox.png
1820     precnsim.png
1821     precsim.png
1822     prime.png
1823     prod.png
1824     propto.png
1825     psi.png
1826     psi2.png
1827     rangle.png
1828     rbrace.png
1829     rbracket.png
1830     rceil.png
1831     rfloor.png
1832     rho.png
1833     rightarrow.png
1834     rightarrow2.png
1835     rightarrowtail.png
1836     rightharpoondown.png
1837     rightharpoonup.png
1838     rightleftarrows.png
1839     rightleftharpoons.png
1840     rightrightarrows.png
1841     rightsquigarrow.png
1842     rightthreetimes.png
1843     risingdotseq.png
1844     root.png
1845     rparen.png
1846     rtimes.png
1847     searrow.png
1848     setminus.png
1849     sharp.png
1850     shortmid.png
1851     shortparallel.png
1852     sigma.png
1853     sigma2.png
1854     sim.png
1855     simeq.png
1856     slash.png
1857     smallfrown.png
1858     smallsetminus.png
1859     smallsmile.png
1860     smile.png
1861     space.png
1862     spadesuit.png
1863     sphericalangle.png
1864     sqcap.png
1865     sqcup.png
1866     sqiint.png
1867     sqiintop.png
1868     sqint.png
1869     sqintop.png
1870     sqrt-square.png
1871     sqrt.png
1872     sqsubset.png
1873     sqsubseteq.png
1874     sqsupset.png
1875     sqsupseteq.png
1876     square.png
1877     star.png
1878     style.png
1879     style.png
1880     sub.png
1881     subset.png
1882     subset2.png
1883     subseteq.png
1884     subseteqq.png
1885     subsetneq.png
1886     subsetneqq.png
1887     succ.png
1888     succapprox.png
1889     succcurlyeq.png
1890     succeq.png
1891     succnapprox.png
1892     succnsim.png
1893     succsim.png
1894     sum.png
1895     super.png
1896     supset.png
1897     supset2.png
1898     supseteq.png
1899     supseteqq.png
1900     supsetneq.png
1901     supsetneqq.png
1902     surd.png
1903     swarrow.png
1904     tau.png
1905     textrm_AA.png
1906     textrm_O.png
1907     therefore.png
1908     theta.png
1909     theta2.png
1910     thickapprox.png
1911     thicksim.png
1912     tilde.png
1913     times.png
1914     top.png
1915     triangle.png
1916     triangledown.png
1917     triangleleft.png
1918     trianglelefteq.png
1919     triangleq.png
1920     triangleright.png
1921     trianglerighteq.png
1922     twoheadleftarrow.png
1923     twoheadrightarrow.png
1924     ulcorner.png
1925     underbrace.png
1926     underleftarrow.png
1927     underleftrightarrow.png
1928     underline.png
1929     underrightarrow.png
1930     underscore.png
1931     underset.png
1932     uparrow.png
1933     uparrow2.png
1934     updownarrow.png
1935     updownarrow2.png
1936     upharpoonleft.png
1937     upharpoonright.png
1938     uplus.png
1939     upsilon.png
1940     upsilon2.png
1941     upuparrows.png
1942     urcorner.png
1943     varepsilon.png
1944     varkappa.png
1945     varnothing.png
1946     varphi.png
1947     varpi.png
1948     varpropto.png
1949     varrho.png
1950     varsigma.png
1951     varsubsetneq.png
1952     varsubsetneqq.png
1953     varsupsetneq.png
1954     varsupsetneqq.png
1955     vartheta.png
1956     vartriangle.png
1957     vartriangleleft.png
1958     vartriangleright.png
1959     vdash.png
1960     vdash2.png
1961     vdash3.png
1962     vdots.png
1963     vec.png
1964     vee.png
1965     veebar.png
1966     vphantom.png
1967     wedge.png
1968     widehat.png
1969     widetilde.png
1970     wp.png
1971     wr.png
1972     xi.png
1973     xi2.png
1974     zeta.png
1975 ''')
1976
1977
1978 lib_images_math_extra_files = Split('''
1979     ams_arrows.png
1980     ams_misc.png
1981     ams_nrel.png
1982     ams_ops.png
1983     ams_rel.png
1984     arrows.png
1985     bop.png
1986     brel.png
1987     deco.png
1988     deco.png
1989     delim.png
1990     delim0.png
1991     delim1.png
1992     dots.png
1993     font.png
1994     functions.png
1995     greek.png
1996     misc.png
1997     varsz.png
1998 ''')
1999
2000
2001 lib_images_commands_files = Split('''
2002 ''')
2003
2004
2005 lib_images_attic_extra_files = Split('''
2006     dialog-show_mathpanel.png
2007 ''')
2008
2009
2010 lib_tex_files = Split('''
2011     broadway.cls
2012     hollywood.cls
2013     lyxchess.sty
2014     lyxskak.sty
2015     revtex.cls
2016 ''')
2017
2018
2019 lib_doc_files = Split('''
2020     Customization.lyx
2021     DocStyle.lyx
2022     DummyDocument1.lyx
2023     DummyDocument2.lyx
2024     DummyTextDocument.txt
2025     EmbeddedObjects.lyx
2026     Extended.lyx
2027     FAQ.lyx
2028     Formula-numbering.lyx
2029     Intro.lyx
2030     LaTeXConfig.lyx
2031     Math.lyx
2032     Reference.lyx
2033     Shortcuts.lyx
2034     Tutorial.lyx
2035     UserGuide.lyx
2036 ''')
2037
2038
2039 lib_doc_biblio_files = Split('''
2040     alphadin.bst
2041     LyXDocs.bib
2042 ''')
2043
2044
2045 lib_doc_clipart_files = Split('''
2046     Abstract.pdf
2047     BoxInsetDefaultQt4.png
2048     ChangesToolbar.png
2049     ChildDocumentQt4.png
2050     CommentNoteImageQt4.png
2051     ERT.png
2052     ExternalMaterialQt4.png
2053     ExtraToolbar.png
2054     FramedNoteImageQt4.png
2055     GreyedOutNoteImageQt4.png
2056     LaTeX.png
2057     LyXNoteImageQt4.png
2058     ShadedNoteImageQt4.png
2059     SpaceMarker.png
2060     StandardToolbar.png
2061     ToolbarEnvBox.png
2062     endnotes.pdf
2063     escher-lsd.eps
2064     floatQt4.png
2065     footnoteQt4.png
2066     labelQt4.png
2067     macrobox.png
2068     macrouse.png
2069     mbox.png
2070     mobius.eps
2071     platypus.eps
2072     referenceQt4.png
2073     ViewToolbar.png
2074     with_fntright.pdf
2075     without_fntright.pdf
2076 ''')
2077
2078
2079 lib_doc_extra_files = Split('''
2080     Makefile.am
2081     Makefile.depend
2082     README.Documentation
2083     depend.py
2084     doc_toc.py
2085 ''')
2086
2087
2088 lib_doc_cs_files = Split('''
2089     Tutorial.lyx
2090 ''')
2091
2092
2093 lib_doc_de_files = Split('''
2094     Customization.lyx
2095     DummyDocument1.lyx
2096     DummyDocument2.lyx
2097     DummyTextDocument.txt
2098     EmbeddedObjects.lyx
2099     Extended.lyx
2100     FAQ.lyx
2101     Formelnummerierung.lyx
2102     Intro.lyx
2103     Math.lyx
2104     Tutorial.lyx
2105     UserGuide.lyx
2106 ''')
2107
2108
2109 lib_doc_de_clipart_files = Split('''
2110     ERT.png
2111     ExternesMaterialQt4.png
2112     FussnoteQt4.png
2113     GerahmteNotizQt4.png
2114     GleitobjektQt4.png
2115     GrauschriftNotizQt4.png
2116     KommentarQt4.png
2117     LyXNotizQt4.png
2118     Marke.png
2119     Querverweis.png
2120     SchattierteNotizQt4.png
2121     StandardBoxQt4.png
2122     UnterdokumentQt4.png
2123 ''')
2124
2125
2126 lib_doc_da_files = Split('''
2127     Intro.lyx
2128 ''')
2129
2130
2131 lib_doc_es_files = Split('''
2132     DocumentoPostizo1.lyx
2133     DocumentoPostizo2.lyx
2134     DocumentoTextoPostizo.txt
2135     EmbeddedObjects.lyx
2136     Extended.lyx
2137     FAQ.lyx
2138     Intro.lyx
2139     Tutorial.lyx
2140     UserGuide.lyx
2141 ''')
2142
2143
2144 lib_doc_es_clipart_files = Split('''
2145     ComentNotaImagenQt4.png
2146     CuadroMinipagQt4.png
2147     DocumentoHijoQt4.png
2148     GrisNotaImagenQt4.png
2149     MaterialExternoQt4.png
2150     NotaEnmarcadaImg.png
2151     NotaLyXImagenQt4.png
2152     NotaSombreadaImg.png
2153     Resumen.pdf
2154     es_ERT.png
2155     etiquetaQt4.png
2156     flotanteQt4.png
2157     notapieQt4.png
2158     referenciaQt4.png
2159 ''')
2160
2161
2162 lib_doc_eu_files = Split('''
2163     Customization.lyx
2164     Extended.lyx
2165     FAQ.lyx
2166     Intro.lyx
2167     Tutorial.lyx
2168     UserGuide.lyx
2169 ''')
2170
2171
2172 lib_doc_fr_files = Split('''
2173     Customization.lyx
2174     DocumentBidon1.lyx
2175     DocumentBidon2.lyx
2176     DocumentTexteBidon.txt
2177     EmbeddedObjects.lyx
2178     Extended.lyx
2179     FAQ.lyx
2180     Intro.lyx
2181     Tutorial.lyx
2182     UserGuide.lyx
2183 ''')
2184
2185
2186 lib_doc_fr_clipart_files = Split('''
2187     BoxInsetDefaultQt4.png
2188     ChildDocumentQt4.png
2189     CommentNoteImageQt4.png
2190     FramedNoteImageQt4.png
2191     GreyedOutNoteImageQt4.png
2192     LyXNoteImageQt4.png
2193     ShadedNoteImageQt4.png
2194     floatQt4.png
2195     footnoteQt4.png
2196     labelQt4.png
2197 ''')
2198
2199
2200 lib_doc_gl_extra_files = Split('''
2201     Intro.lyx
2202     Tutorial.lyx
2203 ''')
2204
2205
2206 lib_doc_he_files = Split('''
2207     Intro.lyx
2208     Tutorial.lyx
2209 ''')
2210
2211
2212 lib_doc_hu_files = Split('''
2213     Intro.lyx
2214     Tutorial.lyx
2215 ''')
2216
2217
2218 lib_doc_it_files = Split('''
2219     Customization.lyx
2220     Intro.lyx
2221     Tutorial.lyx
2222     UserGuide.lyx
2223 ''')
2224
2225
2226 lib_doc_nb_files = Split('''
2227     Intro.lyx
2228 ''')
2229
2230
2231 lib_doc_nl_files = Split('''
2232     Intro.lyx
2233     Tutorial.lyx
2234 ''')
2235
2236
2237 lib_doc_pl_files = Split('''
2238     Extended.lyx
2239     Intro.lyx
2240     Tutorial.lyx
2241 ''')
2242
2243
2244 lib_doc_pt_files = Split('''
2245     Intro.lyx
2246     Tutorial.lyx
2247 ''')
2248
2249
2250 lib_doc_ro_files = Split('''
2251     Intro.lyx
2252 ''')
2253
2254
2255 lib_doc_ru_files = Split('''
2256     FAQ.lyx
2257     Intro.lyx
2258     Tutorial.lyx
2259 ''')
2260
2261
2262 lib_doc_sl_files = Split('''
2263     Intro.lyx
2264     Tutorial.lyx
2265 ''')
2266
2267
2268 lib_doc_sk_files = Split('''
2269     Tutorial.lyx
2270     UserGuide.lyx
2271 ''')
2272
2273
2274 lib_doc_sv_files = Split('''
2275     Intro.lyx
2276     Tutorial.lyx
2277 ''')
2278
2279
2280 lib_examples_files = Split('''
2281     Braille.lyx
2282     CV-image.eps
2283     CV-image.png
2284     Foils.lyx
2285     ItemizeBullets.lyx
2286     Literate.lyx
2287     Minipage.lyx
2288     aa_sample.lyx
2289     aas_sample.lyx
2290     addressExample.adr
2291     amsart-test.lyx
2292     amsbook-test.lyx
2293     armenian-article.lyx
2294     beamer-g4-mask.jpg
2295     beamer-g4.jpg
2296     beamer-icsi-logo.pdf
2297     beamer-knight1-mask.png
2298     beamer-knight1.png
2299     beamer-knight2-mask.png
2300     beamer-knight2.png
2301     beamer-knight3-mask.png
2302     beamer-knight3.png
2303     beamer-knight4-mask.png
2304     beamer-knight4.png
2305     beamerlyxexample1.lyx
2306     biblioExample.bib
2307     chess-article.lyx
2308     chessgame.lyx
2309     docbook_article.lyx
2310     europeCV.lyx
2311     example_lyxified.lyx
2312     example_raw.lyx
2313     iecc05.fen
2314     iecc07.fen
2315     iecc12.fen
2316     landslide.lyx
2317     linguistics.lyx
2318     listerrors.lyx
2319     listings.lyx
2320     modernCV.lyx
2321     multicol.lyx
2322     noweb2lyx.lyx
2323     powerdot-example.lyx
2324     script_form.lyx
2325     serial_letter1.lyx
2326     serial_letter2.lyx
2327     serial_letter3.lyx
2328     simplecv.lyx
2329     splash.lyx
2330 ''')
2331
2332
2333 lib_examples_ca_files = Split('''
2334     splash.lyx
2335 ''')
2336
2337
2338 lib_examples_cs_files = Split('''
2339     splash.lyx
2340 ''')
2341
2342
2343 lib_examples_da_files = Split('''
2344     splash.lyx
2345 ''')
2346
2347
2348 lib_examples_de_files = Split('''
2349     Dezimal.lyx
2350     ItemizeBullets.lyx
2351     Lebenslauf.lyx
2352     Minipage.lyx
2353     beispiel_gelyxt.lyx
2354     beispiel_roh.lyx
2355     multicol.lyx
2356     serienbrief1.lyx
2357     serienbrief2.lyx
2358     serienbrief3.lyx
2359     splash.lyx
2360 ''')
2361
2362
2363 lib_examples_fa_files = Split('''
2364     splash.lyx
2365 ''')
2366
2367
2368 lib_examples_fr_files = Split('''
2369     AlignementDecimal.lyx
2370     Foils.lyx
2371     ListesPuces.lyx
2372     Minipage.lyx
2373     exemple_brut.lyx
2374     exemple_lyxifie.lyx
2375     mathed.lyx
2376     multicol.lyx
2377     simplecv.lyx
2378     splash.lyx
2379 ''')
2380
2381
2382 lib_examples_es_files = Split('''
2383     ItemizeBullets.lyx
2384     ejemplo_con_lyx.lyx
2385     ejemplo_sin_lyx.lyx
2386     mathed.lyx
2387     splash.lyx
2388 ''')
2389
2390
2391 lib_examples_eu_files = Split('''
2392     adibide_gordina.lyx
2393     adibide_lyx-atua.lyx
2394     splash.lyx
2395 ''')
2396
2397
2398 lib_examples_gl_extra_files = Split('''
2399     exemplo_bruto.lyx
2400     exemplo_lyxificado.lyx
2401     splash.lyx
2402 ''')
2403
2404
2405 lib_examples_he_files = Split('''
2406     example_lyxified.lyx
2407     example_raw.lyx
2408     splash.lyx
2409 ''')
2410
2411
2412 lib_examples_hu_files = Split('''
2413     example_lyxified.lyx
2414     example_raw.lyx
2415     splash.lyx
2416 ''')
2417
2418
2419 lib_examples_it_files = Split('''
2420     ItemizeBullets.lyx
2421     splash.lyx
2422 ''')
2423
2424
2425 lib_examples_ja_files = Split('''
2426     splash.lyx
2427 ''')
2428
2429
2430 lib_examples_nl_files = Split('''
2431     multicol.lyx
2432     opsommingstekens.lyx
2433     splash.lyx
2434     voorbeeld_ruw.lyx
2435     voorbeeld_verlyxt.lyx
2436 ''')
2437
2438
2439 lib_examples_pl_files = Split('''
2440     splash.lyx
2441 ''')
2442
2443
2444 lib_examples_pt_files = Split('''
2445     splash.lyx
2446 ''')
2447
2448
2449 lib_examples_ro_files = Split('''
2450     splash.lyx
2451 ''')
2452
2453
2454 lib_examples_ru_files = Split('''
2455     splash.lyx
2456 ''')
2457
2458
2459 lib_examples_sl_files = Split('''
2460     primer_lyxan.lyx
2461     primer_surov.lyx
2462     splash.lyx
2463 ''')
2464
2465
2466 lib_lyx2lyx_files = Split('''
2467     LyX.py
2468     generate_encoding_info.py
2469     lyx2lyx
2470     lyx2lyx_lang.py
2471     lyx_0_06.py
2472     lyx_0_08.py
2473     lyx_0_10.py
2474     lyx_0_12.py
2475     lyx_1_0.py
2476     lyx_1_1.py
2477     lyx_1_1_5.py
2478     lyx_1_1_6_0.py
2479     lyx_1_1_6_3.py
2480     lyx_1_2.py
2481     lyx_1_3.py
2482     lyx_1_4.py
2483     lyx_1_5.py
2484     lyx_1_6.py
2485     parser_tools.py
2486     profiling.py
2487     test_parser_tools.py
2488 ''')
2489
2490
2491 lib_lyx2lyx_extra_files = Split('''
2492     Makefile.am
2493     lyx2lyx_version.py.in
2494 ''')
2495
2496
2497 lib_layouts_files = Split('''
2498     IEEEtran.layout
2499     aa.layout
2500     aapaper.layout
2501     aastex.layout
2502     agu-dtd.layout
2503     agums.layout
2504     amsart.layout
2505     amsbook.layout
2506     apa.layout
2507     arab-article.layout
2508     armenian-article.layout
2509     article.layout
2510     beamer.layout
2511     book.layout
2512     broadway.layout
2513     chess.layout
2514     cl2emult.layout
2515     dinbrief.layout
2516     docbook-book.layout
2517     docbook-chapter.layout
2518     docbook-section.layout
2519     docbook.layout
2520     dtk.layout
2521     egs.layout
2522     elsart.layout
2523     entcs.layout
2524     europecv.layout
2525     extarticle.layout
2526     extbook.layout
2527     extletter.layout
2528     extreport.layout
2529     foils.layout
2530     g-brief-de.layout
2531     g-brief-en.layout
2532     g-brief2.layout
2533     heb-article.layout
2534     heb-letter.layout
2535     hollywood.layout
2536     ijmpc.layout
2537     ijmpd.layout
2538     iopart.layout
2539     isprs.layout
2540     jarticle.layout
2541     jbook.layout
2542     jgrga.layout
2543     jreport.layout
2544     jsarticle.layout
2545     jsbook.layout
2546     kluwer.layout
2547     latex8.layout
2548     letter.layout
2549     literate-article.layout
2550     literate-book.layout
2551     literate-report.layout
2552     llncs.layout
2553     ltugboat.layout
2554     manpage.layout
2555     memoir.layout
2556     moderncv.layout
2557     mwart.layout
2558     mwbk.layout
2559     mwrep.layout
2560     paper.layout
2561     powerdot.layout
2562     report.layout
2563     revtex.layout
2564     revtex4.layout
2565     scrartcl.layout
2566     scrbook.layout
2567     scrlettr.layout
2568     scrlttr2.layout
2569     scrreprt.layout
2570     seminar.layout
2571     siamltex.layout
2572     simplecv.layout
2573     slides.layout
2574     spie.layout
2575     svglobal.layout
2576     svjog.layout
2577     svprobth.layout
2578     tarticle.layout
2579     tbook.layout
2580     treport.layout
2581 ''')
2582
2583
2584 lib_layouts_inc_files = Split('''
2585     aapaper.inc
2586     agu_stdclass.inc
2587     agu_stdcounters.inc
2588     agu_stdlists.inc
2589     agu_stdsections.inc
2590     agu_stdtitle.inc
2591     aguplus.inc
2592     amsdefs.inc
2593     db_lyxmacros.inc
2594     db_stdcharstyles.inc
2595     db_stdclass.inc
2596     db_stdcounters.inc
2597     db_stdlayouts.inc
2598     db_stdlists.inc
2599     db_stdsections.inc
2600     db_stdstarsections.inc
2601     db_stdstruct.inc
2602     db_stdtitle.inc
2603     literate-scrap.inc
2604     lyxmacros.inc
2605     numarticle.inc
2606     numreport.inc
2607     numrevtex.inc
2608     scrclass.inc
2609     stdcharstyles.inc
2610     stdclass.inc
2611     stdcounters.inc
2612     stdcustom.inc
2613     stdfloats.inc
2614     stdinsets.inc
2615     stdlayouts.inc
2616     stdletter.inc
2617     stdlists.inc
2618     stdsections.inc
2619     stdstarsections.inc
2620     stdstruct.inc
2621     stdtitle.inc
2622     svjour.inc
2623     theorems.inc
2624     theorems-ams.inc
2625     theorems-order.inc
2626     theorems-proof.inc
2627     theorems-starred.inc
2628     theorems-starred-equivalents.inc
2629 ''')
2630
2631
2632 lib_layouts_module_files = Split('''
2633     braille.module
2634     endnotes.module
2635     foottoend.module
2636     hanging.module
2637     linguistics.module
2638     logicalmkup.module
2639     theorems-ams-extended.module
2640     theorems-ams.module
2641     theorems-chap.module
2642     theorems-sec.module
2643     theorems-starred.module
2644     theorems-std.module
2645 ''')
2646
2647 lib_scripts_files = Split('''
2648     TeXFiles.py
2649     clean_dvi.py
2650     convertDefault.py
2651     date.py
2652     ext_copy.py
2653     fen2ascii.py
2654     fig2pdftex.py
2655     fig2pstex.py
2656     fig_copy.py
2657     layout2layout.py
2658     legacy_lyxpreview2ppm.py
2659     listerrors
2660     lyxpreview2bitmap.py
2661     lyxpreview_tools.py
2662     tex_copy.py
2663 ''')
2664
2665
2666 lib_bind_files = Split('''
2667     aqua.bind
2668     broadway.bind
2669     cua.bind
2670     cyrkeys.bind
2671     emacs.bind
2672     greekkeys.bind
2673     hollywood.bind
2674     latinkeys.bind
2675     mac.bind
2676     math.bind
2677     menus.bind
2678     sciword.bind
2679     site.bind
2680     xemacs.bind
2681 ''')
2682
2683
2684 lib_bind_fi_files = Split('''
2685     menus.bind
2686 ''')
2687
2688
2689 lib_bind_sv_files = Split('''
2690     menus.bind
2691 ''')
2692
2693
2694 lib_bind_pt_files = Split('''
2695     menus.bind
2696 ''')
2697
2698
2699 lib_bind_de_files = Split('''
2700     menus.bind
2701 ''')
2702
2703
2704 lib_commands_files = Split('''
2705     default.def
2706 ''')
2707
2708
2709 boost_extra_files = Split('''
2710     LICENSE_1_0.txt
2711     Makefile.am
2712 ''')
2713
2714
2715 boost_libs_extra_files = Split('''
2716     Makefile.am
2717     README
2718 ''')
2719
2720
2721 boost_libs_signals_extra_files = Split('''
2722     Makefile.am
2723     signals.vcproj
2724 ''')
2725
2726
2727 boost_libs_signals_src_files = Split('''
2728     connection.cpp
2729     named_slot_map.cpp
2730     signal_base.cpp
2731     slot.cpp
2732     trackable.cpp
2733 ''')
2734
2735
2736 boost_libs_signals_src_extra_files = Split('''
2737     Makefile.am
2738     pch.h
2739 ''')
2740
2741
2742 boost_libs_regex_extra_files = Split('''
2743     Makefile.am
2744     regex.vcproj
2745 ''')
2746
2747
2748 boost_libs_regex_src_files = Split('''
2749     c_regex_traits.cpp
2750     cpp_regex_traits.cpp
2751     cregex.cpp
2752     fileiter.cpp
2753     instances.cpp
2754     posix_api.cpp
2755     regex.cpp
2756     regex_debug.cpp
2757     regex_raw_buffer.cpp
2758     regex_traits_defaults.cpp
2759     w32_regex_traits.cpp
2760     wide_posix_api.cpp
2761     winstances.cpp
2762 ''')
2763
2764
2765 boost_libs_regex_src_extra_files = Split('''
2766     Makefile.am
2767     pch.h
2768 ''')
2769
2770
2771 boost_libs_filesystem_extra_files = Split('''
2772     Makefile.am
2773     filesystem.vcproj
2774 ''')
2775
2776
2777 boost_libs_filesystem_src_files = Split('''
2778     exception.cpp
2779     operations.cpp
2780     path.cpp
2781     portability.cpp
2782 ''')
2783
2784
2785 boost_libs_filesystem_src_extra_files = Split('''
2786     Makefile.am
2787     pch.h
2788 ''')
2789
2790
2791 development_Win32_packaging_installer = Split('''
2792     license.rtf
2793     lyx.nsi
2794     settings.nsh
2795     settings.user.nsh
2796 ''')
2797
2798
2799 development_Win32_packaging_installer_components = Split('''
2800     configure.nsh
2801     core.nsh
2802     dicts.nsh
2803     external.nsh
2804     langselect.nsh
2805     reinstall.nsh
2806     uninstall.nsh
2807     user.nsh
2808     viewer.nsh
2809 ''')
2810
2811
2812 development_Win32_packaging_installer_dialogs = Split('''
2813     external.ini
2814     langselect.ini
2815     reinstall.ini
2816     user.ini
2817     viewer.ini
2818 ''')
2819
2820
2821 development_Win32_packaging_installer_graphics = Split('''
2822     header.bmp
2823     wizard.bmp
2824 ''')
2825
2826
2827 development_Win32_packaging_installer_include = Split('''
2828     declarations.nsh
2829     detection.nsh
2830     filelists.nsh
2831     gui.nsh
2832     init.nsh
2833     lang.nsh
2834     windows.nsh
2835 ''')
2836
2837
2838 development_Win32_packaging_installer_lang = Split('''
2839     english.nsh
2840     french.nsh
2841     german.nsh
2842     italian.nsh
2843 ''')
2844