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