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