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