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