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