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