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