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