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