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