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