]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
scons
[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.1in
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     lyxtime.cpp
345     os.cpp
346     qstring_helpers.cpp
347     socktools.cpp
348     unicode.cpp
349     userinfo.cpp
350 ''')
351
352
353 src_support_extra_header_files = Split('''
354     
355 ''')
356
357
358 src_support_extra_src_files = Split('''
359     atexit.c
360     os_cygwin.cpp
361     os_unix.cpp
362     os_win32.cpp
363     strerror.c
364 ''')
365
366
367 src_support_extra_files = Split('''
368     Makefile.am
369     pch.h
370 ''')
371
372
373 src_support_tests_extra_files = Split('''
374     Makefile.am
375     boost.cpp
376     convert.cpp
377     filetools.cpp
378     lstrings.cpp
379     pch.h
380     test_convert
381     test_filetools
382     test_lstrings
383 ''')
384
385
386 src_support_tests_regfiles_extra_files = Split('''
387     convert
388     filetools
389     lstrings
390 ''')
391
392
393 src_graphics_header_files = Split('''
394     GraphicsCache.h
395     GraphicsCacheItem.h
396     GraphicsConverter.h
397     GraphicsImage.h
398     GraphicsLoader.h
399     GraphicsParams.h
400     GraphicsTypes.h
401     PreviewImage.h
402     PreviewLoader.h
403     Previews.h
404 ''')
405
406
407 src_graphics_files = Split('''
408     GraphicsCache.cpp
409     GraphicsCacheItem.cpp
410     GraphicsConverter.cpp
411     GraphicsLoader.cpp
412     GraphicsParams.cpp
413     PreviewImage.cpp
414     PreviewLoader.cpp
415     Previews.cpp
416 ''')
417
418
419 src_graphics_extra_files = Split('''
420     Makefile.am
421     pch.h
422 ''')
423
424
425 src_mathed_header_files = Split('''
426     CommandInset.h
427     InsetMath.h
428     InsetMathAMSArray.h
429     InsetMathArray.h
430     InsetMathBig.h
431     InsetMathBoldSymbol.h
432     InsetMathBox.h
433     InsetMathBrace.h
434     InsetMathCases.h
435     InsetMathChar.h
436     InsetMathColor.h
437     InsetMathComment.h
438     InsetMathDecoration.h
439     InsetMathDelim.h
440     InsetMathDiff.h
441     InsetMathDots.h
442     InsetMathEnsureMath.h
443     InsetMathEnv.h
444     InsetMathExFunc.h
445     InsetMathExInt.h
446     InsetMathFont.h
447     InsetMathFontOld.h
448     InsetMathFrac.h
449     InsetMathGrid.h
450     InsetMathHull.h
451     InsetMathKern.h
452     InsetMathLefteqn.h
453     InsetMathLim.h
454     InsetMathMatrix.h
455     InsetMathNest.h
456     InsetMathNumber.h
457     InsetMathOverset.h
458     InsetMathPar.h
459     InsetMathPhantom.h
460     InsetMathRef.h
461     InsetMathRoot.h
462     InsetMathScript.h
463     InsetMathSize.h
464     InsetMathSpace.h
465     InsetMathSplit.h
466     InsetMathSqrt.h
467     InsetMathStackrel.h
468     InsetMathString.h
469     InsetMathSubstack.h
470     InsetMathSymbol.h
471     InsetMathTabular.h
472     InsetMathUnderset.h
473     InsetMathUnknown.h
474     InsetMathXArrow.h
475     InsetMathXYMatrix.h
476     MacroTable.h
477     MathAtom.h
478     MathAutoCorrect.h
479     MathCompletionList.h
480     MathData.h
481     MathExtern.h
482     MathFactory.h
483     MathGridInfo.h
484     MathMacro.h
485     MathMacroArgument.h
486     MathMacroTemplate.h
487     MathParser.h
488     MathParser_flags.h
489     MathStream.h
490     MathSupport.h
491     ReplaceData.h
492     TextPainter.h
493 ''')
494
495
496 src_mathed_files = Split('''
497     CommandInset.cpp
498     InsetMath.cpp
499     InsetMathAMSArray.cpp
500     InsetMathArray.cpp
501     InsetMathBig.cpp
502     InsetMathBoldSymbol.cpp
503     InsetMathBox.cpp
504     InsetMathBrace.cpp
505     InsetMathCases.cpp
506     InsetMathChar.cpp
507     InsetMathColor.cpp
508     InsetMathComment.cpp
509     InsetMathDecoration.cpp
510     InsetMathDelim.cpp
511     InsetMathDiff.cpp
512     InsetMathDots.cpp
513     InsetMathEnsureMath.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     ModulesUi.ui
902     NomenclUi.ui
903     NoteUi.ui
904     NumberingUi.ui
905     PageLayoutUi.ui
906     ParagraphUi.ui
907     PDFSupportUi.ui
908     PreambleUi.ui
909     PrefColorsUi.ui
910     PrefCompletionUi.ui
911     PrefConvertersUi.ui
912     PrefDateUi.ui
913     PrefDisplayUi.ui
914     PrefEditUi.ui
915     PrefFileformatsUi.ui
916     PrefIdentityUi.ui
917     PrefInputUi.ui
918     PrefLanguageUi.ui
919     PrefLatexUi.ui
920     PrefPathsUi.ui
921     PrefPlaintextUi.ui
922     PrefPrinterUi.ui
923     PrefScreenFontsUi.ui
924     PrefShortcutsUi.ui
925     PrefSpellcheckerUi.ui
926     PrefUi.ui
927     PrefsUi.ui
928     PrintUi.ui
929     RefUi.ui
930     SearchUi.ui
931     SendtoUi.ui
932     ShortcutUi.ui
933     ShowFileUi.ui
934     SpellcheckerUi.ui
935     SymbolsUi.ui
936     TabularCreateUi.ui
937     TabularUi.ui
938     TexinfoUi.ui
939     TextLayoutUi.ui
940     ThesaurusUi.ui
941     TocUi.ui
942     VSpaceUi.ui
943     ViewSourceUi.ui
944     WrapUi.ui
945 ''')
946
947
948 src_frontends_qt4_ui_extra_files = Split('''
949     Makefile.am
950     compile_uic.sh
951 ''')
952
953
954 src_insets_header_files = Split('''
955     ExternalSupport.h
956     ExternalTemplate.h
957     ExternalTransforms.h
958     Inset.h
959     InsetBibitem.h
960     InsetBibtex.h
961     InsetBox.h
962     InsetBranch.h
963     InsetCaption.h
964     InsetCitation.h
965     InsetCode.h
966     InsetCollapsable.h
967     InsetCommand.h
968     InsetCommandParams.h
969     InsetERT.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     InsetExternal.cpp
1025     InsetFlex.cpp
1026     InsetFloat.cpp
1027     InsetFloatList.cpp
1028     InsetFoot.cpp
1029     InsetFootlike.cpp
1030     InsetGraphics.cpp
1031     InsetGraphicsParams.cpp
1032     InsetHyperlink.cpp
1033     InsetInclude.cpp
1034     InsetIndex.cpp
1035     InsetInfo.cpp
1036     InsetLabel.cpp
1037     InsetLayout.cpp
1038     InsetLine.cpp
1039     InsetListings.cpp
1040     InsetListingsParams.cpp
1041     InsetMarginal.cpp
1042     InsetNewline.cpp
1043     InsetNewpage.cpp
1044     InsetNomencl.cpp
1045     InsetNote.cpp
1046     InsetOptArg.cpp
1047     InsetQuotes.cpp
1048     InsetRef.cpp
1049     InsetSpace.cpp
1050     InsetSpecialChar.cpp
1051     InsetTOC.cpp
1052     InsetTabular.cpp
1053     InsetText.cpp
1054     InsetVSpace.cpp
1055     InsetWrap.cpp
1056     RenderButton.cpp
1057     RenderGraphic.cpp
1058     RenderPreview.cpp
1059 ''')
1060
1061
1062 src_insets_extra_files = Split('''
1063     Makefile.am
1064     pch.h
1065 ''')
1066
1067
1068 intl_header_files = Split('''
1069     eval-plural.h
1070     gettextP.h
1071     gmo.h
1072     hash-string.h
1073     loadinfo.h
1074     localcharset.h
1075     os2compat.h
1076     plural-exp.h
1077     printf-args.h
1078     printf-parse.h
1079     relocatable.h
1080     vasnprintf.h
1081     vasnwprintf.h
1082     wprintf-parse.h
1083     xsize.h
1084 ''')
1085
1086
1087 intl_files = Split('''
1088     bindtextdom.c
1089     dcgettext.c
1090     dcigettext.c
1091     dcngettext.c
1092     dgettext.c
1093     dngettext.c
1094     explodename.c
1095     finddomain.c
1096     gettext.c
1097     intl-compat.c
1098     l10nflist.c
1099     langprefs.c
1100     loadmsgcat.c
1101     localcharset.c
1102     localealias.c
1103     localename.c
1104     log.c
1105     ngettext.c
1106     osdep.c
1107     plural-exp.c
1108     plural.c
1109     printf.c
1110     relocatable.c
1111     textdomain.c
1112 ''')
1113
1114
1115 intl_extra_files = Split('''
1116     VERSION
1117     config.charset
1118     libgnuintl.h.in
1119     locale.alias
1120     os2compat.c
1121     plural.y
1122     printf-args.c
1123     printf-parse.c
1124     ref-add.sin
1125     ref-del.sin
1126     vasnprintf.c
1127 ''')
1128
1129
1130 config_extra_files = Split('''
1131     Makefile.am
1132     common.am
1133     config.guess
1134     config.rpath
1135     config.sub
1136     depcomp
1137     install-sh
1138     libtool.m4
1139     ltmain.sh
1140     lyxinclude.m4
1141     missing
1142     mkinstalldirs
1143     pkg.m4
1144     py-compile
1145     qt4.m4
1146     spell.m4
1147 ''')
1148
1149
1150 sourcedoc_extra_files = Split('''
1151     Doxyfile.in
1152     Makefile.am
1153 ''')
1154
1155
1156 po_extra_files = Split('''
1157     LINGUAS
1158     Makefile.in.in
1159     Makevars
1160     POTFILES.in
1161     README
1162     Rules-quot
1163     ar.po
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     en.po
1173     es.po
1174     eu.po
1175     fi.po
1176     fr.po
1177     gl.po
1178     he.po
1179     hu.po
1180     insert-header.sin
1181     it.po
1182     ja.po
1183     ko.po
1184     lyx_pot.py
1185     nb.po
1186     nl.po
1187     nn.po
1188     pl.po
1189     pocheck.pl
1190     postats.sh
1191     pt.po
1192     quot.sed
1193     remove-potcdate.sin
1194     ro.po
1195     ru.po
1196     sk.po
1197     sl.po
1198     sv.po
1199     tr.po
1200     uk.po
1201     wa.po
1202     zh_CN.po
1203     zh_TW.po
1204 ''')
1205
1206
1207 lib_files = Split('''
1208     CREDITS
1209     chkconfig.ltx
1210     configure.py
1211     encodings
1212     external_templates
1213     languages
1214     symbols
1215     syntax.default
1216     unicodesymbols
1217 ''')
1218
1219
1220 lib_extra_files = Split('''
1221     Makefile.am
1222     autocorrect
1223     build-listerrors
1224     generate_contributions.py
1225 ''')
1226
1227
1228 lib_kbd_files = Split('''
1229     american-2.kmap
1230     american.kmap
1231     arabic.kmap
1232     bg-bds-1251.kmap
1233     brazil.kmap
1234     brazil2.kmap
1235     czech-prg.kmap
1236     czech.kmap
1237     espanol.kmap
1238     european.kmap
1239     farsi.kmap
1240     francais.kmap
1241     french.kmap
1242     german-2.kmap
1243     german-3.kmap
1244     german.kmap
1245     greek.kmap
1246     hebrew.kmap
1247     koi8-r.kmap
1248     koi8-u.kmap
1249     latvian.kmap
1250     magyar-2.kmap
1251     magyar-3.kmap
1252     magyar.kmap
1253     null.kmap
1254     polish.kmap
1255     polski.kmap
1256     portuges.kmap
1257     romanian.kmap
1258     serbian.kmap
1259     serbocroatian.kmap
1260     sf.kmap
1261     sg.kmap
1262     slovak.kmap
1263     slovene.kmap
1264     thai-kedmanee.kmap
1265     transilvanian.kmap
1266     turkish-f.kmap
1267     turkish.kmap
1268 ''')
1269
1270
1271 lib_templates_files = Split('''
1272     aa.lyx
1273     aastex.lyx
1274     ACM-sigplan.lyx
1275     agu_article.lyx
1276     apa.lyx
1277     beamer-conference-ornate-20min.lyx
1278     de_beamer-conference-ornate-20min.lyx
1279     dinbrief.lyx
1280     docbook_article.lyx
1281     elsarticle.lyx
1282     fr_beamer-conference-ornate-20min.lyx
1283     g-brief-de.lyx
1284     g-brief-en.lyx
1285     g-brief2.lyx
1286     hollywood.lyx
1287     IEEEtran.lyx
1288     ijmpc.lyx
1289     ijmpd.lyx
1290     iop-article.lyx
1291     JSS-article.lyx
1292     kluwer.lyx
1293     koma-letter2.lyx
1294     latex8.lyx
1295     letter.lyx
1296     README.new_templates
1297     revtex.lyx
1298     revtex4.lyx
1299     slides.lyx
1300 ''')
1301
1302
1303 lib_ui_files = Split('''
1304     classic.ui
1305     default.ui
1306     stdcontext.inc
1307     stdmenus.inc
1308     stdtoolbars.inc
1309 ''')
1310
1311
1312 lib_fonts_files = Split('''
1313     BaKoMaFontLicense.txt
1314     ReadmeBaKoMa4LyX.txt
1315     cmex10.ttf
1316     cmmi10.ttf
1317     cmr10.ttf
1318     cmsy10.ttf
1319     esint10.ttf
1320     eufm10.ttf
1321     msam10.ttf
1322     msbm10.ttf
1323     wasy10.ttf
1324 ''')
1325
1326
1327 lib_images_files = Split('''
1328     all-changes-accept.png
1329     all-changes-reject.png
1330     amssymb.png
1331     banner.png
1332     bookmark-goto.png
1333     bookmark-save.png
1334     box-insert.png
1335     break-line.png
1336     buffer-close.png
1337     buffer-export_dvi.png
1338     buffer-export_latex.png
1339     buffer-export_pdf2.png
1340     buffer-export_ps.png
1341     buffer-export_text.png
1342     buffer-new.png
1343     buffer-reload.png
1344     buffer-update_dvi.png
1345     buffer-update_pdf2.png
1346     buffer-update_ps.png
1347     buffer-view_dvi.png
1348     buffer-view_pdf2.png
1349     buffer-view_ps.png
1350     buffer-write-as.png
1351     buffer-write.png
1352     build-program.png
1353     change-accept.png
1354     change-next.png
1355     change-reject.png
1356     changes-merge.png
1357     changes-output.png
1358     changes-track.png
1359     closetab.png
1360     close-tab-group.png
1361     copy.png
1362     cut.png
1363     demote.png
1364     depth-decrement.png
1365     depth-increment.png
1366     dialog-preferences.png
1367     dialog-show-new-inset_citation.png
1368     dialog-show-new-inset_graphics.png
1369     dialog-show-new-inset_include.png
1370     dialog-show-new-inset_ref.png
1371     dialog-show_character.png
1372     dialog-show_findreplace.png
1373     dialog-show_mathdelimiter.png
1374     dialog-show_mathmatrix.png
1375     dialog-show_print.png
1376     dialog-show_spellchecker.png
1377     dialog-toggle_toc.png
1378     down.png
1379     ert-insert.png
1380     file-open.png
1381     float-insert_figure.png
1382     float-insert_table.png
1383     font-bold.png
1384     font-emph.png
1385     textstyle-apply.png
1386     font-noun.png
1387     font-sans.png
1388     footnote-insert.png
1389     href-insert.png
1390     hidetab.png
1391     index-insert.png
1392     label-insert.png
1393     layout-document.png
1394     layout-paragraph.png
1395     layout.png
1396     layout_Description.png
1397     layout_Enumerate.png
1398     layout_Itemize.png
1399     layout_List.png
1400     layout_LyX-Code.png
1401     layout_Scrap.png
1402     layout_Section.png
1403     lyx-quit.png
1404     lyx.png
1405     vc-check-in.png
1406     vc-check-out.png
1407     dialog-show_vclog.png
1408     vc-register.png
1409     vc-revert.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     split-view_horizontal.png
1438     split-view_vertical.png
1439     standard.png
1440     tabular-feature_align-center.png
1441     tabular-feature_align-left.png
1442     tabular-feature_align-right.png
1443     tabular-feature_append-column.png
1444     tabular-feature_append-row.png
1445     tabular-feature_delete-column.png
1446     tabular-feature_delete-row.png
1447     tabular-feature_multicolumn.png
1448     tabular-feature_set-all-lines.png
1449     tabular-feature_set-longtabular.png
1450     tabular-feature_set-rotate-cell.png
1451     tabular-feature_toggle-rotate-cell.png
1452     tabular-feature_set-rotate-tabular.png
1453     tabular-feature_toggle-rotate-tabular.png
1454     tabular-feature_toggle-line-bottom.png
1455     tabular-feature_toggle-line-left.png
1456     tabular-feature_toggle-line-right.png
1457     tabular-feature_toggle-line-top.png
1458     tabular-feature_unset-all-lines.png
1459     tabular-feature_valign-bottom.png
1460     tabular-feature_valign-middle.png
1461     tabular-feature_valign-top.png
1462     tabular-insert.png
1463     thesaurus-entry.png
1464     toolbar-toggle_math.png
1465     toolbar-toggle_math_panels.png
1466     toolbar-toggle_table.png
1467     undo.png
1468     unknown.png
1469     up.png
1470     url-insert.png
1471 ''')
1472
1473
1474 lib_images_extra_files = Split('''
1475     README
1476     font-smallcaps.png
1477 ''')
1478
1479
1480 lib_images_math_files = Split('''
1481     Bbbk.png
1482     Finv.png
1483     Game.png
1484     Im.png
1485     Lleftarrow.png
1486     Lsh.png
1487     Re.png
1488     Rrightarrow.png
1489     Rsh.png
1490     Vvdash.png
1491     acute.png
1492     aleph.png
1493     alpha.png
1494     amalg.png
1495     angle.png
1496     approx.png
1497     approxeq.png
1498     asymp.png
1499     backepsilon.png
1500     backprime.png
1501     backsim.png
1502     backsimeq.png
1503     backslash.png
1504     bar.png
1505     bars.png
1506     barwedge.png
1507     because.png
1508     beta.png
1509     beth.png
1510     between.png
1511     bigcap.png
1512     bigcirc.png
1513     bigcup.png
1514     bigodot.png
1515     bigoplus.png
1516     bigotimes.png
1517     bigsqcup.png
1518     bigstar.png
1519     bigtriangledown.png
1520     bigtriangleup.png
1521     biguplus.png
1522     bigvee.png
1523     bigwedge.png
1524     blacklozenge.png
1525     blacksquare.png
1526     blacktriangle.png
1527     blacktriangledown.png
1528     blacktriangleleft.png
1529     blacktriangleright.png
1530     bot.png
1531     bowtie.png
1532     boxdot.png
1533     boxminus.png
1534     boxplus.png
1535     boxtimes.png
1536     breve.png
1537     bullet.png
1538     bumpeq.png
1539     bumpeq2.png
1540     cap.png
1541     cap2.png
1542     cases.png
1543     cdot.png
1544     cdots.png
1545     centerdot.png
1546     check.png
1547     chi.png
1548     circ.png
1549     circeq.png
1550     circlearrowleft.png
1551     circlearrowright.png
1552     circledS.png
1553     circledast.png
1554     circledcirc.png
1555     circleddash.png
1556     clubsuit.png
1557     complement.png
1558     cong.png
1559     coprod.png
1560     cup.png
1561     cup2.png
1562     curlyeqprec.png
1563     curlyeqsucc.png
1564     curlyvee.png
1565     curlywedge.png
1566     curvearrowleft.png
1567     curvearrowright.png
1568     dagger.png
1569     daleth.png
1570     dashleftarrow.png
1571     dashrightarrow.png
1572     dashv.png
1573     ddagger.png
1574     ddot.png
1575     ddots.png
1576     delim.png
1577     delta.png
1578     delta2.png
1579     diagdown.png
1580     diagup.png
1581     diamond.png
1582     diamondsuit.png
1583     digamma.png
1584     div.png
1585     divideontimes.png
1586     dot.png
1587     doteq.png
1588     doteqdot.png
1589     dotplus.png
1590     dotsint.png
1591     dotsintop.png
1592     doublebarwedge.png
1593     downarrow.png
1594     downarrow2.png
1595     downdownarrows.png
1596     downharpoonleft.png
1597     downharpoonright.png
1598     ell.png
1599     empty.png
1600     emptyset.png
1601     epsilon.png
1602     eqcirc.png
1603     eqslantgtr.png
1604     eqslantless.png
1605     equation.png
1606     equiv.png
1607     eta.png
1608     eth.png
1609     exists.png
1610     fallingdotseq.png
1611     flat.png
1612     font.png
1613     forall.png
1614     frac-square.png
1615     frac.png
1616     frown.png
1617     functions.png
1618     gamma.png
1619     gamma2.png
1620     geq.png
1621     geqq.png
1622     geqslant.png
1623     gg.png
1624     ggg.png
1625     gimel.png
1626     gnapprox.png
1627     gneq.png
1628     gneqq.png
1629     gnsim.png
1630     grave.png
1631     gtrapprox.png
1632     gtrdot.png
1633     gtreqless.png
1634     gtreqqless.png
1635     gtrless.png
1636     gtrsim.png
1637     gvertneqq.png
1638     hat.png
1639     hbar.png
1640     heartsuit.png
1641     hookleftarrow.png
1642     hookrightarrow.png
1643     hphantom.png
1644     hslash.png
1645     iiiint.png
1646     iiiintop.png
1647     iiint.png
1648     iiintop.png
1649     iint.png
1650     iintop.png
1651     imath.png
1652     in.png
1653     infty.png
1654     int.png
1655     intercal.png
1656     intop.png
1657     iota.png
1658     jmath.png
1659     kappa.png
1660     lambda.png
1661     lambda2.png
1662     langle.png
1663     lbrace.png
1664     lbrace_rbrace.png
1665     lbracket.png
1666     lbracket_rbracket.png
1667     lceil.png
1668     lceil_rceil.png
1669     ldots.png
1670     leftarrow.png
1671     leftarrow2.png
1672     leftarrowtail.png
1673     leftharpoondown.png
1674     leftharpoonup.png
1675     leftleftarrows.png
1676     leftrightarrow.png
1677     leftrightarrow2.png
1678     leftrightarrows.png
1679     leftrightharpoons.png
1680     leftrightsquigarrow.png
1681     leftthreetimes.png
1682     leq.png
1683     leqq.png
1684     leqslant.png
1685     lessapprox.png
1686     lessdot.png
1687     lesseqgtr.png
1688     lesseqqgtr.png
1689     lessgtr.png
1690     lesssim.png
1691     lfloor.png
1692     lfloor_rfloor.png
1693     ll.png
1694     llcorner.png
1695     lll.png
1696     lnapprox.png
1697     lneq.png
1698     lneqq.png
1699     lnsim.png
1700     longleftarrow.png
1701     longleftarrow2.png
1702     longleftrightarrow.png
1703     longleftrightarrow2.png
1704     longmapsto.png
1705     longrightarrow.png
1706     longrightarrow2.png
1707     looparrowleft.png
1708     looparrowright.png
1709     lozenge.png
1710     lparen.png
1711     lparen_rparen.png
1712     lrcorner.png
1713     ltimes.png
1714     lvertneqq.png
1715     mapsto.png
1716     mathbb_C.png
1717     mathbb_H.png
1718     mathbb_N.png
1719     mathbb_Q.png
1720     mathbb_R.png
1721     mathbb_Z.png
1722     mathcal_F.png
1723     mathcal_H.png
1724     mathcal_L.png
1725     mathcal_O.png
1726     mathcircumflex.png
1727     mathrm_T.png
1728     matrix.png
1729     measuredangle.png
1730     mho.png
1731     mid.png
1732     models.png
1733     mp.png
1734     mu.png
1735     multimap.png
1736     nabla.png
1737     natural.png
1738     ncong.png
1739     nearrow.png
1740     neg.png
1741     neq.png
1742     nexists.png
1743     ngeq.png
1744     ngeqq.png
1745     ngeqslant.png
1746     ngtr.png
1747     ni.png
1748     nleftarrow.png
1749     nleftarrow2.png
1750     nleftrightarrow.png
1751     nleftrightarrow2.png
1752     nleq.png
1753     nleqq.png
1754     nleqslant.png
1755     nless.png
1756     nmid.png
1757     notin.png
1758     nparallel.png
1759     nprec.png
1760     npreceq.png
1761     nrightarrow.png
1762     nrightarrow2.png
1763     nshortmid.png
1764     nshortparallel.png
1765     nsim.png
1766     nsubseteq.png
1767     nsucc.png
1768     nsucceq.png
1769     nsupseteq.png
1770     nsupseteqq.png
1771     ntriangleleft.png
1772     ntrianglelefteq.png
1773     ntriangleright.png
1774     ntrianglerighteq.png
1775     nu.png
1776     nvdash.png
1777     nvdash2.png
1778     nvdash3.png
1779     nwarrow.png
1780     odot.png
1781     oiint.png
1782     oiintop.png
1783     oint.png
1784     ointclockwise.png
1785     ointclockwiseop.png
1786     ointctrclockwise.png
1787     ointctrclockwiseop.png
1788     ointop.png
1789     omega.png
1790     omega2.png
1791     ominus.png
1792     oplus.png
1793     oslash.png
1794     otimes.png
1795     overbrace.png
1796     overleftarrow.png
1797     overleftrightarrow.png
1798     overline.png
1799     overrightarrow.png
1800     overset.png
1801     parallel.png
1802     partial.png
1803     perp.png
1804     phantom.png
1805     phi.png
1806     phi2.png
1807     pi.png
1808     pi2.png
1809     pitchfork.png
1810     pm.png
1811     prec.png
1812     precapprox.png
1813     preccurlyeq.png
1814     preceq.png
1815     precnapprox.png
1816     precnsim.png
1817     precsim.png
1818     prime.png
1819     prod.png
1820     propto.png
1821     psi.png
1822     psi2.png
1823     rangle.png
1824     rbrace.png
1825     rbracket.png
1826     rceil.png
1827     rfloor.png
1828     rho.png
1829     rightarrow.png
1830     rightarrow2.png
1831     rightarrowtail.png
1832     rightharpoondown.png
1833     rightharpoonup.png
1834     rightleftarrows.png
1835     rightleftharpoons.png
1836     rightrightarrows.png
1837     rightsquigarrow.png
1838     rightthreetimes.png
1839     risingdotseq.png
1840     root.png
1841     rparen.png
1842     rtimes.png
1843     searrow.png
1844     setminus.png
1845     sharp.png
1846     shortmid.png
1847     shortparallel.png
1848     sigma.png
1849     sigma2.png
1850     sim.png
1851     simeq.png
1852     slash.png
1853     smallfrown.png
1854     smallsetminus.png
1855     smallsmile.png
1856     smile.png
1857     space.png
1858     spadesuit.png
1859     sphericalangle.png
1860     sqcap.png
1861     sqcup.png
1862     sqiint.png
1863     sqiintop.png
1864     sqint.png
1865     sqintop.png
1866     sqrt-square.png
1867     sqrt.png
1868     sqsubset.png
1869     sqsubseteq.png
1870     sqsupset.png
1871     sqsupseteq.png
1872     square.png
1873     star.png
1874     style.png
1875     style.png
1876     sub.png
1877     subset.png
1878     subset2.png
1879     subseteq.png
1880     subseteqq.png
1881     subsetneq.png
1882     subsetneqq.png
1883     succ.png
1884     succapprox.png
1885     succcurlyeq.png
1886     succeq.png
1887     succnapprox.png
1888     succnsim.png
1889     succsim.png
1890     sum.png
1891     super.png
1892     supset.png
1893     supset2.png
1894     supseteq.png
1895     supseteqq.png
1896     supsetneq.png
1897     supsetneqq.png
1898     surd.png
1899     swarrow.png
1900     tau.png
1901     textrm_AA.png
1902     textrm_O.png
1903     therefore.png
1904     theta.png
1905     theta2.png
1906     thickapprox.png
1907     thicksim.png
1908     tilde.png
1909     times.png
1910     top.png
1911     triangle.png
1912     triangledown.png
1913     triangleleft.png
1914     trianglelefteq.png
1915     triangleq.png
1916     triangleright.png
1917     trianglerighteq.png
1918     twoheadleftarrow.png
1919     twoheadrightarrow.png
1920     ulcorner.png
1921     underbrace.png
1922     underleftarrow.png
1923     underleftrightarrow.png
1924     underline.png
1925     underrightarrow.png
1926     underscore.png
1927     underset.png
1928     uparrow.png
1929     uparrow2.png
1930     updownarrow.png
1931     updownarrow2.png
1932     upharpoonleft.png
1933     upharpoonright.png
1934     uplus.png
1935     upsilon.png
1936     upsilon2.png
1937     upuparrows.png
1938     urcorner.png
1939     varepsilon.png
1940     varkappa.png
1941     varnothing.png
1942     varphi.png
1943     varpi.png
1944     varpropto.png
1945     varrho.png
1946     varsigma.png
1947     varsubsetneq.png
1948     varsubsetneqq.png
1949     varsupsetneq.png
1950     varsupsetneqq.png
1951     vartheta.png
1952     vartriangle.png
1953     vartriangleleft.png
1954     vartriangleright.png
1955     vdash.png
1956     vdash2.png
1957     vdash3.png
1958     vdots.png
1959     vec.png
1960     vee.png
1961     veebar.png
1962     vert.png
1963     vert2.png
1964     vphantom.png
1965     wedge.png
1966     widehat.png
1967     widetilde.png
1968     wp.png
1969     wr.png
1970     xi.png
1971     xi2.png
1972     zeta.png
1973 ''')
1974
1975
1976 lib_images_math_extra_files = Split('''
1977     ams_arrows.png
1978     ams_misc.png
1979     ams_nrel.png
1980     ams_ops.png
1981     ams_rel.png
1982     arrows.png
1983     bop.png
1984     brel.png
1985     deco.png
1986     deco.png
1987     delim.png
1988     delim0.png
1989     delim1.png
1990     dots.png
1991     font.png
1992     functions.png
1993     greek.png
1994     misc.png
1995     varsz.png
1996 ''')
1997
1998
1999 lib_images_commands_files = Split('''
2000 ''')
2001
2002
2003 lib_images_attic_extra_files = Split('''
2004     dialog-show_mathpanel.png
2005 ''')
2006
2007
2008 lib_tex_files = Split('''
2009     broadway.cls
2010     hollywood.cls
2011     lyxchess.sty
2012     lyxskak.sty
2013     revtex.cls
2014 ''')
2015
2016
2017 lib_doc_files = Split('''
2018     Customization.lyx
2019     DocStyle.lyx
2020     DummyDocument1.lyx
2021     DummyDocument2.lyx
2022     DummyTextDocument.txt
2023     EmbeddedObjects.lyx
2024     Extended.lyx
2025     Formula-numbering.lyx
2026     Intro.lyx
2027     LaTeXConfig.lyx
2028     LFUNs.lyx
2029     Math.lyx
2030     Shortcuts.lyx
2031     Tutorial.lyx
2032     UserGuide.lyx
2033 ''')
2034
2035
2036 lib_doc_biblio_files = Split('''
2037     alphadin.bst
2038     LyXDocs.bib
2039 ''')
2040
2041
2042 lib_doc_clipart_files = Split('''
2043     Abstract.pdf
2044     BoxInsetDefaultQt4.png
2045     ChangesToolbar.png
2046     ChildDocumentQt4.png
2047     CommentNoteImageQt4.png
2048     ERT.png
2049     ExternalMaterialQt4.png
2050     ExtraToolbar.png
2051     GreyedOutNoteImageQt4.png
2052     LaTeX.png
2053     LyXNoteImageQt4.png
2054     SpaceMarker.png
2055     StandardToolbar.png
2056     ToolbarEnvBox.png
2057     endnotes.pdf
2058     escher-lsd.eps
2059     floatQt4.png
2060     footnoteQt4.png
2061     labelQt4.png
2062     macrobox.png
2063     macrouse.png
2064     mbox.png
2065     mobius.eps
2066     platypus.eps
2067     referenceQt4.png
2068     ViewToolbar.png
2069     with_fntright.pdf
2070     without_fntright.pdf
2071 ''')
2072
2073
2074 lib_doc_extra_files = Split('''
2075     Makefile.am
2076     Makefile.depend
2077     README.Documentation
2078     depend.py
2079     doc_toc.py
2080 ''')
2081
2082
2083 lib_doc_ca_files = Split('''
2084     Intro.lyx
2085 ''')
2086
2087
2088 lib_doc_cs_files = Split('''
2089     Tutorial.lyx
2090 ''')
2091
2092
2093 lib_doc_de_files = Split('''
2094     Customization.lyx
2095     DummyDocument1.lyx
2096     DummyDocument2.lyx
2097     DummyTextDocument.txt
2098     EmbeddedObjects.lyx
2099     Extended.lyx
2100     Formelnummerierung.lyx
2101     Intro.lyx
2102     Math.lyx
2103     Shortcuts.lyx
2104     Tutorial.lyx
2105     UserGuide.lyx
2106 ''')
2107
2108
2109 lib_doc_de_clipart_files = Split('''
2110     ERT.png
2111     ExternesMaterialQt4.png
2112     FussnoteQt4.png
2113     GleitobjektQt4.png
2114     GrauschriftNotizQt4.png
2115     KommentarQt4.png
2116     LyXNotizQt4.png
2117     Marke.png
2118     Querverweis.png
2119     StandardBoxQt4.png
2120     UnterdokumentQt4.png
2121 ''')
2122
2123
2124 lib_doc_da_files = Split('''
2125     Intro.lyx
2126 ''')
2127
2128
2129 lib_doc_es_files = Split('''
2130     DocumentoPostizo1.lyx
2131     DocumentoPostizo2.lyx
2132     DocumentoTextoPostizo.txt
2133     EmbeddedObjects.lyx
2134     Extended.lyx
2135     Formula-numbering.lyx
2136     Intro.lyx
2137     Math.lyx
2138     Shortcuts.lyx
2139     Tutorial.lyx
2140     UserGuide.lyx
2141 ''')
2142
2143
2144 lib_doc_es_clipart_files = Split('''
2145     ComentNotaImagenQt4.png
2146     CuadroMinipagQt4.png
2147     DocumentoHijoQt4.png
2148     GrisNotaImagenQt4.png
2149     MaterialExternoQt4.png
2150     NotaLyXImagenQt4.png
2151     Resumen.pdf
2152     es_ERT.png
2153     es_ToolbarEnvBox.png
2154     etiquetaQt4.png
2155     flotanteQt4.png
2156     notapieQt4.png
2157     referenciaQt4.png
2158 ''')
2159
2160
2161 lib_doc_eu_files = Split('''
2162     Customization.lyx
2163     Extended.lyx
2164     Intro.lyx
2165     Tutorial.lyx
2166     UserGuide.lyx
2167 ''')
2168
2169
2170 lib_doc_fr_files = Split('''
2171     Customization.lyx
2172     DocumentBidon1.lyx
2173     DocumentBidon2.lyx
2174     DocumentTexteBidon.txt
2175     EmbeddedObjects.lyx
2176     Extended.lyx
2177     Formula-numbering.lyx
2178     Intro.lyx
2179     Math.lyx
2180     Tutorial.lyx
2181     UserGuide.lyx
2182 ''')
2183
2184
2185 lib_doc_fr_clipart_files = Split('''
2186     BoxInsetDefaultQt4.png
2187     ChildDocumentQt4.png
2188     CommentNoteImageQt4.png
2189     GreyedOutNoteImageQt4.png
2190     LyXNoteImageQt4.png
2191     floatQt4.png
2192     footnoteQt4.png
2193     labelQt4.png
2194 ''')
2195
2196
2197 lib_doc_gl_extra_files = Split('''
2198     Intro.lyx
2199     Tutorial.lyx
2200 ''')
2201
2202
2203 lib_doc_he_files = Split('''
2204     Intro.lyx
2205     Tutorial.lyx
2206 ''')
2207
2208
2209 lib_doc_hu_files = Split('''
2210     Intro.lyx
2211     Tutorial.lyx
2212 ''')
2213
2214
2215 lib_doc_it_files = Split('''
2216     Customization.lyx
2217     Intro.lyx
2218     Tutorial.lyx
2219     UserGuide.lyx
2220 ''')
2221
2222
2223 lib_doc_it_clipart_files = Split('''
2224     it_footnoteQt4.png
2225     it_referenceQt4.png
2226 ''')
2227
2228
2229 lib_doc_ja_files = Split('''
2230     Intro.lyx
2231     LaTeXConfig.lyx
2232     Shortcuts.lyx
2233     Tutorial.lyx
2234     UserGuide.lyx
2235 ''')
2236
2237
2238 lib_doc_ja_clipart_files = Split('''
2239     floatQt4.png
2240     footnoteQt4.png
2241     referenceQt4.png
2242     ERT.png
2243     ToolbarEnvBox.png
2244 ''')
2245
2246
2247 lib_doc_nb_files = Split('''
2248     Intro.lyx
2249 ''')
2250
2251
2252 lib_doc_nl_files = Split('''
2253     Intro.lyx
2254     Tutorial.lyx
2255 ''')
2256
2257
2258 lib_doc_pl_files = Split('''
2259     Extended.lyx
2260     Intro.lyx
2261     Tutorial.lyx
2262 ''')
2263
2264
2265 lib_doc_pt_files = Split('''
2266     Intro.lyx
2267     Tutorial.lyx
2268 ''')
2269
2270
2271 lib_doc_ro_files = Split('''
2272     Intro.lyx
2273 ''')
2274
2275
2276 lib_doc_ru_files = Split('''
2277     Intro.lyx
2278     Tutorial.lyx
2279 ''')
2280
2281
2282 lib_doc_sl_files = Split('''
2283     Intro.lyx
2284     Tutorial.lyx
2285 ''')
2286
2287
2288 lib_doc_sk_files = Split('''
2289     Tutorial.lyx
2290     UserGuide.lyx
2291 ''')
2292
2293
2294 lib_doc_sv_files = Split('''
2295     Intro.lyx
2296     Tutorial.lyx
2297 ''')
2298
2299
2300 lib_doc_uk_files = Split('''
2301     Intro.lyx
2302 ''')
2303
2304
2305 lib_doc_uk_clipart_files = Split('''
2306     FootnoteQT4.png
2307 ''')
2308
2309
2310 lib_examples_files = Split('''
2311     Braille.lyx
2312     CV-image.eps
2313     CV-image.png
2314     Foils.lyx
2315     ItemizeBullets.lyx
2316     Literate.lyx
2317     aa_sample.lyx
2318     aas_sample.lyx
2319     addressExample.adr
2320     amsart-test.lyx
2321     amsbook-test.lyx
2322     armenian-article.lyx
2323     beamer-g4-mask.jpg
2324     beamer-g4.jpg
2325     beamer-icsi-logo.pdf
2326     beamer-knight1-mask.png
2327     beamer-knight1.png
2328     beamer-knight2-mask.png
2329     beamer-knight2.png
2330     beamer-knight3-mask.png
2331     beamer-knight3.png
2332     beamer-knight4-mask.png
2333     beamer-knight4.png
2334     beamerlyxexample1.lyx
2335     biblioExample.bib
2336     chess-article.lyx
2337     chessgame.lyx
2338     docbook_article.lyx
2339     europeCV.lyx
2340     example_lyxified.lyx
2341     example_raw.lyx
2342     iecc05.fen
2343     iecc07.fen
2344     iecc12.fen
2345     landslide.lyx
2346     linguistics.lyx
2347     listerrors.lyx
2348     modernCV.lyx
2349     multicol.lyx
2350     noweb2lyx.lyx
2351     powerdot-example.lyx
2352     script_form.lyx
2353     seminar.lyx
2354     serial_letter1.lyx
2355     serial_letter2.lyx
2356     serial_letter3.lyx
2357     simplecv.lyx
2358     splash.lyx
2359     xyfigure.png
2360     xypic.lyx
2361 ''')
2362
2363
2364 lib_examples_ca_files = Split('''
2365     ItemizeBullets.lyx
2366     mathed.lyx
2367     splash.lyx
2368 ''')
2369
2370
2371 lib_examples_cs_files = Split('''
2372     splash.lyx
2373 ''')
2374
2375
2376 lib_examples_da_files = Split('''
2377     splash.lyx
2378 ''')
2379
2380
2381 lib_examples_de_files = Split('''
2382     Dezimal.lyx
2383     ItemizeBullets.lyx
2384     Lebenslauf.lyx
2385     beispiel_gelyxt.lyx
2386     beispiel_roh.lyx
2387     multicol.lyx
2388     serienbrief1.lyx
2389     serienbrief2.lyx
2390     serienbrief3.lyx
2391     splash.lyx
2392 ''')
2393
2394
2395 lib_examples_fa_files = Split('''
2396     splash.lyx
2397 ''')
2398
2399
2400 lib_examples_fr_files = Split('''
2401     AlignementDecimal.lyx
2402     Foils.lyx
2403     ListesPuces.lyx
2404     exemple_brut.lyx
2405     exemple_lyxifie.lyx
2406     multicol.lyx
2407     simplecv.lyx
2408     splash.lyx
2409 ''')
2410
2411
2412 lib_examples_es_files = Split('''
2413     ItemizeBullets.lyx
2414     ejemplo_con_lyx.lyx
2415     ejemplo_sin_lyx.lyx
2416     splash.lyx
2417 ''')
2418
2419
2420 lib_examples_eu_files = Split('''
2421     adibide_gordina.lyx
2422     adibide_lyx-atua.lyx
2423     splash.lyx
2424 ''')
2425
2426
2427 lib_examples_gl_extra_files = Split('''
2428     exemplo_bruto.lyx
2429     exemplo_lyxificado.lyx
2430     splash.lyx
2431 ''')
2432
2433
2434 lib_examples_he_files = Split('''
2435     example_lyxified.lyx
2436     example_raw.lyx
2437     splash.lyx
2438 ''')
2439
2440
2441 lib_examples_hu_files = Split('''
2442     example_lyxified.lyx
2443     example_raw.lyx
2444     splash.lyx
2445 ''')
2446
2447
2448 lib_examples_it_files = Split('''
2449     ItemizeBullets.lyx
2450     splash.lyx
2451 ''')
2452
2453
2454 lib_examples_ja_files = Split('''
2455     splash.lyx
2456 ''')
2457
2458
2459 lib_examples_nl_files = Split('''
2460     multicol.lyx
2461     opsommingstekens.lyx
2462     splash.lyx
2463     voorbeeld_ruw.lyx
2464     voorbeeld_verlyxt.lyx
2465 ''')
2466
2467
2468 lib_examples_pl_files = Split('''
2469     splash.lyx
2470 ''')
2471
2472
2473 lib_examples_pt_files = Split('''
2474     splash.lyx
2475 ''')
2476
2477
2478 lib_examples_ro_files = Split('''
2479     splash.lyx
2480 ''')
2481
2482
2483 lib_examples_ru_files = Split('''
2484     splash.lyx
2485 ''')
2486
2487
2488 lib_examples_sl_files = Split('''
2489     primer_lyxan.lyx
2490     primer_surov.lyx
2491     splash.lyx
2492 ''')
2493
2494
2495 lib_lyx2lyx_files = Split('''
2496     LyX.py
2497     generate_encoding_info.py
2498     lyx2lyx
2499     lyx2lyx_lang.py
2500     lyx_0_06.py
2501     lyx_0_08.py
2502     lyx_0_10.py
2503     lyx_0_12.py
2504     lyx_1_0.py
2505     lyx_1_1.py
2506     lyx_1_1_5.py
2507     lyx_1_1_6_0.py
2508     lyx_1_1_6_3.py
2509     lyx_1_2.py
2510     lyx_1_3.py
2511     lyx_1_4.py
2512     lyx_1_5.py
2513     lyx_1_6.py
2514     parser_tools.py
2515     profiling.py
2516     test_parser_tools.py
2517 ''')
2518
2519
2520 lib_lyx2lyx_extra_files = Split('''
2521     Makefile.am
2522     lyx2lyx_version.py.in
2523 ''')
2524
2525
2526 lib_layouts_files = Split('''
2527     aa.layout
2528     aapaper.layout
2529     aastex.layout
2530     agu-dtd.layout
2531     agums.layout
2532     amsart.layout
2533     amsbook.layout
2534     apa.layout
2535     arab-article.layout
2536     armenian-article.layout
2537     article.layout
2538     article-beamer.layout
2539     beamer.layout
2540     book.layout
2541     broadway.layout
2542     chess.layout
2543     cl2emult.layout
2544     dinbrief.layout
2545     docbook-book.layout
2546     docbook-chapter.layout
2547     docbook-section.layout
2548     docbook.layout
2549     dtk.layout
2550     egs.layout
2551     elsart.layout
2552     elsarticle.layout
2553     entcs.layout
2554     europecv.layout
2555     extarticle.layout
2556     extbook.layout
2557     extletter.layout
2558     extreport.layout
2559     foils.layout
2560     g-brief-de.layout
2561     g-brief-en.layout
2562     g-brief2.layout
2563     heb-article.layout
2564     heb-letter.layout
2565     hollywood.layout
2566     IEEEtran.layout
2567     ijmpc.layout
2568     ijmpd.layout
2569     iopart.layout
2570     isprs.layout
2571     jarticle.layout
2572     jbook.layout
2573     jgrga.layout
2574     jreport.layout
2575     jsarticle.layout
2576     jsbook.layout
2577     jss.layout
2578     kluwer.layout
2579     latex8.layout
2580     letter.layout
2581     literate-article.layout
2582     literate-book.layout
2583     literate-report.layout
2584     llncs.layout
2585     ltugboat.layout
2586     manpage.layout
2587     memoir.layout
2588     moderncv.layout
2589     mwart.layout
2590     mwbk.layout
2591     mwrep.layout
2592     paper.layout
2593     powerdot.layout
2594     report.layout
2595     revtex.layout
2596     revtex4.layout
2597     scrartcl.layout
2598     scrarticle-beamer.layout
2599     scrbook.layout
2600     scrlettr.layout
2601     scrlttr2.layout
2602     scrreprt.layout
2603     seminar.layout
2604     siamltex.layout
2605     sigplanconf.layout
2606     simplecv.layout
2607     singlecol.layout
2608     slides.layout
2609     spie.layout
2610     svglobal.layout
2611     svglobal3.layout
2612     svjog.layout
2613     svprobth.layout
2614     tarticle.layout
2615     tbook.layout
2616     treport.layout
2617 ''')
2618
2619
2620 lib_layouts_inc_files = Split('''
2621     aapaper.inc
2622     agu_stdclass.inc
2623     agu_stdcounters.inc
2624     agu_stdlists.inc
2625     agu_stdsections.inc
2626     agu_stdtitle.inc
2627     aguplus.inc
2628     amsdefs.inc
2629     db_lyxmacros.inc
2630     db_stdcharstyles.inc
2631     db_stdclass.inc
2632     db_stdcounters.inc
2633     db_stdlayouts.inc
2634     db_stdlists.inc
2635     db_stdsections.inc
2636     db_stdstarsections.inc
2637     db_stdstruct.inc
2638     db_stdtitle.inc
2639     literate-scrap.inc
2640     lyxmacros.inc
2641     numarticle.inc
2642     numreport.inc
2643     numrevtex.inc
2644     scrclass.inc
2645     stdcharstyles.inc
2646     stdclass.inc
2647     stdcounters.inc
2648     stdcustom.inc
2649     stdfloats.inc
2650     stdinsets.inc
2651     stdlayouts.inc
2652     stdletter.inc
2653     stdlists.inc
2654     stdsections.inc
2655     stdstarsections.inc
2656     stdstruct.inc
2657     stdtitle.inc
2658     svjour.inc
2659     theorems.inc
2660     theorems-ams.inc
2661     theorems-order.inc
2662     theorems-proof.inc
2663     theorems-starred.inc
2664     theorems-starred-equivalents.inc
2665 ''')
2666
2667
2668 lib_layouts_module_files = Split('''
2669     braille.module
2670     endnotes.module
2671     foottoend.module
2672     hanging.module
2673     linguistics.module
2674     logicalmkup.module
2675     minimalistic.module
2676     theorems-ams-extended.module
2677     theorems-ams.module
2678     theorems-chap.module
2679     theorems-sec.module
2680     theorems-starred.module
2681     theorems-std.module
2682 ''')
2683
2684 lib_scripts_files = Split('''
2685     TeXFiles.py
2686     clean_dvi.py
2687     convertDefault.py
2688     csv2lyx.py
2689     date.py
2690     ext_copy.py
2691     fen2ascii.py
2692     fig2pdftex.py
2693     fig2pstex.py
2694     fig_copy.py
2695     layout2layout.py
2696     legacy_lyxpreview2ppm.py
2697     listerrors
2698     lyxpreview2bitmap.py
2699     lyxpreview-platex2bitmap.py
2700     lyxpreview_tools.py
2701     tex_copy.py
2702 ''')
2703
2704
2705 lib_bind_files = Split('''
2706     aqua.bind
2707     broadway.bind
2708     cua.bind
2709     cyrkeys.bind
2710     emacs.bind
2711     greekkeys.bind
2712     hollywood.bind
2713     latinkeys.bind
2714     mac.bind
2715     math.bind
2716     menus.bind
2717     sciword.bind
2718     site.bind
2719     xemacs.bind
2720 ''')
2721
2722
2723 lib_bind_fi_files = Split('''
2724     menus.bind
2725 ''')
2726
2727
2728 lib_bind_sv_files = Split('''
2729     menus.bind
2730 ''')
2731
2732
2733 lib_bind_pt_files = Split('''
2734     menus.bind
2735 ''')
2736
2737
2738 lib_bind_de_files = Split('''
2739     menus.bind
2740 ''')
2741
2742
2743 lib_commands_files = Split('''
2744     default.def
2745 ''')
2746
2747
2748 boost_extra_files = Split('''
2749     LICENSE_1_0.txt
2750     Makefile.am
2751 ''')
2752
2753
2754 boost_libs_extra_files = Split('''
2755     Makefile.am
2756     README
2757 ''')
2758
2759
2760 boost_libs_signals_extra_files = Split('''
2761     Makefile.am
2762     signals.vcproj
2763 ''')
2764
2765
2766 boost_libs_signals_src_files = Split('''
2767     connection.cpp
2768     named_slot_map.cpp
2769     signal_base.cpp
2770     slot.cpp
2771     trackable.cpp
2772 ''')
2773
2774
2775 boost_libs_signals_src_extra_files = Split('''
2776     Makefile.am
2777     pch.h
2778 ''')
2779
2780
2781 boost_libs_regex_extra_files = Split('''
2782     Makefile.am
2783     regex.vcproj
2784 ''')
2785
2786
2787 boost_libs_regex_src_files = Split('''
2788     c_regex_traits.cpp
2789     cpp_regex_traits.cpp
2790     cregex.cpp
2791     fileiter.cpp
2792     instances.cpp
2793     posix_api.cpp
2794     regex.cpp
2795     regex_debug.cpp
2796     regex_raw_buffer.cpp
2797     regex_traits_defaults.cpp
2798     w32_regex_traits.cpp
2799     wide_posix_api.cpp
2800     winstances.cpp
2801 ''')
2802
2803
2804 boost_libs_regex_src_extra_files = Split('''
2805     Makefile.am
2806     pch.h
2807 ''')
2808
2809
2810
2811 development_Win32_packaging_installer = Split('''
2812     license.rtf
2813     lyx.nsi
2814     settings.nsh
2815 ''')
2816
2817
2818 development_Win32_packaging_installer_graphics = Split('''
2819     header.bmp
2820     wizard.bmp
2821 ''')
2822
2823
2824 development_Win32_packaging_installer_gui = Split('''
2825     external.nsh
2826     langselect.nsh
2827     reinstall.nsh
2828 ''')
2829
2830
2831 development_Win32_packaging_installer_include = Split('''
2832     declarations.nsh
2833     detection.nsh
2834     dictlist.nsh    
2835     filelist.nsh
2836     gui.nsh
2837     init.nsh
2838     langlist.nsh
2839     nsis.nsh
2840     variables.nsh
2841 ''')
2842
2843
2844 development_Win32_packaging_installer_lang = Split('''
2845     english.nsh
2846     french.nsh
2847     german.nsh
2848     italian.nsh
2849 ''')
2850
2851
2852 development_Win32_packaging_installer_setup = Split('''
2853     configure.nsh
2854     install.nsh
2855     reinstall.nsh
2856 ''')