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