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