]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Splitup Font in saner bits:
[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     FontEnums.cpp
177     FontInfo.cpp
178     FontIterator.cpp
179     FontList.cpp
180     Format.cpp
181     FuncRequest.cpp
182     FuncStatus.cpp
183     Graph.cpp
184     InsetIterator.cpp
185     InsetList.cpp
186     Intl.cpp
187     KeyMap.cpp
188     KeySequence.cpp
189     LaTeX.cpp
190     LaTeXFeatures.cpp
191     Language.cpp
192     Layout.cpp
193     Length.cpp
194     Lexer.cpp
195     LyX.cpp
196     LyXAction.cpp
197     LyXFunc.cpp
198     LyXRC.cpp
199     LyXVC.cpp
200     MenuBackend.cpp
201     Messages.cpp
202     MetricsInfo.cpp
203     Mover.cpp
204     OutputParams.cpp
205     PDFOptions.cpp
206     ParIterator.cpp
207     Paragraph.cpp
208     ParagraphMetrics.cpp
209     ParagraphParameters.cpp
210     Row.cpp
211     Server.cpp
212     ServerSocket.cpp
213     Session.cpp
214     Spacing.cpp
215     TexRow.cpp
216     Text.cpp
217     Text2.cpp
218     Text3.cpp
219     TextClass.cpp
220     TextClassList.cpp
221     TextMetrics.cpp
222     TocBackend.cpp
223     ToolbarBackend.cpp
224     Trans.cpp
225     Undo.cpp
226     VCBackend.cpp
227     VSpace.cpp
228     boost.cpp
229     buffer_funcs.cpp
230     debug.cpp
231     factory.cpp
232     gettext.cpp
233     lengthcommon.cpp
234     lyxfind.cpp
235     output.cpp
236     output_docbook.cpp
237     output_latex.cpp
238     output_plaintext.cpp
239     paragraph_funcs.cpp
240     rowpainter.cpp
241     sgml.cpp
242     version.cpp
243 ''')
244
245
246 src_post_files = Split('''
247     Box.cpp
248     Dimension.cpp
249     ModuleList.cpp
250     PrinterParams.cpp
251     SpellBase.cpp
252     Thesaurus.cpp
253 ''')
254
255
256 src_extra_src_files = Split('''
257     ASpell.cpp
258     ISpell.cpp
259     PSpell.cpp
260     Section.cpp
261     Variables.cpp
262     main.cpp
263 ''')
264
265
266 src_extra_files = Split('''
267     Makefile.am
268     pch.h
269 ''')
270
271
272 src_client_header_files = Split('''
273     Messages.h
274     debug.h
275 ''')
276
277
278 src_client_files = Split('''
279     Messages.cpp
280     boost.cpp
281     client.cpp
282     debug.cpp
283     gettext.cpp
284 ''')
285
286
287 src_client_extra_files = Split('''
288     Makefile.am
289     lyxclient.man
290     pch.h
291 ''')
292
293
294 src_support_header_files = Split('''
295     ExceptionMessage.h
296     FileFilterList.h
297     FileMonitor.h
298     FileName.h
299     ForkedCallQueue.h
300     Forkedcall.h
301     ForkedcallsController.h
302     Package.h
303     Path.h
304     RandomAccessList.h
305     Systemcall.h
306     Timeout.h
307     Translator.h
308     convert.h
309     copied_ptr.h
310     cow_ptr.h
311     debugstream.h
312     docstream.h
313     docstring.h
314     environment.h
315     filetools.h
316     fs_extras.h
317     gzstream.h
318     limited_stack.h
319     lstrings.h
320     lyxalgo.h
321     lyxlib.h
322     lyxmanip.h
323     lyxtime.h
324     os.h
325     os_win32.h
326     qstring_helpers.h
327     socktools.h
328     std_istream.h
329     std_ostream.h
330     textutils.h
331     types.h
332     unicode.h
333     userinfo.h
334 ''')
335
336
337 src_support_files = Split('''
338     FileFilterList.cpp
339     FileMonitor.cpp
340     FileName.cpp
341     ForkedCallQueue.cpp
342     Forkedcall.cpp
343     ForkedcallsController.cpp
344     Package.cpp
345     Path.cpp
346     Systemcall.cpp
347     Timeout.cpp
348     abort.cpp
349     chdir.cpp
350     convert.cpp
351     copy.cpp
352     docstream.cpp
353     docstring.cpp
354     environment.cpp
355     filetools.cpp
356     fs_extras.cpp
357     gzstream.cpp
358     getcwd.cpp
359     kill.cpp
360     lstrings.cpp
361     lyxsum.cpp
362     lyxtime.cpp
363     mkdir.cpp
364     os.cpp
365     qstring_helpers.cpp
366     rename.cpp
367     socktools.cpp
368     tempname.cpp
369     textutils.cpp
370     unicode.cpp
371     unlink.cpp
372     userinfo.cpp
373 ''')
374
375
376 src_support_extra_header_files = Split('''
377     
378 ''')
379
380
381 src_support_extra_src_files = Split('''
382     atexit.c
383     os_cygwin.cpp
384     os_unix.cpp
385     os_win32.cpp
386     strerror.c
387 ''')
388
389
390 src_support_extra_files = Split('''
391     Makefile.am
392     pch.h
393 ''')
394
395
396 src_support_tests_extra_files = Split('''
397     Makefile.am
398     boost.cpp
399     convert.cpp
400     filetools.cpp
401     lstrings.cpp
402     pch.h
403     test_convert
404     test_filetools
405     test_lstrings
406 ''')
407
408
409 src_support_tests_regfiles_extra_files = Split('''
410     convert
411     filetools
412     lstrings
413 ''')
414
415
416 src_support_minizip_header_files = Split('''
417     crypt.h
418     ioapi.h 
419     iowin32.h
420     unzip.h
421     zip.h
422 ''')
423
424
425 src_support_minizip_files = Split('''
426     ioapi.c
427     iowin32.c
428     zip.c
429     zipunzip.cpp
430     unzip.c
431 ''')
432
433
434 src_graphics_header_files = Split('''
435     GraphicsCache.h
436     GraphicsCacheItem.h
437     GraphicsConverter.h
438     GraphicsImage.h
439     GraphicsLoader.h
440     GraphicsParams.h
441     GraphicsTypes.h
442     LoaderQueue.h
443     PreviewImage.h
444     PreviewLoader.h
445     Previews.h
446 ''')
447
448
449 src_graphics_files = Split('''
450     GraphicsCache.cpp
451     GraphicsCacheItem.cpp
452     GraphicsConverter.cpp
453     GraphicsImage.cpp
454     GraphicsLoader.cpp
455     GraphicsParams.cpp
456     GraphicsTypes.cpp
457     LoaderQueue.cpp
458     PreviewImage.cpp
459     PreviewLoader.cpp
460     Previews.cpp
461 ''')
462
463
464 src_graphics_extra_files = Split('''
465     Makefile.am
466     pch.h
467 ''')
468
469
470 src_mathed_header_files = Split('''
471     CommandInset.h
472     InsetMath.h
473     InsetMathAMSArray.h
474     InsetMathArray.h
475     InsetMathBig.h
476     InsetMathBoldSymbol.h
477     InsetMathBox.h
478     InsetMathBoxed.h
479     InsetMathBrace.h
480     InsetMathCases.h
481     InsetMathChar.h
482     InsetMathColor.h
483     InsetMathComment.h
484     InsetMathDecoration.h
485     InsetMathDelim.h
486     InsetMathDiff.h
487     InsetMathDots.h
488     InsetMathEnv.h
489     InsetMathExFunc.h
490     InsetMathExInt.h
491     InsetMathFBox.h
492     InsetMathFont.h
493     InsetMathFontOld.h
494     InsetMathFrac.h
495     InsetMathFrameBox.h
496     InsetMathGrid.h
497     InsetMathHull.h
498     InsetMathKern.h
499     InsetMathLefteqn.h
500     InsetMathLim.h
501     InsetMathMakebox.h
502     InsetMathMatrix.h
503     InsetMathNest.h
504     InsetMathNumber.h
505     InsetMathOverset.h
506     InsetMathPar.h
507     InsetMathPhantom.h
508     InsetMathRef.h
509     InsetMathRoot.h
510     InsetMathScript.h
511     InsetMathSize.h
512     InsetMathSpace.h
513     InsetMathSplit.h
514     InsetMathSqrt.h
515     InsetMathStackrel.h
516     InsetMathString.h
517     InsetMathSubstack.h
518     InsetMathSymbol.h
519     InsetMathTabular.h
520     InsetMathUnderset.h
521     InsetMathUnknown.h
522     InsetMathXArrow.h
523     InsetMathXYMatrix.h
524     MacroTable.h
525     MathAtom.h
526     MathAutoCorrect.h
527     MathData.h
528     MathExtern.h
529     MathFactory.h
530     MathGridInfo.h
531     MathMacro.h
532     MathMacroArgument.h
533     MathMacroTemplate.h
534     MathParser.h
535     MathStream.h
536     MathSupport.h
537     ReplaceData.h
538     TextPainter.h
539 ''')
540
541
542 src_mathed_files = Split('''
543     CommandInset.cpp
544     InsetMath.cpp
545     InsetMathAMSArray.cpp
546     InsetMathArray.cpp
547     InsetMathBig.cpp
548     InsetMathBoldSymbol.cpp
549     InsetMathBox.cpp
550     InsetMathBoxed.cpp
551     InsetMathBrace.cpp
552     InsetMathCases.cpp
553     InsetMathChar.cpp
554     InsetMathColor.cpp
555     InsetMathComment.cpp
556     InsetMathDecoration.cpp
557     InsetMathDelim.cpp
558     InsetMathDiff.cpp
559     InsetMathDots.cpp
560     InsetMathEnv.cpp
561     InsetMathExFunc.cpp
562     InsetMathExInt.cpp
563     InsetMathFBox.cpp
564     InsetMathFont.cpp
565     InsetMathFontOld.cpp
566     InsetMathFrac.cpp
567     InsetMathFrameBox.cpp
568     InsetMathGrid.cpp
569     InsetMathHull.cpp
570     InsetMathKern.cpp
571     InsetMathLefteqn.cpp
572     InsetMathLim.cpp
573     InsetMathMakebox.cpp
574     InsetMathMatrix.cpp
575     InsetMathNest.cpp
576     InsetMathNumber.cpp
577     InsetMathOverset.cpp
578     InsetMathPar.cpp
579     InsetMathPhantom.cpp
580     InsetMathRef.cpp
581     InsetMathRoot.cpp
582     InsetMathScript.cpp
583     InsetMathSize.cpp
584     InsetMathSpace.cpp
585     InsetMathSplit.cpp
586     InsetMathSqrt.cpp
587     InsetMathStackrel.cpp
588     InsetMathString.cpp
589     InsetMathSubstack.cpp
590     InsetMathSymbol.cpp
591     InsetMathTabular.cpp
592     InsetMathUnderset.cpp
593     InsetMathUnknown.cpp
594     InsetMathXArrow.cpp
595     InsetMathXYMatrix.cpp
596     MacroTable.cpp
597     MathAtom.cpp
598     MathAutoCorrect.cpp
599     MathData.cpp
600     MathExtern.cpp
601     MathFactory.cpp
602     MathMacro.cpp
603     MathMacroArgument.cpp
604     MathMacroTemplate.cpp
605     MathParser.cpp
606     MathStream.cpp
607     MathSupport.cpp
608     TextPainter.cpp
609 ''')
610
611
612 src_mathed_extra_files = Split('''
613     BUGS
614     InsetFormulaMacro.cpp
615     InsetFormulaMacro.h
616     InsetMathMBox.cpp
617     InsetMathMBox.h
618     InsetMathXYArrow.cpp
619     InsetMathXYArrow.h
620     Makefile.am
621     README
622     pch.h
623     texify
624 ''')
625
626
627 src_tex2lyx_header_files = Split('''
628     Context.h
629     Font.h
630     Parser.h
631     Spacing.h
632     tex2lyx.h
633 ''')
634
635
636 src_tex2lyx_files = Split('''
637     Context.cpp
638     Font.cpp
639     Parser.cpp
640     boost.cpp
641     gettext.cpp
642     lengthcommon.cpp
643     math.cpp
644     preamble.cpp
645     table.cpp
646     tex2lyx.cpp
647     text.cpp
648 ''')
649
650
651 src_tex2lyx_copied_files = Split('''
652     Color.cpp
653     Counters.cpp
654     FloatList.cpp
655     Floating.cpp
656     Layout.cpp
657     Lexer.cpp
658     TextClass.cpp
659 ''')
660
661
662 src_tex2lyx_extra_files = Split('''
663     Makefile.am
664     pch.h
665     test-insets.tex
666     test-structure.tex
667     test.ltx
668     tex2lyx.man
669 ''')
670
671
672 src_frontends_header_files = Split('''
673     Alert_pimpl.h
674     Application.h
675     Clipboard.h
676     Dialogs.h
677     FileDialog.h
678     FontLoader.h
679     FontMetrics.h
680     Gui.h
681     KeyModifier.h
682     KeySymbol.h
683     LyXView.h
684     NoGuiFontLoader.h
685     NoGuiFontMetrics.h
686     Painter.h
687     Selection.h
688     WorkArea.h
689     WorkAreaManager.h
690     alert.h
691     mouse_state.h
692 ''')
693
694
695 src_frontends_files = Split('''
696     Application.cpp
697     Dialogs.cpp
698     LyXView.cpp
699     Painter.cpp
700     WorkArea.cpp
701     WorkAreaManager.cpp
702     alert.cpp
703 ''')
704
705
706 src_frontends_extra_files = Split('''
707     Makefile.am
708     pch.h
709 ''')
710
711
712 src_frontends_controllers_extra_files = Split('''
713     Makefile.am
714     pch.h
715 ''')
716
717
718 src_frontends_controllers_tests_extra_files = Split('''
719     Makefile.am
720     biblio.cpp
721     boost.cpp
722     pch.h
723     test_biblio
724 ''')
725
726
727 src_frontends_controllers_tests_regfiles_extra_files = Split('''
728     biblio
729 ''')
730
731
732 src_frontends_qt4_header_files = Split('''
733                 ../ButtonPolicy.h
734                 ../Dialog.h
735                 ../frontend_helpers.h
736     Action.h
737     BulletsModule.h
738     ButtonController.h
739     ColorCache.h
740     CustomizedWidgets.h
741     DialogView.h
742     DockView.h
743     EmptyTable.h
744     FloatPlacement.h
745     GuiAbout.h
746     GuiApplication.h
747     GuiBibitem.h
748     GuiBibtex.h
749     GuiBox.h
750     GuiBranches.h
751     GuiBranch.h
752     GuiChanges.h
753     GuiCharacter.h
754     GuiCharacter.h
755     GuiCitation.h
756     GuiClipboard.h
757     GuiCommandBuffer.h
758     GuiCommandEdit.h
759     GuiDelimiter.h
760     GuiDialog.h
761     GuiDocument.h
762     GuiErrorList.h
763     GuiERT.h
764     GuiExternal.h
765     GuiFloat.h
766     GuiFontExample.h
767     GuiFontLoader.h
768     GuiGraphics.h
769     GuiGraphicsUi.h
770     GuiHyperlink.h
771     GuiImage.h
772     GuiImplementation.h
773     GuiInclude.h
774     GuiIndex.h
775     GuiKeySymbol.h
776     GuiListings.h
777     GuiLog.h
778     GuiMath.h
779     GuiMathMatrix.h
780     GuiMenubar.h
781     GuiNomencl.h
782     GuiNote.h
783     GuiPainter.h
784     GuiParagraph.h
785     GuiPopupMenu.h
786     GuiPrefs.h
787     GuiPrint.h
788     GuiRef.h
789     GuiSearch.h
790     GuiSelection.h
791     GuiSelectionManager.h
792     GuiSendto.h
793     GuiSetBorder.h
794     GuiShowFile.h
795     GuiSpellchecker.h
796     GuiTabularCreate.h
797     GuiTabular.h
798     GuiTexinfo.h
799     GuiThesaurus.h
800     GuiToc.h
801     GuiToolbar.h
802     GuiToolbars.h
803     GuiView.h
804     GuiViewSource.h
805     GuiVSpace.h
806     GuiWorkArea.h
807     GuiWrap.h
808     IconPalette.h
809     InsertTableWidget.h
810     LaTeXHighlighter.h
811     LengthCombo.h
812     LyXFileDialog.h
813     PanelStack.h
814     TocModel.h
815     TocWidget.h
816     Validator.h
817     qlkey.h
818     qt_helpers.h
819 ''')
820
821
822 src_frontends_qt4_files = Split('''
823                 ../ButtonPolicy.cpp
824                 ../Dialog.cpp
825                 ../frontend_helpers.cpp
826     Action.cpp
827     BulletsModule.cpp
828     ButtonController.cpp
829     ColorCache.cpp
830     CustomizedWidgets.cpp
831     Dialogs.cpp
832     EmptyTable.cpp
833     FileDialog.cpp
834     FloatPlacement.cpp
835     GuiAbout.cpp
836     GuiApplication.cpp
837     GuiBibitem.cpp
838     GuiBibtex.cpp
839     GuiBox.cpp
840     GuiBranch.cpp
841     GuiBranches.cpp
842     GuiChanges.cpp
843     GuiCharacter.cpp
844     GuiCitation.cpp
845     GuiClipboard.cpp
846     GuiCommandBuffer.cpp
847     GuiCommandEdit.cpp
848     GuiDelimiter.cpp
849     GuiDialog.cpp
850     GuiDocument.cpp
851     GuiErrorList.cpp
852     GuiERT.cpp
853     GuiExternal.cpp
854     GuiFloat.cpp
855     GuiFontExample.cpp
856     GuiFontLoader.cpp
857     GuiFontMetrics.cpp
858     GuiGraphics.cpp
859     GuiHyperlink.cpp
860     GuiImage.cpp
861     GuiImplementation.cpp
862     GuiInclude.cpp
863     GuiIndex.cpp
864     GuiKeySymbol.cpp
865     GuiListings.cpp
866     GuiLog.cpp
867     GuiMath.cpp
868     GuiMathMatrix.cpp
869     GuiMenubar.cpp
870     GuiNomencl.cpp
871     GuiNote.cpp
872     GuiPainter.cpp
873     GuiParagraph.cpp
874     GuiPopupMenu.cpp
875     GuiPrefs.cpp
876     GuiPrint.cpp
877     GuiRef.cpp
878     GuiSearch.cpp
879     GuiSelection.cpp
880     GuiSelectionManager.cpp
881     GuiSendto.cpp
882     GuiSetBorder.cpp
883     GuiShowFile.cpp
884     GuiSpellchecker.cpp
885     GuiTabular.cpp
886     GuiTabularCreate.cpp
887     GuiTexinfo.cpp
888     GuiThesaurus.cpp
889     GuiToc.cpp
890     GuiToolbar.cpp
891     GuiToolbars.cpp
892     GuiView.cpp
893     GuiViewSource.cpp
894     GuiVSpace.cpp
895     GuiWorkArea.cpp
896     GuiWrap.cpp
897     IconPalette.cpp
898     InsertTableWidget.cpp
899     LengthCombo.cpp
900     LaTeXHighlighter.cpp
901     LyXFileDialog.cpp
902     PanelStack.cpp
903     TocModel.cpp
904     TocWidget.cpp
905     Validator.cpp
906     alert_pimpl.cpp
907     qt_helpers.cpp
908 ''')
909
910
911 src_frontends_qt4_extra_files = Split('''
912     GuiFontMetrics.h
913     Makefile.am
914     README
915     pch.h
916 ''')
917
918
919 src_frontends_qt4_ui_files = Split('''
920     AboutUi.ui
921     AskForTextUi.ui
922     BibitemUi.ui
923     BiblioUi.ui
924     BibtexAddUi.ui
925     BibtexUi.ui
926     BoxUi.ui
927     BranchUi.ui
928     BranchesUi.ui
929     BulletsUi.ui
930     ChangesUi.ui
931     CharacterUi.ui
932     CitationUi.ui
933     DelimiterUi.ui
934     DocumentUi.ui
935     ERTUi.ui
936     ErrorListUi.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     currency.lyx
2314     docbook_article.lyx
2315     europeCV.lyx
2316     example_lyxified.lyx
2317     example_raw.lyx
2318     iecc05.fen
2319     iecc07.fen
2320     iecc12.fen
2321     landslide.lyx
2322     listerrors.lyx
2323     listings.lyx
2324     mathed.lyx
2325     modernCV.lyx
2326     multicol.lyx
2327     noweb2lyx.lyx
2328     powerdot-example.lyx
2329     script_form.lyx
2330     simplecv.lyx
2331     splash.lyx
2332 ''')
2333
2334
2335 lib_examples_ca_files = Split('''
2336     splash.lyx
2337 ''')
2338
2339
2340 lib_examples_cs_files = Split('''
2341     splash.lyx
2342 ''')
2343
2344
2345 lib_examples_da_files = Split('''
2346     splash.lyx
2347 ''')
2348
2349
2350 lib_examples_de_files = Split('''
2351     Dezimal.lyx
2352     ItemizeBullets.lyx
2353     Lebenslauf.lyx
2354     Minipage.lyx
2355     Waehrungen.lyx
2356     beispiel_gelyxt.lyx
2357     beispiel_roh.lyx
2358     mathed.lyx
2359     multicol.lyx
2360     splash.lyx
2361 ''')
2362
2363
2364 lib_examples_fa_files = Split('''
2365     splash.lyx
2366 ''')
2367
2368
2369 lib_examples_fr_files = Split('''
2370     AlignementDecimal.lyx
2371     ExemplesTableaux.lyx
2372     Foils.lyx
2373     ListesPuces.lyx
2374     Minipage.lyx
2375     exemple_brut.lyx
2376     exemple_lyxifie.lyx
2377     mathed.lyx
2378     multicol.lyx
2379     simplecv.lyx
2380     splash.lyx
2381 ''')
2382
2383
2384 lib_examples_es_files = Split('''
2385     ItemizeBullets.lyx
2386     ejemplo_con_lyx.lyx
2387     ejemplo_sin_lyx.lyx
2388     splash.lyx
2389 ''')
2390
2391
2392 lib_examples_eu_files = Split('''
2393     adibide_gordina.lyx
2394     adibide_lyx-atua.lyx
2395     splash.lyx
2396 ''')
2397
2398
2399 lib_examples_gl_extra_files = Split('''
2400     exemplo_bruto.lyx
2401     exemplo_lyxificado.lyx
2402     splash.lyx
2403 ''')
2404
2405
2406 lib_examples_he_files = Split('''
2407     example_lyxified.lyx
2408     example_raw.lyx
2409     splash.lyx
2410 ''')
2411
2412
2413 lib_examples_hu_files = Split('''
2414     example_lyxified.lyx
2415     example_raw.lyx
2416     splash.lyx
2417 ''')
2418
2419
2420 lib_examples_it_files = Split('''
2421     ItemizeBullets.lyx
2422     splash.lyx
2423 ''')
2424
2425
2426 lib_examples_nl_files = Split('''
2427     multicol.lyx
2428     opsommingstekens.lyx
2429     splash.lyx
2430     voorbeeld_ruw.lyx
2431     voorbeeld_verlyxt.lyx
2432 ''')
2433
2434
2435 lib_examples_pl_files = Split('''
2436     splash.lyx
2437 ''')
2438
2439
2440 lib_examples_pt_files = Split('''
2441     splash.lyx
2442 ''')
2443
2444
2445 lib_examples_ro_files = Split('''
2446     splash.lyx
2447 ''')
2448
2449
2450 lib_examples_ru_files = Split('''
2451     splash.lyx
2452 ''')
2453
2454
2455 lib_examples_sl_files = Split('''
2456     primer_lyxan.lyx
2457     primer_surov.lyx
2458     splash.lyx
2459 ''')
2460
2461
2462 lib_lyx2lyx_files = Split('''
2463     LyX.py
2464     generate_encoding_info.py
2465     lyx2lyx
2466     lyx2lyx_lang.py
2467     lyx_0_06.py
2468     lyx_0_08.py
2469     lyx_0_10.py
2470     lyx_0_12.py
2471     lyx_1_0.py
2472     lyx_1_1.py
2473     lyx_1_1_5.py
2474     lyx_1_1_6_0.py
2475     lyx_1_1_6_3.py
2476     lyx_1_2.py
2477     lyx_1_3.py
2478     lyx_1_4.py
2479     lyx_1_5.py
2480     lyx_1_6.py
2481     parser_tools.py
2482     profiling.py
2483     test_parser_tools.py
2484 ''')
2485
2486
2487 lib_lyx2lyx_extra_files = Split('''
2488     Makefile.am
2489     lyx2lyx_version.py.in
2490 ''')
2491
2492
2493 lib_layouts_files = Split('''
2494     IEEEtran.layout
2495     aa.layout
2496     aapaper.layout
2497     aastex.layout
2498     agu-dtd.layout
2499     agums.layout
2500     amsart-plain.layout
2501     amsart-seq.layout
2502     amsart.layout
2503     amsbook.layout
2504     apa.layout
2505     arab-article.layout
2506     armenian-article.layout
2507     article.layout
2508     beamer.layout
2509     book.layout
2510     broadway.layout
2511     chess.layout
2512     cl2emult.layout
2513     dinbrief.layout
2514     docbook-book.layout
2515     docbook-chapter.layout
2516     docbook-section.layout
2517     docbook.layout
2518     dtk.layout
2519     egs.layout
2520     elsart.layout
2521     entcs.layout
2522     europecv.layout
2523     extarticle.layout
2524     extbook.layout
2525     extletter.layout
2526     extreport.layout
2527     foils.layout
2528     g-brief-de.layout
2529     g-brief-en.layout
2530     g-brief2.layout
2531     heb-article.layout
2532     heb-letter.layout
2533     hollywood.layout
2534     ijmpc.layout
2535     ijmpd.layout
2536     iopart.layout
2537     isprs.layout
2538     jarticle.layout
2539     jbook.layout
2540     jgrga.layout
2541     jreport.layout
2542     jsarticle.layout
2543     jsbook.layout
2544     kluwer.layout
2545     latex8.layout
2546     letter.layout
2547     literate-article.layout
2548     literate-book.layout
2549     literate-report.layout
2550     llncs.layout
2551     ltugboat.layout
2552     manpage.layout
2553     memoir.layout
2554     moderncv.layout
2555     mwart.layout
2556     mwbk.layout
2557     mwrep.layout
2558     paper.layout
2559     powerdot.layout
2560     report.layout
2561     revtex.layout
2562     revtex4.layout
2563     scrartcl.layout
2564     scrbook.layout
2565     scrlettr.layout
2566     scrlttr2.layout
2567     scrreprt.layout
2568     seminar.layout
2569     siamltex.layout
2570     simplecv.layout
2571     slides.layout
2572     spie.layout
2573     svglobal.layout
2574     svjog.layout
2575     svprobth.layout
2576     tarticle.layout
2577     tbook.layout
2578     treport.layout
2579 ''')
2580
2581
2582 lib_layouts_inc_files = Split('''
2583     aapaper.inc
2584     agu_stdclass.inc
2585     agu_stdcounters.inc
2586     agu_stdlists.inc
2587     agu_stdsections.inc
2588     agu_stdtitle.inc
2589     aguplus.inc
2590     amsdefs.inc
2591     amsmaths-plain.inc
2592     amsmaths-seq.inc
2593     amsmaths.inc
2594     db_lyxmacros.inc
2595     db_stdcharstyles.inc
2596     db_stdclass.inc
2597     db_stdcounters.inc
2598     db_stdlayouts.inc
2599     db_stdlists.inc
2600     db_stdsections.inc
2601     db_stdstarsections.inc
2602     db_stdstruct.inc
2603     db_stdtitle.inc
2604     literate-scrap.inc
2605     lyxmacros.inc
2606     numarticle.inc
2607     numreport.inc
2608     numrevtex.inc
2609     scrclass.inc
2610     stdclass.inc
2611     stdcounters.inc
2612     stdfloats.inc
2613     stdinsets.inc
2614     stdlayouts.inc
2615     stdletter.inc
2616     stdlists.inc
2617     stdsections.inc
2618     stdstarsections.inc
2619     stdstruct.inc
2620     stdtitle.inc
2621     svjour.inc
2622     theorems.inc
2623     theorems-ams.inc
2624 ''')
2625
2626
2627 lib_layouts_module_files = Split('''
2628     endnotes.module
2629     foottoend.module
2630     hanging.module
2631     logicalmkup.module
2632     theorems-ams.module
2633     theorems-ams-withinsec.module
2634     theorems-std.module
2635     theorems-withinsec.module
2636     theorems-withinchap.module
2637     url.module
2638 ''')
2639
2640 lib_scripts_files = Split('''
2641     TeXFiles.py
2642     clean_dvi.py
2643     convertDefault.py
2644     date.py
2645     ext_copy.py
2646     fen2ascii.py
2647     fig2pdftex.py
2648     fig2pstex.py
2649     fig_copy.py
2650     layout2layout.py
2651     legacy_lyxpreview2ppm.py
2652     listerrors
2653     lyxpreview2bitmap.py
2654     lyxpreview_tools.py
2655     tex_copy.py
2656 ''')
2657
2658
2659 lib_bind_files = Split('''
2660     aqua.bind
2661     broadway.bind
2662     cua.bind
2663     cyrkeys.bind
2664     emacs.bind
2665     greekkeys.bind
2666     hollywood.bind
2667     latinkeys.bind
2668     mac.bind
2669     math.bind
2670     menus.bind
2671     sciword.bind
2672     xemacs.bind
2673 ''')
2674
2675
2676 lib_bind_fi_files = Split('''
2677     menus.bind
2678 ''')
2679
2680
2681 lib_bind_sv_files = Split('''
2682     menus.bind
2683 ''')
2684
2685
2686 lib_bind_pt_files = Split('''
2687     menus.bind
2688 ''')
2689
2690
2691 lib_bind_de_files = Split('''
2692     menus.bind
2693 ''')
2694
2695
2696 lib_commands_files = Split('''
2697     default.def
2698 ''')
2699
2700
2701 boost_extra_files = Split('''
2702     LICENSE_1_0.txt
2703     Makefile.am
2704 ''')
2705
2706
2707 boost_libs_extra_files = Split('''
2708     Makefile.am
2709     README
2710 ''')
2711
2712
2713 boost_libs_signals_extra_files = Split('''
2714     Makefile.am
2715     signals.vcproj
2716 ''')
2717
2718
2719 boost_libs_signals_src_files = Split('''
2720     connection.cpp
2721     named_slot_map.cpp
2722     signal_base.cpp
2723     slot.cpp
2724     trackable.cpp
2725 ''')
2726
2727
2728 boost_libs_signals_src_extra_files = Split('''
2729     Makefile.am
2730     pch.h
2731 ''')
2732
2733
2734 boost_libs_regex_extra_files = Split('''
2735     Makefile.am
2736     regex.vcproj
2737 ''')
2738
2739
2740 boost_libs_regex_src_files = Split('''
2741     c_regex_traits.cpp
2742     cpp_regex_traits.cpp
2743     cregex.cpp
2744     fileiter.cpp
2745     instances.cpp
2746     posix_api.cpp
2747     regex.cpp
2748     regex_debug.cpp
2749     regex_raw_buffer.cpp
2750     regex_traits_defaults.cpp
2751     w32_regex_traits.cpp
2752     wide_posix_api.cpp
2753     winstances.cpp
2754 ''')
2755
2756
2757 boost_libs_regex_src_extra_files = Split('''
2758     Makefile.am
2759     pch.h
2760 ''')
2761
2762
2763 boost_libs_filesystem_extra_files = Split('''
2764     Makefile.am
2765     filesystem.vcproj
2766 ''')
2767
2768
2769 boost_libs_filesystem_src_files = Split('''
2770     exception.cpp
2771     operations.cpp
2772     path.cpp
2773     portability.cpp
2774 ''')
2775
2776
2777 boost_libs_filesystem_src_extra_files = Split('''
2778     Makefile.am
2779     pch.h
2780 ''')
2781
2782
2783 boost_libs_iostreams_extra_files = Split('''
2784     Makefile.am
2785 ''')
2786
2787
2788 boost_libs_iostreams_src_files = Split('''
2789     file_descriptor.cpp
2790     mapped_file.cpp
2791     zlib.cpp
2792 ''')
2793
2794
2795 boost_libs_iostreams_src_extra_files = Split('''
2796     Makefile.am
2797     pch.h
2798 ''')
2799
2800
2801 development_Win32_packaging_installer = Split('''
2802     license.rtf
2803     lyx.nsi
2804     settings.nsh
2805     settings.user.nsh
2806 ''')
2807
2808
2809 development_Win32_packaging_installer_components = Split('''
2810     configure.nsh
2811     core.nsh
2812     dicts.nsh
2813     external.nsh
2814     langselect.nsh
2815     reinstall.nsh
2816     uninstall.nsh
2817     user.nsh
2818     viewer.nsh
2819 ''')
2820
2821
2822 development_Win32_packaging_installer_dialogs = Split('''
2823     external.ini
2824     langselect.ini
2825     reinstall.ini
2826     user.ini
2827     viewer.ini
2828 ''')
2829
2830
2831 development_Win32_packaging_installer_graphics = Split('''
2832     header.bmp
2833     wizard.bmp
2834 ''')
2835
2836
2837 development_Win32_packaging_installer_include = Split('''
2838     declarations.nsh
2839     detection.nsh
2840     filelists.nsh
2841     gui.nsh
2842     init.nsh
2843     lang.nsh
2844     windows.nsh
2845 ''')
2846
2847
2848 development_Win32_packaging_installer_lang = Split('''
2849     english.nsh
2850     french.nsh
2851     german.nsh
2852     italian.nsh
2853 ''')
2854