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