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