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