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