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