]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
4f989b4b8ccf5a8c609936b911d845f276fcecd7
[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     Spacing.h
593     tex2lyx.h
594 ''')
595
596
597 src_tex2lyx_files = Split('''
598     boost.cpp
599     Context.cpp
600     math.cpp
601     Parser.cpp
602     preamble.cpp
603     table.cpp
604     tex2lyx.cpp
605     text.cpp
606 ''')
607
608
609 src_tex2lyx_copied_header_files = Split('''
610     Layout.h
611     LayoutFile.h
612     LayoutModuleList.h
613     ModuleList.h
614     TextClass.h
615     insets/InsetLayout.h
616 ''')
617
618
619 src_tex2lyx_copied_files = Split('''
620     Color.cpp
621     Counters.cpp
622     Encoding.cpp
623     FloatList.cpp
624     Floating.cpp
625     FontInfo.cpp
626     Layout.cpp
627     LayoutModuleList.cpp
628     lengthcommon.cpp
629     Lexer.cpp
630     ModuleList.cpp
631     TextClass.cpp
632     insets/InsetLayout.cpp
633 ''')
634
635
636 src_tex2lyx_extra_files = Split('''
637     Makefile.am
638     pch.h
639     tex2lyx.1in
640     test/box-color-size-space-align.tex
641     test/DummyDocument.tex
642     test/foo.eps
643     test/foo.png
644     test/test-insets.tex
645     test/test.ltx
646     test/test-structure.tex
647 ''')
648
649
650 src_frontends_header_files = Split('''
651     alert.h
652     Application.h
653     Clipboard.h
654     FontLoader.h
655     FontMetrics.h
656     KeyModifier.h
657     KeySymbol.h
658     LyXView.h
659     mouse_state.h
660     Painter.h
661     Selection.h
662     WorkArea.h
663     WorkAreaManager.h
664 ''')
665
666
667 src_frontends_files = Split('''
668     WorkAreaManager.cpp
669 ''')
670
671
672 src_frontends_extra_files = Split('''
673     Makefile.am
674     pch.h
675 ''')
676
677
678 src_frontends_controllers_extra_files = Split('''
679     Makefile.am
680     pch.h
681 ''')
682
683
684 src_frontends_controllers_tests_extra_files = Split('''
685     Makefile.am
686     biblio.cpp
687     boost.cpp
688     pch.h
689     test_biblio
690 ''')
691
692
693 src_frontends_controllers_tests_regfiles_extra_files = Split('''
694     biblio
695 ''')
696
697
698 src_frontends_qt4_header_files = Split('''
699     ButtonPolicy.h
700     Dialog.h
701     Action.h
702     BulletsModule.h
703     ButtonController.h
704     ColorCache.h
705     CustomizedWidgets.h
706     DialogView.h
707     DockView.h
708     EmptyTable.h
709     FileDialog.h
710     FindAndReplace.h
711     FloatPlacement.h
712     GuiAbout.h
713     GuiApplication.h
714     GuiBibitem.h
715     GuiBibtex.h
716     GuiBox.h
717     GuiBranches.h
718     GuiBranch.h
719     GuiChanges.h
720     GuiCharacter.h
721     GuiCharacter.h
722     GuiCitation.h
723     GuiClipboard.h
724     GuiCommandBuffer.h
725     GuiCommandEdit.h
726     GuiCompare.h
727     GuiCompleter.h
728     GuiDelimiter.h
729     GuiDialog.h
730     GuiDocument.h
731     GuiErrorList.h
732     GuiERT.h
733     GuiExternal.h
734     GuiFloat.h
735     GuiFontExample.h
736     GuiFontLoader.h
737     GuiGraphics.h
738     GuiGraphicsUi.h
739     GuiHSpace.h
740     GuiHyperlink.h
741     GuiIdListModel.h
742     GuiImage.h
743     GuiInclude.h
744     GuiIndex.h
745     GuiIndices.h
746     GuiInfo.h
747     GuiKeySymbol.h
748     GuiLabel.h
749     GuiListings.h
750     GuiLog.h
751     GuiMathMatrix.h
752     GuiNomencl.h
753     GuiNote.h
754     GuiPainter.h
755     GuiParagraph.h
756     GuiPhantom.h
757     GuiPrefs.h
758     GuiPrint.h
759     GuiPrintindex.h
760     GuiPrintNomencl.h
761     GuiRef.h
762     GuiSearch.h
763     GuiSelection.h
764     GuiSelectionManager.h
765     GuiSendto.h
766     GuiSetBorder.h
767     GuiShowFile.h
768     GuiSpellchecker.h
769     GuiSymbols.h
770     GuiTabularCreate.h
771     GuiTabular.h
772     GuiTexinfo.h
773     GuiThesaurus.h
774     GuiToc.h
775     GuiToolbar.h
776     GuiView.h
777     GuiViewSource.h
778     GuiVSpace.h
779     GuiWorkArea.h
780     GuiWrap.h
781     IconPalette.h
782     InsertTableWidget.h
783     LaTeXHighlighter.h
784     LayoutBox.h
785     LengthCombo.h
786     LyXFileDialog.h
787     Menus.h
788     PanelStack.h
789     qt_helpers.h
790     qt_i18n.h
791     TocModel.h
792     TocWidget.h
793     Toolbars.h
794     Validator.h
795 ''')
796
797
798 src_frontends_qt4_files = Split('''
799     ButtonPolicy.cpp
800     Dialog.cpp
801     Action.cpp
802     BulletsModule.cpp
803     ButtonController.cpp
804     ColorCache.cpp
805     CustomizedWidgets.cpp
806     EmptyTable.cpp
807     FindAndReplace.cpp
808     FileDialog.cpp
809     FloatPlacement.cpp
810     GuiAbout.cpp
811     GuiAlert.cpp
812     GuiApplication.cpp
813     GuiBibitem.cpp
814     GuiBibtex.cpp
815     GuiBox.cpp
816     GuiBranch.cpp
817     GuiBranches.cpp
818     GuiChanges.cpp
819     GuiCharacter.cpp
820     GuiCitation.cpp
821     GuiClipboard.cpp
822     GuiCommandBuffer.cpp
823     GuiCommandEdit.cpp
824     GuiCompare.cpp
825     GuiCompleter.cpp
826     GuiDelimiter.cpp
827     GuiDialog.cpp
828     GuiDocument.cpp
829     GuiErrorList.cpp
830     GuiERT.cpp
831     GuiExternal.cpp
832     GuiFloat.cpp
833     GuiFontExample.cpp
834     GuiFontLoader.cpp
835     GuiFontMetrics.cpp
836     GuiGraphics.cpp
837     GuiHSpace.cpp
838     GuiHyperlink.cpp
839     GuiIdListModel.cpp 
840     GuiImage.cpp
841     GuiInclude.cpp
842     GuiIndex.cpp
843     GuiIndices.cpp
844     GuiInfo.cpp
845     GuiKeySymbol.cpp
846     GuiLabel.cpp
847     GuiListings.cpp
848     GuiLog.cpp
849     GuiMathMatrix.cpp
850     GuiNomencl.cpp
851     GuiNote.cpp
852     GuiPainter.cpp
853     GuiParagraph.cpp
854     GuiPhantom.cpp
855     GuiPrefs.cpp
856     GuiPrint.cpp
857     GuiPrintindex.cpp
858     GuiPrintNomencl.cpp
859     GuiRef.cpp
860     GuiSearch.cpp
861     GuiSelection.cpp
862     GuiSelectionManager.cpp
863     GuiSendto.cpp
864     GuiSetBorder.cpp
865     GuiShowFile.cpp
866     GuiSpellchecker.cpp
867     GuiSymbols.cpp
868     GuiTabular.cpp
869     GuiTabularCreate.cpp
870     GuiTexinfo.cpp
871     GuiThesaurus.cpp
872     GuiToc.cpp
873     GuiToolbar.cpp
874     GuiView.cpp
875     GuiViewSource.cpp
876     GuiVSpace.cpp
877     GuiWorkArea.cpp
878     GuiWrap.cpp
879     IconPalette.cpp
880     InsertTableWidget.cpp
881     LengthCombo.cpp
882     LaTeXHighlighter.cpp
883     LayoutBox.cpp
884     LyXFileDialog.cpp
885     Menus.cpp
886     PanelStack.cpp
887     qt_helpers.cpp
888     TocModel.cpp
889     TocWidget.cpp
890     Toolbars.cpp
891     Validator.cpp
892 ''')
893
894
895 src_frontends_qt4_extra_files = Split('''
896     GuiFontMetrics.h
897     Makefile.am
898     pch.h
899     README    
900 ''')
901
902
903 src_frontends_qt4_ui_files = Split('''
904     AboutUi.ui
905     AskForTextUi.ui
906     BibitemUi.ui
907     BiblioUi.ui
908     BibtexAddUi.ui
909     BibtexUi.ui
910     BoxUi.ui
911     BranchUi.ui
912     BranchesUi.ui
913     BranchesUnknownUi.ui
914     BulletsUi.ui
915     ChangesUi.ui
916     CharacterUi.ui
917     CitationUi.ui
918     CompareUi.ui
919     DelimiterUi.ui
920     DocumentUi.ui
921     ERTUi.ui
922     ErrorListUi.ui
923     ExternalUi.ui
924     FindAndReplaceUi.ui
925     FloatPlacementUi.ui
926     FloatUi.ui
927     FontUi.ui
928     GraphicsUi.ui
929     HSpaceUi.ui
930     HyperlinkUi.ui
931     IncludeUi.ui
932     IndexUi.ui
933     IndicesUi.ui
934     InfoUi.ui
935     LabelUi.ui
936     LaTeXUi.ui
937     LanguageUi.ui
938     ListingsUi.ui
939     ListingsSettingsUi.ui
940     LogUi.ui
941     MarginsUi.ui
942     MathMatrixUi.ui
943     MathsUi.ui
944     ModulesUi.ui
945     NomenclUi.ui
946     NoteUi.ui
947     NumberingUi.ui
948     OutputUi.ui
949     PageLayoutUi.ui
950     ParagraphUi.ui
951     PDFSupportUi.ui
952     PhantomUi.ui
953     PreambleUi.ui
954     PrefColorsUi.ui
955     PrefCompletionUi.ui
956     PrefConvertersUi.ui
957     PrefDateUi.ui
958     PrefDisplayUi.ui
959     PrefEditUi.ui
960     PrefFileformatsUi.ui
961     PrefIdentityUi.ui
962     PrefInputUi.ui
963     PrefLanguageUi.ui
964     PrefLatexUi.ui
965     PrefPathsUi.ui
966     PrefPlaintextUi.ui
967     PrefPrinterUi.ui
968     PrefScreenFontsUi.ui
969     PrefShortcutsUi.ui
970     PrefSpellcheckerUi.ui
971     PrefUi.ui
972     PrefsUi.ui
973     PrintUi.ui
974     PrintindexUi.ui
975     PrintNomenclUi.ui
976     RefUi.ui
977     SearchUi.ui
978     SendtoUi.ui
979     ShortcutUi.ui
980     ShowFileUi.ui
981     SpellcheckerUi.ui
982     SymbolsUi.ui
983     TabularCreateUi.ui
984     TabularUi.ui
985     TexinfoUi.ui
986     TextLayoutUi.ui
987     ThesaurusUi.ui
988     TocUi.ui
989     ToggleWarningUi.ui
990     VSpaceUi.ui
991     ViewSourceUi.ui
992     WrapUi.ui
993 ''')
994
995
996 src_frontends_qt4_ui_extra_files = Split('''
997     compile_uic.sh
998     Makefile.am    
999 ''')
1000
1001
1002 src_insets_header_files = Split('''
1003     ExternalSupport.h
1004     ExternalTemplate.h
1005     ExternalTransforms.h
1006     Inset.h
1007     InsetBibitem.h
1008     InsetBibtex.h
1009     InsetBox.h
1010     InsetBranch.h
1011     InsetCaption.h
1012     InsetCitation.h
1013     InsetCode.h
1014     InsetCollapsable.h
1015     InsetCommand.h
1016     InsetCommandParams.h
1017     InsetERT.h
1018     InsetExternal.h
1019     InsetFlex.h
1020     InsetFloat.h
1021     InsetFloatList.h
1022     InsetFoot.h
1023     InsetFootlike.h
1024     InsetGraphics.h
1025     InsetGraphicsParams.h
1026     InsetHyperlink.h
1027     InsetInclude.h
1028     InsetIndex.h
1029     InsetInfo.h
1030     InsetLabel.h
1031     InsetLayout.h
1032     InsetLine.h
1033     InsetListings.h
1034     InsetListingsParams.h
1035     InsetMarginal.h
1036     InsetNewline.h
1037     InsetNewpage.h
1038     InsetNomencl.h
1039     InsetNote.h
1040     InsetOptArg.h
1041     InsetPhantom.h
1042     InsetQuotes.h
1043     InsetRef.h
1044     InsetSpace.h
1045     InsetSpecialChar.h
1046     InsetTOC.h
1047     InsetTabular.h
1048     InsetText.h
1049     InsetVSpace.h
1050     InsetWrap.h
1051     RenderBase.h
1052     RenderButton.h
1053     RenderGraphic.h
1054     RenderPreview.h
1055 ''')
1056
1057
1058 src_insets_files = Split('''
1059     ExternalSupport.cpp
1060     ExternalTemplate.cpp
1061     ExternalTransforms.cpp
1062     Inset.cpp
1063     InsetBibitem.cpp
1064     InsetBibtex.cpp
1065     InsetBox.cpp
1066     InsetBranch.cpp
1067     InsetCaption.cpp
1068     InsetCitation.cpp
1069     InsetCollapsable.cpp
1070     InsetCommand.cpp
1071     InsetCommandParams.cpp
1072     InsetERT.cpp
1073     InsetExternal.cpp
1074     InsetFlex.cpp
1075     InsetFloat.cpp
1076     InsetFloatList.cpp
1077     InsetFoot.cpp
1078     InsetFootlike.cpp
1079     InsetGraphics.cpp
1080     InsetGraphicsParams.cpp
1081     InsetHyperlink.cpp
1082     InsetInclude.cpp
1083     InsetIndex.cpp
1084     InsetInfo.cpp
1085     InsetLabel.cpp
1086     InsetLayout.cpp
1087     InsetLine.cpp
1088     InsetListings.cpp
1089     InsetListingsParams.cpp
1090     InsetMarginal.cpp
1091     InsetNewline.cpp
1092     InsetNewpage.cpp
1093     InsetNomencl.cpp
1094     InsetNote.cpp
1095     InsetOptArg.cpp
1096     InsetPhantom.cpp
1097     InsetQuotes.cpp
1098     InsetRef.cpp
1099     InsetSpace.cpp
1100     InsetSpecialChar.cpp
1101     InsetTOC.cpp
1102     InsetTabular.cpp
1103     InsetText.cpp
1104     InsetVSpace.cpp
1105     InsetWrap.cpp
1106     RenderButton.cpp
1107     RenderGraphic.cpp
1108     RenderPreview.cpp
1109 ''')
1110
1111
1112 src_insets_extra_files = Split('''
1113     Makefile.am
1114     pch.h
1115 ''')
1116
1117
1118 intl_header_files = Split('''
1119     eval-plural.h
1120     gettextP.h
1121     gmo.h
1122     hash-string.h
1123     loadinfo.h
1124     localcharset.h
1125     os2compat.h
1126     plural-exp.h
1127     printf-args.h
1128     printf-parse.h
1129     relocatable.h
1130     vasnprintf.h
1131     vasnwprintf.h
1132     wprintf-parse.h
1133     xsize.h
1134 ''')
1135
1136
1137 intl_files = Split('''
1138     bindtextdom.c
1139     dcgettext.c
1140     dcigettext.c
1141     dcngettext.c
1142     dgettext.c
1143     dngettext.c
1144     explodename.c
1145     finddomain.c
1146     gettext.c
1147     intl-compat.c
1148     l10nflist.c
1149     langprefs.c
1150     loadmsgcat.c
1151     localcharset.c
1152     localealias.c
1153     localename.c
1154     log.c
1155     ngettext.c
1156     osdep.c
1157     plural-exp.c
1158     plural.c
1159     printf.c
1160     relocatable.c
1161     textdomain.c
1162 ''')
1163
1164
1165 intl_extra_files = Split('''
1166     config.charset
1167     libgnuintl.h.in
1168     locale.alias
1169     os2compat.c
1170     plural.y
1171     printf-args.c
1172     printf-parse.c
1173     ref-add.sin
1174     ref-del.sin
1175     vasnprintf.c
1176     VERSION
1177 ''')
1178
1179
1180 config_extra_files = Split('''
1181     common.am
1182     config.guess
1183     config.rpath
1184     config.sub
1185     depcomp
1186     install-sh
1187     ltmain.sh
1188     lyxinclude.m4
1189     Makefile.am
1190     missing
1191     mkinstalldirs
1192     pkg.m4
1193     py-compile
1194     qt4.m4
1195     spell.m4
1196 ''')
1197
1198
1199 sourcedoc_extra_files = Split('''
1200     Doxyfile.in
1201     Makefile.am
1202 ''')
1203
1204
1205 po_extra_files = Split('''
1206     ar.po
1207     bg.po
1208     boldquot.sed
1209     ca.po
1210     cs.po
1211     da.po
1212     de.po
1213     en@boldquot.header
1214     en@quot.header
1215     en.po
1216     es.po
1217     eu.po
1218     fi.po
1219     fr.po
1220     gl.po
1221     he.po
1222     hu.po
1223     insert-header.sin
1224     id.po
1225     it.po
1226     ja.po
1227     ko.po
1228     LINGUAS
1229     lyx_pot.py
1230     Makefile.in.in
1231     Makevars
1232     nb.po
1233     nl.po
1234     nn.po
1235     pl.po
1236     pocheck.pl
1237     POTFILES.in
1238     postats.sh
1239     pt.po
1240     quot.sed
1241     README
1242     remove-potcdate.sin
1243     ro.po
1244     ru.po
1245     Rules-quot
1246     sk.po
1247     sl.po
1248     sv.po
1249     tr.po
1250     uk.po
1251     wa.po
1252     zh_CN.po
1253     zh_TW.po
1254 ''')
1255
1256
1257 lib_files = Split('''
1258     chkconfig.ltx
1259     configure.py
1260     CREDITS
1261     encodings
1262     external_templates
1263     languages
1264     symbols
1265     syntax.default
1266     unicodesymbols
1267 ''')
1268
1269
1270 lib_extra_files = Split('''
1271     autocorrect
1272     build-listerrors
1273     generate_contributions.py
1274     Makefile.am
1275 ''')
1276
1277
1278 lib_kbd_files = Split('''
1279     american-2.kmap
1280     american.kmap
1281     arabic.kmap
1282     bg-bds-1251.kmap
1283     brazil.kmap
1284     brazil2.kmap
1285     czech-prg.kmap
1286     czech.kmap
1287     espanol.kmap
1288     european.kmap
1289     farsi.kmap
1290     francais.kmap
1291     french.kmap
1292     german-2.kmap
1293     german-3.kmap
1294     german.kmap
1295     greek.kmap
1296     hebrew.kmap
1297     koi8-r.kmap
1298     koi8-u.kmap
1299     latvian.kmap
1300     magyar-2.kmap
1301     magyar-3.kmap
1302     magyar.kmap
1303     null.kmap
1304     polish.kmap
1305     polski.kmap
1306     portuges.kmap
1307     romanian.kmap
1308     serbian.kmap
1309     serbocroatian.kmap
1310     sf.kmap
1311     sg.kmap
1312     slovak.kmap
1313     slovene.kmap
1314     thai-kedmanee.kmap
1315     transilvanian.kmap
1316     turkish-f.kmap
1317     turkish.kmap
1318 ''')
1319
1320
1321 lib_templates_files = Split('''
1322     aa.lyx
1323     aastex.lyx
1324     ACM-siggraph.lyx
1325     ACM-sigplan.lyx
1326     agu_article.lyx
1327     apa.lyx
1328     beamer-conference-ornate-20min.lyx
1329     de_beamer-conference-ornate-20min.lyx
1330     dinbrief.lyx
1331     docbook_article.lyx
1332     elsarticle.lyx
1333     fr_beamer-conference-ornate-20min.lyx
1334     g-brief-de.lyx
1335     g-brief-en.lyx
1336     g-brief2.lyx
1337     hollywood.lyx
1338     IEEEtran.lyx
1339     ijmpc.lyx
1340     ijmpd.lyx
1341     iop-article.lyx
1342     JSS-article.lyx
1343     kluwer.lyx
1344     koma-letter2.lyx
1345     latex8.lyx
1346     letter.lyx
1347     README.new_templates
1348     revtex.lyx
1349     revtex4.lyx
1350     slides.lyx
1351     svjour3.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 ''')
2499
2500
2501 lib_examples_fa_files = Split('''
2502     splash.lyx
2503 ''')
2504
2505
2506 lib_examples_fr_files = Split('''
2507     AlignementDecimal.lyx
2508     Braille.lyx
2509     exemple_brut.lyx
2510     exemple_lyxifie.lyx
2511     Foils.lyx
2512     ListesPuces.lyx
2513     multicol.lyx
2514     simplecv.lyx
2515     splash.lyx
2516 ''')
2517
2518
2519 lib_examples_es_files = Split('''
2520     Braille.lyx
2521     ejemplo_con_lyx.lyx
2522     ejemplo_sin_lyx.lyx
2523     ItemizeBullets.lyx
2524     linguistics.lyx
2525     multicol.lyx
2526     splash.lyx
2527 ''')
2528
2529
2530 lib_examples_eu_files = Split('''
2531     adibide_gordina.lyx
2532     adibide_lyx-atua.lyx
2533     splash.lyx
2534 ''')
2535
2536
2537 lib_examples_gl_files = Split('''
2538     exemplo_bruto.lyx
2539     exemplo_lyxificado.lyx
2540     splash.lyx
2541 ''')
2542
2543
2544 lib_examples_he_files = Split('''
2545     example_lyxified.lyx
2546     example_raw.lyx
2547     splash.lyx
2548 ''')
2549
2550
2551 lib_examples_hu_files = Split('''
2552     example_lyxified.lyx
2553     example_raw.lyx
2554     splash.lyx
2555 ''')
2556
2557
2558 lib_examples_id_files = Split('''
2559     splash.lyx
2560 ''')
2561
2562
2563 lib_examples_it_files = Split('''
2564     ItemizeBullets.lyx
2565     splash.lyx
2566 ''')
2567
2568
2569 lib_examples_ja_files = Split('''
2570     Braille.lyx
2571     splash.lyx
2572 ''')
2573
2574
2575 lib_examples_nl_files = Split('''
2576     multicol.lyx
2577     opsommingstekens.lyx
2578     splash.lyx
2579     voorbeeld_ruw.lyx
2580     voorbeeld_verlyxt.lyx
2581 ''')
2582
2583
2584 lib_examples_pl_files = Split('''
2585     splash.lyx
2586 ''')
2587
2588
2589 lib_examples_pt_files = Split('''
2590     splash.lyx
2591 ''')
2592
2593
2594 lib_examples_ro_files = Split('''
2595     splash.lyx
2596 ''')
2597
2598
2599 lib_examples_ru_files = Split('''
2600     splash.lyx
2601 ''')
2602
2603
2604 lib_examples_sl_files = Split('''
2605     primer_lyxan.lyx
2606     primer_surov.lyx
2607     splash.lyx
2608 ''')
2609
2610
2611 lib_examples_sk_files = Split('''
2612     splash.lyx
2613 ''')
2614
2615
2616 lib_examples_uk_files = Split('''
2617     splash.lyx
2618 ''')
2619
2620
2621 lib_lyx2lyx_files = Split('''
2622     generate_encoding_info.py
2623     LyX.py
2624     lyx2lyx
2625     lyx2lyx_lang.py
2626     lyx_0_06.py
2627     lyx_0_08.py
2628     lyx_0_10.py
2629     lyx_0_12.py
2630     lyx_1_0.py
2631     lyx_1_1.py
2632     lyx_1_1_5.py
2633     lyx_1_1_6_0.py
2634     lyx_1_1_6_3.py
2635     lyx_1_2.py
2636     lyx_1_3.py
2637     lyx_1_4.py
2638     lyx_1_5.py
2639     lyx_1_6.py
2640     lyx_2_0.py
2641     parser_tools.py
2642     profiling.py
2643     test_parser_tools.py
2644 ''')
2645
2646
2647 lib_lyx2lyx_extra_files = Split('''
2648     lyx2lyx_version.py.in
2649     Makefile.am
2650 ''')
2651
2652
2653 lib_layouts_files = Split('''
2654     aa.layout
2655     aapaper.layout
2656     aastex.layout
2657     achemso.layout
2658     acmsiggraph.layout
2659     agu-dtd.layout
2660     agums.layout
2661     amsart.layout
2662     amsbook.layout
2663     apa.layout
2664     arab-article.layout
2665     armenian-article.layout
2666     article.layout
2667     article-beamer.layout
2668     beamer.layout
2669     book.layout
2670     broadway.layout
2671     chess.layout
2672     cl2emult.layout
2673     dinbrief.layout
2674     docbook-book.layout
2675     docbook-chapter.layout
2676     docbook-section.layout
2677     docbook.layout
2678     doublecol-new.layout
2679     dtk.layout
2680     egs.layout
2681     elsart.layout
2682     elsarticle.layout
2683     entcs.layout
2684     europecv.layout
2685     extarticle.layout
2686     extbook.layout
2687     extletter.layout
2688     extreport.layout
2689     foils.layout
2690     g-brief-de.layout
2691     g-brief-en.layout
2692     g-brief2.layout
2693     heb-article.layout
2694     heb-letter.layout
2695     hollywood.layout
2696     IEEEtran.layout
2697     ijmpc.layout
2698     ijmpd.layout
2699     iopart.layout
2700     isprs.layout
2701     jarticle.layout
2702     jbook.layout
2703     jgrga.layout
2704     jreport.layout
2705     jsarticle.layout
2706     jsbook.layout
2707     jss.layout
2708     kluwer.layout
2709     latex8.layout
2710     letter.layout
2711     literate-article.layout
2712     literate-book.layout
2713     literate-report.layout
2714     llncs.layout
2715     ltugboat.layout
2716     memoir.layout
2717     moderncv.layout
2718     mwart.layout
2719     mwbk.layout
2720     mwrep.layout
2721     paper.layout
2722     powerdot.layout
2723     recipebook.layout
2724     report.layout
2725     revtex.layout
2726     revtex4.layout
2727     scrartcl.layout
2728     scrarticle-beamer.layout
2729     scrbook.layout
2730     scrlettr.layout
2731     scrlttr2.layout
2732     scrreprt.layout
2733     seminar.layout
2734     siamltex.layout
2735     sigplanconf.layout
2736     simplecv.layout
2737     singlecol.layout
2738     singlecol-new.layout
2739     slides.layout
2740     spie.layout
2741     svglobal.layout
2742     svglobal3.layout
2743     svjog.layout
2744     svprobth.layout
2745     tarticle.layout
2746     tbook.layout
2747     treport.layout
2748     tufte-book.layout
2749     tufte-handout.layout
2750 ''')
2751
2752
2753 lib_layouts_inc_files = Split('''
2754     aapaper.inc
2755     agu_stdclass.inc
2756     agu_stdcounters.inc
2757     agu_stdlists.inc
2758     agu_stdsections.inc
2759     agu_stdtitle.inc
2760     aguplus.inc
2761     amsdefs.inc
2762     db_lyxmacros.inc
2763     db_stdcharstyles.inc
2764     db_stdclass.inc
2765     db_stdcounters.inc
2766     db_stdlayouts.inc
2767     db_stdlists.inc
2768     db_stdsections.inc
2769     db_stdstarsections.inc
2770     db_stdstruct.inc
2771     db_stdtitle.inc
2772     literate-scrap.inc
2773     lyxmacros.inc
2774     numarticle.inc
2775     numreport.inc
2776     numrevtex.inc
2777     scrclass.inc
2778     stdcharstyles.inc
2779     stdclass.inc
2780     stdcounters.inc
2781     stdcustom.inc
2782     stdfloats.inc
2783     stdinsets.inc
2784     stdlayouts.inc
2785     stdletter.inc
2786     stdlists.inc
2787     stdsections.inc
2788     stdstarsections.inc
2789     stdstruct.inc
2790     stdtitle.inc
2791     svjour.inc
2792     theorems.inc
2793     theorems-ams.inc
2794     theorems-order.inc
2795     theorems-proof.inc
2796     theorems-proof-std.inc
2797     theorems-starred.inc
2798     theorems-starred-equivalents.inc
2799 ''')
2800
2801
2802 lib_layouts_module_files = Split('''
2803     braille.module
2804     endnotes.module
2805     eqs-within-sections.module
2806     figs-within-sections.module
2807     foottoend.module
2808     hanging.module
2809     initials.module
2810     linguistics.module
2811     logicalmkup.module
2812     minimalistic.module
2813     noweb.module
2814     sweave.module
2815     tabs-within-sections.module
2816     theorems-ams-extended.module
2817     theorems-ams.module
2818     theorems-chap.module
2819     theorems-sec.module
2820     theorems-starred.module
2821     theorems-std.module
2822 ''')
2823
2824 lib_scripts_files = Split('''
2825     clean_dvi.py
2826     convertDefault.py
2827     csv2lyx.py
2828     date.py
2829     ext_copy.py
2830     fen2ascii.py
2831     fig2pdftex.py
2832     fig2pstex.py
2833     fig_copy.py
2834     layout2layout.py
2835     legacy_lyxpreview2ppm.py
2836     listerrors
2837     lyxpreview2bitmap.py
2838     lyxpreview-platex2bitmap.py
2839     lyxpreview_tools.py
2840     TeXFiles.py
2841     tex_copy.py
2842 ''')
2843
2844
2845 lib_bind_files = Split('''
2846     aqua.bind
2847     broadway.bind
2848     cua.bind
2849     cyrkeys.bind
2850     emacs.bind
2851     greekkeys.bind
2852     hollywood.bind
2853     latinkeys.bind
2854     mac.bind
2855     math.bind
2856     menus.bind
2857     sciword.bind
2858     site.bind
2859     xemacs.bind
2860 ''')
2861
2862
2863 lib_bind_fi_files = Split('''
2864     menus.bind
2865 ''')
2866
2867
2868 lib_bind_sv_files = Split('''
2869     menus.bind
2870 ''')
2871
2872
2873 lib_bind_pt_files = Split('''
2874     menus.bind
2875 ''')
2876
2877
2878 lib_bind_de_files = Split('''
2879     menus.bind
2880 ''')
2881
2882
2883 lib_commands_files = Split('''
2884     default.def
2885 ''')
2886
2887
2888 boost_extra_files = Split('''
2889     LICENSE_1_0.txt
2890     Makefile.am
2891 ''')
2892
2893
2894 boost_libs_extra_files = Split('''
2895     Makefile.am
2896     README
2897 ''')
2898
2899
2900 boost_libs_signals_extra_files = Split('''
2901     Makefile.am
2902     signals.vcproj
2903 ''')
2904
2905
2906 boost_libs_signals_src_files = Split('''
2907     connection.cpp
2908     named_slot_map.cpp
2909     signal_base.cpp
2910     slot.cpp
2911     trackable.cpp
2912 ''')
2913
2914
2915 boost_libs_signals_src_extra_files = Split('''
2916     Makefile.am
2917     pch.h
2918 ''')
2919
2920
2921 boost_libs_regex_extra_files = Split('''
2922     Makefile.am
2923     regex.vcproj
2924 ''')
2925
2926
2927 boost_libs_regex_src_files = Split('''
2928     c_regex_traits.cpp
2929     cpp_regex_traits.cpp
2930     cregex.cpp
2931     fileiter.cpp
2932     instances.cpp
2933     posix_api.cpp
2934     regex.cpp
2935     regex_debug.cpp
2936     regex_raw_buffer.cpp
2937     regex_traits_defaults.cpp
2938     w32_regex_traits.cpp
2939     wide_posix_api.cpp
2940     winstances.cpp
2941 ''')
2942
2943
2944 boost_libs_regex_src_extra_files = Split('''
2945     Makefile.am
2946     pch.h
2947 ''')
2948
2949
2950
2951 development_Win32_packaging_installer = Split('''
2952     license.rtf
2953     lyx.nsi
2954     settings.nsh
2955 ''')
2956
2957
2958 development_Win32_packaging_installer_graphics = Split('''
2959     header.bmp
2960     wizard.bmp
2961 ''')
2962
2963
2964 development_Win32_packaging_installer_gui = Split('''
2965     external.nsh
2966     langselect.nsh
2967     reinstall.nsh
2968 ''')
2969
2970
2971 development_Win32_packaging_installer_include = Split('''
2972     declarations.nsh
2973     detection.nsh
2974     dictlist.nsh    
2975     filelist.nsh
2976     gui.nsh
2977     init.nsh
2978     langlist.nsh
2979     nsis.nsh
2980     variables.nsh
2981 ''')
2982
2983
2984 development_Win32_packaging_installer_lang = Split('''
2985     english.nsh
2986     french.nsh
2987     german.nsh
2988     italian.nsh
2989 ''')
2990
2991
2992 development_Win32_packaging_installer_setup = Split('''
2993     configure.nsh
2994     install.nsh
2995     reinstall.nsh
2996 ''')