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