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