]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
f171b5320512256402f7a5384d5bf29f1fe50b08
[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     close-tab-group.png
1357     copy.png
1358     cut.png
1359     demote.png
1360     depth-decrement.png
1361     depth-increment.png
1362     dialog-preferences.png
1363     dialog-show-new-inset_citation.png
1364     dialog-show-new-inset_graphics.png
1365     dialog-show-new-inset_include.png
1366     dialog-show-new-inset_ref.png
1367     dialog-show_character.png
1368     dialog-show_findreplace.png
1369     dialog-show_mathdelimiter.png
1370     dialog-show_mathmatrix.png
1371     dialog-show_print.png
1372     dialog-show_spellchecker.png
1373     dialog-toggle_toc.png
1374     down.png
1375     ert-insert.png
1376     file-open.png
1377     float-insert_figure.png
1378     float-insert_table.png
1379     font-bold.png
1380     font-emph.png
1381     textstyle-apply.png
1382     font-noun.png
1383     font-sans.png
1384     footnote-insert.png
1385     href-insert.png
1386     hidetab.png
1387     index-insert.png
1388     label-insert.png
1389     layout-document.png
1390     layout-paragraph.png
1391     layout.png
1392     layout_Description.png
1393     layout_Enumerate.png
1394     layout_Itemize.png
1395     layout_List.png
1396     layout_LyX-Code.png
1397     layout_Scrap.png
1398     layout_Section.png
1399     lyx-quit.png
1400     lyx.png
1401     vc-check-in.png
1402     vc-check-out.png
1403     dialog-show_vclog.png
1404     vc-register.png
1405     vc-revert.png
1406     marginalnote-insert.png
1407     math-display.png
1408     math-macro-add-greedy-optional-param.png
1409     math-macro-add-optional-param.png
1410     math-macro-add-param.png
1411     math-macro-append-greedy-param.png
1412     math-macro-make-nonoptional.png
1413     math-macro-make-optional.png
1414     math-macro-remove-greedy-param.png
1415     math-macro-remove-optional-param.png
1416     math-macro-remove-param.png
1417     math-macro_newmacroname_newcommand.png
1418     math-matrix.png
1419     math-mode.png
1420     math-subscript.png
1421     math-superscript.png
1422     nomencl-insert.png
1423     note-insert.png
1424     note-next.png
1425     paste.png
1426     promote.png
1427     psnfss1.png
1428     psnfss2.png
1429     psnfss3.png
1430     psnfss4.png
1431     redo.png
1432     reload.png
1433     split-view_horizontal.png
1434     split-view_vertical.png
1435     standard.png
1436     tabular-feature_align-center.png
1437     tabular-feature_align-left.png
1438     tabular-feature_align-right.png
1439     tabular-feature_append-column.png
1440     tabular-feature_append-row.png
1441     tabular-feature_delete-column.png
1442     tabular-feature_delete-row.png
1443     tabular-feature_multicolumn.png
1444     tabular-feature_set-all-lines.png
1445     tabular-feature_set-longtabular.png
1446     tabular-feature_set-rotate-cell.png
1447     tabular-feature_toggle-rotate-cell.png
1448     tabular-feature_set-rotate-tabular.png
1449     tabular-feature_toggle-rotate-tabular.png
1450     tabular-feature_toggle-line-bottom.png
1451     tabular-feature_toggle-line-left.png
1452     tabular-feature_toggle-line-right.png
1453     tabular-feature_toggle-line-top.png
1454     tabular-feature_unset-all-lines.png
1455     tabular-feature_valign-bottom.png
1456     tabular-feature_valign-middle.png
1457     tabular-feature_valign-top.png
1458     tabular-insert.png
1459     thesaurus-entry.png
1460     toolbar-toggle_math.png
1461     toolbar-toggle_math_panels.png
1462     toolbar-toggle_table.png
1463     undo.png
1464     unknown.png
1465     up.png
1466     url-insert.png
1467 ''')
1468
1469
1470 lib_images_extra_files = Split('''
1471     README
1472     font-smallcaps.png
1473 ''')
1474
1475
1476 lib_images_math_files = Split('''
1477     Bbbk.png
1478     Finv.png
1479     Game.png
1480     Im.png
1481     Lleftarrow.png
1482     Lsh.png
1483     Re.png
1484     Rrightarrow.png
1485     Rsh.png
1486     Vvdash.png
1487     acute.png
1488     aleph.png
1489     alpha.png
1490     amalg.png
1491     angle.png
1492     approx.png
1493     approxeq.png
1494     asymp.png
1495     backepsilon.png
1496     backprime.png
1497     backsim.png
1498     backsimeq.png
1499     backslash.png
1500     bar.png
1501     bars.png
1502     barwedge.png
1503     because.png
1504     beta.png
1505     beth.png
1506     between.png
1507     bigcap.png
1508     bigcirc.png
1509     bigcup.png
1510     bigodot.png
1511     bigoplus.png
1512     bigotimes.png
1513     bigsqcup.png
1514     bigstar.png
1515     bigtriangledown.png
1516     bigtriangleup.png
1517     biguplus.png
1518     bigvee.png
1519     bigwedge.png
1520     blacklozenge.png
1521     blacksquare.png
1522     blacktriangle.png
1523     blacktriangledown.png
1524     blacktriangleleft.png
1525     blacktriangleright.png
1526     bot.png
1527     bowtie.png
1528     boxdot.png
1529     boxminus.png
1530     boxplus.png
1531     boxtimes.png
1532     breve.png
1533     bullet.png
1534     bumpeq.png
1535     bumpeq2.png
1536     cap.png
1537     cap2.png
1538     cases.png
1539     cdot.png
1540     cdots.png
1541     centerdot.png
1542     check.png
1543     chi.png
1544     circ.png
1545     circeq.png
1546     circlearrowleft.png
1547     circlearrowright.png
1548     circledS.png
1549     circledast.png
1550     circledcirc.png
1551     circleddash.png
1552     clubsuit.png
1553     complement.png
1554     cong.png
1555     coprod.png
1556     cup.png
1557     cup2.png
1558     curlyeqprec.png
1559     curlyeqsucc.png
1560     curlyvee.png
1561     curlywedge.png
1562     curvearrowleft.png
1563     curvearrowright.png
1564     dagger.png
1565     daleth.png
1566     dashleftarrow.png
1567     dashrightarrow.png
1568     dashv.png
1569     ddagger.png
1570     ddot.png
1571     ddots.png
1572     delim.png
1573     delta.png
1574     delta2.png
1575     diagdown.png
1576     diagup.png
1577     diamond.png
1578     diamondsuit.png
1579     digamma.png
1580     div.png
1581     divideontimes.png
1582     dot.png
1583     doteq.png
1584     doteqdot.png
1585     dotplus.png
1586     dotsint.png
1587     dotsintop.png
1588     doublebarwedge.png
1589     downarrow.png
1590     downarrow2.png
1591     downdownarrows.png
1592     downharpoonleft.png
1593     downharpoonright.png
1594     ell.png
1595     empty.png
1596     emptyset.png
1597     epsilon.png
1598     eqcirc.png
1599     eqslantgtr.png
1600     eqslantless.png
1601     equation.png
1602     equiv.png
1603     eta.png
1604     eth.png
1605     exists.png
1606     fallingdotseq.png
1607     flat.png
1608     font.png
1609     forall.png
1610     frac-square.png
1611     frac.png
1612     frown.png
1613     functions.png
1614     gamma.png
1615     gamma2.png
1616     geq.png
1617     geqq.png
1618     geqslant.png
1619     gg.png
1620     ggg.png
1621     gimel.png
1622     gnapprox.png
1623     gneq.png
1624     gneqq.png
1625     gnsim.png
1626     grave.png
1627     gtrapprox.png
1628     gtrdot.png
1629     gtreqless.png
1630     gtreqqless.png
1631     gtrless.png
1632     gtrsim.png
1633     gvertneqq.png
1634     hat.png
1635     hbar.png
1636     heartsuit.png
1637     hookleftarrow.png
1638     hookrightarrow.png
1639     hphantom.png
1640     hslash.png
1641     iiiint.png
1642     iiiintop.png
1643     iiint.png
1644     iiintop.png
1645     iint.png
1646     iintop.png
1647     imath.png
1648     in.png
1649     infty.png
1650     int.png
1651     intercal.png
1652     intop.png
1653     iota.png
1654     jmath.png
1655     kappa.png
1656     lambda.png
1657     lambda2.png
1658     langle.png
1659     lbrace.png
1660     lbrace_rbrace.png
1661     lbracket.png
1662     lbracket_rbracket.png
1663     lceil.png
1664     lceil_rceil.png
1665     ldots.png
1666     leftarrow.png
1667     leftarrow2.png
1668     leftarrowtail.png
1669     leftharpoondown.png
1670     leftharpoonup.png
1671     leftleftarrows.png
1672     leftrightarrow.png
1673     leftrightarrow2.png
1674     leftrightarrows.png
1675     leftrightharpoons.png
1676     leftrightsquigarrow.png
1677     leftthreetimes.png
1678     leq.png
1679     leqq.png
1680     leqslant.png
1681     lessapprox.png
1682     lessdot.png
1683     lesseqgtr.png
1684     lesseqqgtr.png
1685     lessgtr.png
1686     lesssim.png
1687     lfloor.png
1688     lfloor_rfloor.png
1689     ll.png
1690     llcorner.png
1691     lll.png
1692     lnapprox.png
1693     lneq.png
1694     lneqq.png
1695     lnsim.png
1696     longleftarrow.png
1697     longleftarrow2.png
1698     longleftrightarrow.png
1699     longleftrightarrow2.png
1700     longmapsto.png
1701     longrightarrow.png
1702     longrightarrow2.png
1703     looparrowleft.png
1704     looparrowright.png
1705     lozenge.png
1706     lparen.png
1707     lparen_rparen.png
1708     lrcorner.png
1709     ltimes.png
1710     lvertneqq.png
1711     mapsto.png
1712     mathbb_C.png
1713     mathbb_H.png
1714     mathbb_N.png
1715     mathbb_Q.png
1716     mathbb_R.png
1717     mathbb_Z.png
1718     mathcal_F.png
1719     mathcal_H.png
1720     mathcal_L.png
1721     mathcal_O.png
1722     mathcircumflex.png
1723     mathrm_T.png
1724     matrix.png
1725     measuredangle.png
1726     mho.png
1727     mid.png
1728     models.png
1729     mp.png
1730     mu.png
1731     multimap.png
1732     nabla.png
1733     natural.png
1734     ncong.png
1735     nearrow.png
1736     neg.png
1737     neq.png
1738     nexists.png
1739     ngeq.png
1740     ngeqq.png
1741     ngeqslant.png
1742     ngtr.png
1743     ni.png
1744     nleftarrow.png
1745     nleftarrow2.png
1746     nleftrightarrow.png
1747     nleftrightarrow2.png
1748     nleq.png
1749     nleqq.png
1750     nleqslant.png
1751     nless.png
1752     nmid.png
1753     notin.png
1754     nparallel.png
1755     nprec.png
1756     npreceq.png
1757     nrightarrow.png
1758     nrightarrow2.png
1759     nshortmid.png
1760     nshortparallel.png
1761     nsim.png
1762     nsubseteq.png
1763     nsucc.png
1764     nsucceq.png
1765     nsupseteq.png
1766     nsupseteqq.png
1767     ntriangleleft.png
1768     ntrianglelefteq.png
1769     ntriangleright.png
1770     ntrianglerighteq.png
1771     nu.png
1772     nvdash.png
1773     nvdash2.png
1774     nvdash3.png
1775     nwarrow.png
1776     odot.png
1777     oiint.png
1778     oiintop.png
1779     oint.png
1780     ointclockwise.png
1781     ointclockwiseop.png
1782     ointctrclockwise.png
1783     ointctrclockwiseop.png
1784     ointop.png
1785     omega.png
1786     omega2.png
1787     ominus.png
1788     oplus.png
1789     oslash.png
1790     otimes.png
1791     overbrace.png
1792     overleftarrow.png
1793     overleftrightarrow.png
1794     overline.png
1795     overrightarrow.png
1796     overset.png
1797     parallel.png
1798     partial.png
1799     perp.png
1800     phantom.png
1801     phi.png
1802     phi2.png
1803     pi.png
1804     pi2.png
1805     pitchfork.png
1806     pm.png
1807     prec.png
1808     precapprox.png
1809     preccurlyeq.png
1810     preceq.png
1811     precnapprox.png
1812     precnsim.png
1813     precsim.png
1814     prime.png
1815     prod.png
1816     propto.png
1817     psi.png
1818     psi2.png
1819     rangle.png
1820     rbrace.png
1821     rbracket.png
1822     rceil.png
1823     rfloor.png
1824     rho.png
1825     rightarrow.png
1826     rightarrow2.png
1827     rightarrowtail.png
1828     rightharpoondown.png
1829     rightharpoonup.png
1830     rightleftarrows.png
1831     rightleftharpoons.png
1832     rightrightarrows.png
1833     rightsquigarrow.png
1834     rightthreetimes.png
1835     risingdotseq.png
1836     root.png
1837     rparen.png
1838     rtimes.png
1839     searrow.png
1840     setminus.png
1841     sharp.png
1842     shortmid.png
1843     shortparallel.png
1844     sigma.png
1845     sigma2.png
1846     sim.png
1847     simeq.png
1848     slash.png
1849     smallfrown.png
1850     smallsetminus.png
1851     smallsmile.png
1852     smile.png
1853     space.png
1854     spadesuit.png
1855     sphericalangle.png
1856     sqcap.png
1857     sqcup.png
1858     sqiint.png
1859     sqiintop.png
1860     sqint.png
1861     sqintop.png
1862     sqrt-square.png
1863     sqrt.png
1864     sqsubset.png
1865     sqsubseteq.png
1866     sqsupset.png
1867     sqsupseteq.png
1868     square.png
1869     star.png
1870     style.png
1871     style.png
1872     sub.png
1873     subset.png
1874     subset2.png
1875     subseteq.png
1876     subseteqq.png
1877     subsetneq.png
1878     subsetneqq.png
1879     succ.png
1880     succapprox.png
1881     succcurlyeq.png
1882     succeq.png
1883     succnapprox.png
1884     succnsim.png
1885     succsim.png
1886     sum.png
1887     super.png
1888     supset.png
1889     supset2.png
1890     supseteq.png
1891     supseteqq.png
1892     supsetneq.png
1893     supsetneqq.png
1894     surd.png
1895     swarrow.png
1896     tau.png
1897     textrm_AA.png
1898     textrm_O.png
1899     therefore.png
1900     theta.png
1901     theta2.png
1902     thickapprox.png
1903     thicksim.png
1904     tilde.png
1905     times.png
1906     top.png
1907     triangle.png
1908     triangledown.png
1909     triangleleft.png
1910     trianglelefteq.png
1911     triangleq.png
1912     triangleright.png
1913     trianglerighteq.png
1914     twoheadleftarrow.png
1915     twoheadrightarrow.png
1916     ulcorner.png
1917     underbrace.png
1918     underleftarrow.png
1919     underleftrightarrow.png
1920     underline.png
1921     underrightarrow.png
1922     underscore.png
1923     underset.png
1924     uparrow.png
1925     uparrow2.png
1926     updownarrow.png
1927     updownarrow2.png
1928     upharpoonleft.png
1929     upharpoonright.png
1930     uplus.png
1931     upsilon.png
1932     upsilon2.png
1933     upuparrows.png
1934     urcorner.png
1935     varepsilon.png
1936     varkappa.png
1937     varnothing.png
1938     varphi.png
1939     varpi.png
1940     varpropto.png
1941     varrho.png
1942     varsigma.png
1943     varsubsetneq.png
1944     varsubsetneqq.png
1945     varsupsetneq.png
1946     varsupsetneqq.png
1947     vartheta.png
1948     vartriangle.png
1949     vartriangleleft.png
1950     vartriangleright.png
1951     vdash.png
1952     vdash2.png
1953     vdash3.png
1954     vdots.png
1955     vec.png
1956     vee.png
1957     veebar.png
1958     vert.png
1959     vert2.png
1960     vphantom.png
1961     wedge.png
1962     widehat.png
1963     widetilde.png
1964     wp.png
1965     wr.png
1966     xi.png
1967     xi2.png
1968     zeta.png
1969 ''')
1970
1971
1972 lib_images_math_extra_files = Split('''
1973     ams_arrows.png
1974     ams_misc.png
1975     ams_nrel.png
1976     ams_ops.png
1977     ams_rel.png
1978     arrows.png
1979     bop.png
1980     brel.png
1981     deco.png
1982     deco.png
1983     delim.png
1984     delim0.png
1985     delim1.png
1986     dots.png
1987     font.png
1988     functions.png
1989     greek.png
1990     misc.png
1991     varsz.png
1992 ''')
1993
1994
1995 lib_images_commands_files = Split('''
1996 ''')
1997
1998
1999 lib_images_attic_extra_files = Split('''
2000     dialog-show_mathpanel.png
2001 ''')
2002
2003
2004 lib_tex_files = Split('''
2005     broadway.cls
2006     hollywood.cls
2007     lyxchess.sty
2008     lyxskak.sty
2009     revtex.cls
2010 ''')
2011
2012
2013 lib_doc_files = Split('''
2014     Customization.lyx
2015     DocStyle.lyx
2016     DummyDocument1.lyx
2017     DummyDocument2.lyx
2018     DummyTextDocument.txt
2019     EmbeddedObjects.lyx
2020     Extended.lyx
2021     FAQ.lyx
2022     Formula-numbering.lyx
2023     Intro.lyx
2024     LaTeXConfig.lyx
2025     Math.lyx
2026     Reference.lyx
2027     Shortcuts.lyx
2028     Tutorial.lyx
2029     UserGuide.lyx
2030 ''')
2031
2032
2033 lib_doc_biblio_files = Split('''
2034     alphadin.bst
2035     LyXDocs.bib
2036 ''')
2037
2038
2039 lib_doc_clipart_files = Split('''
2040     Abstract.pdf
2041     BoxInsetDefaultQt4.png
2042     ChangesToolbar.png
2043     ChildDocumentQt4.png
2044     CommentNoteImageQt4.png
2045     ERT.png
2046     ExternalMaterialQt4.png
2047     ExtraToolbar.png
2048     GreyedOutNoteImageQt4.png
2049     LaTeX.png
2050     LyXNoteImageQt4.png
2051     SpaceMarker.png
2052     StandardToolbar.png
2053     ToolbarEnvBox.png
2054     endnotes.pdf
2055     escher-lsd.eps
2056     floatQt4.png
2057     footnoteQt4.png
2058     labelQt4.png
2059     macrobox.png
2060     macrouse.png
2061     mbox.png
2062     mobius.eps
2063     platypus.eps
2064     referenceQt4.png
2065     ViewToolbar.png
2066     with_fntright.pdf
2067     without_fntright.pdf
2068 ''')
2069
2070
2071 lib_doc_extra_files = Split('''
2072     Makefile.am
2073     Makefile.depend
2074     README.Documentation
2075     depend.py
2076     doc_toc.py
2077 ''')
2078
2079
2080 lib_doc_cs_files = Split('''
2081     Tutorial.lyx
2082 ''')
2083
2084
2085 lib_doc_de_files = Split('''
2086     Customization.lyx
2087     DummyDocument1.lyx
2088     DummyDocument2.lyx
2089     DummyTextDocument.txt
2090     EmbeddedObjects.lyx
2091     Extended.lyx
2092     FAQ.lyx
2093     Formelnummerierung.lyx
2094     Intro.lyx
2095     Math.lyx
2096     Shortcuts.lyx
2097     Tutorial.lyx
2098     UserGuide.lyx
2099 ''')
2100
2101
2102 lib_doc_de_clipart_files = Split('''
2103     ERT.png
2104     ExternesMaterialQt4.png
2105     FussnoteQt4.png
2106     GleitobjektQt4.png
2107     GrauschriftNotizQt4.png
2108     KommentarQt4.png
2109     LyXNotizQt4.png
2110     Marke.png
2111     Querverweis.png
2112     StandardBoxQt4.png
2113     UnterdokumentQt4.png
2114 ''')
2115
2116
2117 lib_doc_da_files = Split('''
2118     Intro.lyx
2119 ''')
2120
2121
2122 lib_doc_es_files = Split('''
2123     DocumentoPostizo1.lyx
2124     DocumentoPostizo2.lyx
2125     DocumentoTextoPostizo.txt
2126     EmbeddedObjects.lyx
2127     Extended.lyx
2128     FAQ.lyx
2129     Formula-numbering.lyx
2130     Intro.lyx
2131     Math.lyx
2132     Tutorial.lyx
2133     UserGuide.lyx
2134 ''')
2135
2136
2137 lib_doc_es_clipart_files = Split('''
2138     ComentNotaImagenQt4.png
2139     CuadroMinipagQt4.png
2140     DocumentoHijoQt4.png
2141     GrisNotaImagenQt4.png
2142     MaterialExternoQt4.png
2143     NotaLyXImagenQt4.png
2144     Resumen.pdf
2145     es_ERT.png
2146     es_ToolbarEnvBox.png
2147     etiquetaQt4.png
2148     flotanteQt4.png
2149     notapieQt4.png
2150     referenciaQt4.png
2151 ''')
2152
2153
2154 lib_doc_eu_files = Split('''
2155     Customization.lyx
2156     Extended.lyx
2157     FAQ.lyx
2158     Intro.lyx
2159     Tutorial.lyx
2160     UserGuide.lyx
2161 ''')
2162
2163
2164 lib_doc_fr_files = Split('''
2165     Customization.lyx
2166     DocumentBidon1.lyx
2167     DocumentBidon2.lyx
2168     DocumentTexteBidon.txt
2169     EmbeddedObjects.lyx
2170     Extended.lyx
2171     FAQ.lyx
2172     Formula-numbering.lyx
2173     Intro.lyx
2174     Math.lyx
2175     Tutorial.lyx
2176     UserGuide.lyx
2177 ''')
2178
2179
2180 lib_doc_fr_clipart_files = Split('''
2181     BoxInsetDefaultQt4.png
2182     ChildDocumentQt4.png
2183     CommentNoteImageQt4.png
2184     GreyedOutNoteImageQt4.png
2185     LyXNoteImageQt4.png
2186     floatQt4.png
2187     footnoteQt4.png
2188     labelQt4.png
2189 ''')
2190
2191
2192 lib_doc_gl_extra_files = Split('''
2193     Intro.lyx
2194     Tutorial.lyx
2195 ''')
2196
2197
2198 lib_doc_he_files = Split('''
2199     Intro.lyx
2200     Tutorial.lyx
2201 ''')
2202
2203
2204 lib_doc_hu_files = Split('''
2205     Intro.lyx
2206     Tutorial.lyx
2207 ''')
2208
2209
2210 lib_doc_it_files = Split('''
2211     Customization.lyx
2212     Intro.lyx
2213     Tutorial.lyx
2214     UserGuide.lyx
2215 ''')
2216
2217
2218 lib_doc_it_clipart_files = Split('''
2219     it_footnoteQt4.png
2220     it_referenceQt4.png
2221 ''')
2222
2223
2224 lib_doc_ja_files = Split('''
2225     FAQ.lyx
2226     Intro.lyx
2227     LaTeXConfig.lyx
2228     Shortcuts.lyx
2229     Tutorial.lyx
2230 ''')
2231
2232
2233 lib_doc_ja_clipart_files = Split('''
2234     footnoteQt4.png
2235     referenceQt4.png
2236 ''')
2237
2238
2239 lib_doc_nb_files = Split('''
2240     Intro.lyx
2241 ''')
2242
2243
2244 lib_doc_nl_files = Split('''
2245     Intro.lyx
2246     Tutorial.lyx
2247 ''')
2248
2249
2250 lib_doc_pl_files = Split('''
2251     Extended.lyx
2252     Intro.lyx
2253     Tutorial.lyx
2254 ''')
2255
2256
2257 lib_doc_pt_files = Split('''
2258     Intro.lyx
2259     Tutorial.lyx
2260 ''')
2261
2262
2263 lib_doc_ro_files = Split('''
2264     Intro.lyx
2265 ''')
2266
2267
2268 lib_doc_ru_files = Split('''
2269     FAQ.lyx
2270     Intro.lyx
2271     Tutorial.lyx
2272 ''')
2273
2274
2275 lib_doc_sl_files = Split('''
2276     Intro.lyx
2277     Tutorial.lyx
2278 ''')
2279
2280
2281 lib_doc_sk_files = Split('''
2282     Tutorial.lyx
2283     UserGuide.lyx
2284 ''')
2285
2286
2287 lib_doc_sv_files = Split('''
2288     Intro.lyx
2289     Tutorial.lyx
2290 ''')
2291
2292
2293 lib_examples_files = Split('''
2294     Braille.lyx
2295     CV-image.eps
2296     CV-image.png
2297     Foils.lyx
2298     ItemizeBullets.lyx
2299     Literate.lyx
2300     Minipage.lyx
2301     aa_sample.lyx
2302     aas_sample.lyx
2303     addressExample.adr
2304     amsart-test.lyx
2305     amsbook-test.lyx
2306     armenian-article.lyx
2307     beamer-g4-mask.jpg
2308     beamer-g4.jpg
2309     beamer-icsi-logo.pdf
2310     beamer-knight1-mask.png
2311     beamer-knight1.png
2312     beamer-knight2-mask.png
2313     beamer-knight2.png
2314     beamer-knight3-mask.png
2315     beamer-knight3.png
2316     beamer-knight4-mask.png
2317     beamer-knight4.png
2318     beamerlyxexample1.lyx
2319     biblioExample.bib
2320     chess-article.lyx
2321     chessgame.lyx
2322     docbook_article.lyx
2323     europeCV.lyx
2324     example_lyxified.lyx
2325     example_raw.lyx
2326     iecc05.fen
2327     iecc07.fen
2328     iecc12.fen
2329     landslide.lyx
2330     linguistics.lyx
2331     listerrors.lyx
2332     listings.lyx
2333     modernCV.lyx
2334     multicol.lyx
2335     noweb2lyx.lyx
2336     powerdot-example.lyx
2337     script_form.lyx
2338     serial_letter1.lyx
2339     serial_letter2.lyx
2340     serial_letter3.lyx
2341     simplecv.lyx
2342     splash.lyx
2343 ''')
2344
2345
2346 lib_examples_ca_files = Split('''
2347     splash.lyx
2348 ''')
2349
2350
2351 lib_examples_cs_files = Split('''
2352     splash.lyx
2353 ''')
2354
2355
2356 lib_examples_da_files = Split('''
2357     splash.lyx
2358 ''')
2359
2360
2361 lib_examples_de_files = Split('''
2362     Dezimal.lyx
2363     ItemizeBullets.lyx
2364     Lebenslauf.lyx
2365     Minipage.lyx
2366     beispiel_gelyxt.lyx
2367     beispiel_roh.lyx
2368     multicol.lyx
2369     serienbrief1.lyx
2370     serienbrief2.lyx
2371     serienbrief3.lyx
2372     splash.lyx
2373 ''')
2374
2375
2376 lib_examples_fa_files = Split('''
2377     splash.lyx
2378 ''')
2379
2380
2381 lib_examples_fr_files = Split('''
2382     AlignementDecimal.lyx
2383     Foils.lyx
2384     ListesPuces.lyx
2385     Minipage.lyx
2386     exemple_brut.lyx
2387     exemple_lyxifie.lyx
2388     multicol.lyx
2389     simplecv.lyx
2390     splash.lyx
2391 ''')
2392
2393
2394 lib_examples_es_files = Split('''
2395     ItemizeBullets.lyx
2396     ejemplo_con_lyx.lyx
2397     ejemplo_sin_lyx.lyx
2398     splash.lyx
2399 ''')
2400
2401
2402 lib_examples_eu_files = Split('''
2403     adibide_gordina.lyx
2404     adibide_lyx-atua.lyx
2405     splash.lyx
2406 ''')
2407
2408
2409 lib_examples_gl_extra_files = Split('''
2410     exemplo_bruto.lyx
2411     exemplo_lyxificado.lyx
2412     splash.lyx
2413 ''')
2414
2415
2416 lib_examples_he_files = Split('''
2417     example_lyxified.lyx
2418     example_raw.lyx
2419     splash.lyx
2420 ''')
2421
2422
2423 lib_examples_hu_files = Split('''
2424     example_lyxified.lyx
2425     example_raw.lyx
2426     splash.lyx
2427 ''')
2428
2429
2430 lib_examples_it_files = Split('''
2431     ItemizeBullets.lyx
2432     splash.lyx
2433 ''')
2434
2435
2436 lib_examples_ja_files = Split('''
2437     splash.lyx
2438 ''')
2439
2440
2441 lib_examples_nl_files = Split('''
2442     multicol.lyx
2443     opsommingstekens.lyx
2444     splash.lyx
2445     voorbeeld_ruw.lyx
2446     voorbeeld_verlyxt.lyx
2447 ''')
2448
2449
2450 lib_examples_pl_files = Split('''
2451     splash.lyx
2452 ''')
2453
2454
2455 lib_examples_pt_files = Split('''
2456     splash.lyx
2457 ''')
2458
2459
2460 lib_examples_ro_files = Split('''
2461     splash.lyx
2462 ''')
2463
2464
2465 lib_examples_ru_files = Split('''
2466     splash.lyx
2467 ''')
2468
2469
2470 lib_examples_sl_files = Split('''
2471     primer_lyxan.lyx
2472     primer_surov.lyx
2473     splash.lyx
2474 ''')
2475
2476
2477 lib_lyx2lyx_files = Split('''
2478     LyX.py
2479     generate_encoding_info.py
2480     lyx2lyx
2481     lyx2lyx_lang.py
2482     lyx_0_06.py
2483     lyx_0_08.py
2484     lyx_0_10.py
2485     lyx_0_12.py
2486     lyx_1_0.py
2487     lyx_1_1.py
2488     lyx_1_1_5.py
2489     lyx_1_1_6_0.py
2490     lyx_1_1_6_3.py
2491     lyx_1_2.py
2492     lyx_1_3.py
2493     lyx_1_4.py
2494     lyx_1_5.py
2495     lyx_1_6.py
2496     parser_tools.py
2497     profiling.py
2498     test_parser_tools.py
2499 ''')
2500
2501
2502 lib_lyx2lyx_extra_files = Split('''
2503     Makefile.am
2504     lyx2lyx_version.py.in
2505 ''')
2506
2507
2508 lib_layouts_files = Split('''
2509     IEEEtran.layout
2510     aa.layout
2511     aapaper.layout
2512     aastex.layout
2513     agu-dtd.layout
2514     agums.layout
2515     amsart.layout
2516     amsbook.layout
2517     apa.layout
2518     arab-article.layout
2519     armenian-article.layout
2520     article.layout
2521     article-beamer.layout
2522     beamer.layout
2523     book.layout
2524     broadway.layout
2525     chess.layout
2526     cl2emult.layout
2527     dinbrief.layout
2528     docbook-book.layout
2529     docbook-chapter.layout
2530     docbook-section.layout
2531     docbook.layout
2532     dtk.layout
2533     egs.layout
2534     elsart.layout
2535     entcs.layout
2536     europecv.layout
2537     extarticle.layout
2538     extbook.layout
2539     extletter.layout
2540     extreport.layout
2541     foils.layout
2542     g-brief-de.layout
2543     g-brief-en.layout
2544     g-brief2.layout
2545     heb-article.layout
2546     heb-letter.layout
2547     hollywood.layout
2548     ijmpc.layout
2549     ijmpd.layout
2550     iopart.layout
2551     isprs.layout
2552     jarticle.layout
2553     jbook.layout
2554     jgrga.layout
2555     jreport.layout
2556     jsarticle.layout
2557     jsbook.layout
2558     jss.layout
2559     kluwer.layout
2560     latex8.layout
2561     letter.layout
2562     literate-article.layout
2563     literate-book.layout
2564     literate-report.layout
2565     llncs.layout
2566     ltugboat.layout
2567     manpage.layout
2568     memoir.layout
2569     moderncv.layout
2570     mwart.layout
2571     mwbk.layout
2572     mwrep.layout
2573     paper.layout
2574     powerdot.layout
2575     report.layout
2576     revtex.layout
2577     revtex4.layout
2578     scrartcl.layout
2579     scrarticle-beamer.layout
2580     scrbook.layout
2581     scrlettr.layout
2582     scrlttr2.layout
2583     scrreprt.layout
2584     seminar.layout
2585     siamltex.layout
2586     simplecv.layout
2587     slides.layout
2588     spie.layout
2589     svglobal.layout
2590     svjog.layout
2591     svprobth.layout
2592     tarticle.layout
2593     tbook.layout
2594     treport.layout
2595 ''')
2596
2597
2598 lib_layouts_inc_files = Split('''
2599     aapaper.inc
2600     agu_stdclass.inc
2601     agu_stdcounters.inc
2602     agu_stdlists.inc
2603     agu_stdsections.inc
2604     agu_stdtitle.inc
2605     aguplus.inc
2606     amsdefs.inc
2607     db_lyxmacros.inc
2608     db_stdcharstyles.inc
2609     db_stdclass.inc
2610     db_stdcounters.inc
2611     db_stdlayouts.inc
2612     db_stdlists.inc
2613     db_stdsections.inc
2614     db_stdstarsections.inc
2615     db_stdstruct.inc
2616     db_stdtitle.inc
2617     literate-scrap.inc
2618     lyxmacros.inc
2619     numarticle.inc
2620     numreport.inc
2621     numrevtex.inc
2622     scrclass.inc
2623     stdcharstyles.inc
2624     stdclass.inc
2625     stdcounters.inc
2626     stdcustom.inc
2627     stdfloats.inc
2628     stdinsets.inc
2629     stdlayouts.inc
2630     stdletter.inc
2631     stdlists.inc
2632     stdsections.inc
2633     stdstarsections.inc
2634     stdstruct.inc
2635     stdtitle.inc
2636     svjour.inc
2637     theorems.inc
2638     theorems-ams.inc
2639     theorems-order.inc
2640     theorems-proof.inc
2641     theorems-starred.inc
2642     theorems-starred-equivalents.inc
2643 ''')
2644
2645
2646 lib_layouts_module_files = Split('''
2647     braille.module
2648     endnotes.module
2649     foottoend.module
2650     hanging.module
2651     linguistics.module
2652     logicalmkup.module
2653     minimalistic.module
2654     theorems-ams-extended.module
2655     theorems-ams.module
2656     theorems-chap.module
2657     theorems-sec.module
2658     theorems-starred.module
2659     theorems-std.module
2660 ''')
2661
2662 lib_scripts_files = Split('''
2663     TeXFiles.py
2664     clean_dvi.py
2665     convertDefault.py
2666     csv2lyx.py
2667     date.py
2668     ext_copy.py
2669     fen2ascii.py
2670     fig2pdftex.py
2671     fig2pstex.py
2672     fig_copy.py
2673     layout2layout.py
2674     legacy_lyxpreview2ppm.py
2675     listerrors
2676     lyxpreview2bitmap.py
2677     lyxpreview_tools.py
2678     tex_copy.py
2679 ''')
2680
2681
2682 lib_bind_files = Split('''
2683     aqua.bind
2684     broadway.bind
2685     cua.bind
2686     cyrkeys.bind
2687     emacs.bind
2688     greekkeys.bind
2689     hollywood.bind
2690     latinkeys.bind
2691     mac.bind
2692     math.bind
2693     menus.bind
2694     sciword.bind
2695     site.bind
2696     xemacs.bind
2697 ''')
2698
2699
2700 lib_bind_fi_files = Split('''
2701     menus.bind
2702 ''')
2703
2704
2705 lib_bind_sv_files = Split('''
2706     menus.bind
2707 ''')
2708
2709
2710 lib_bind_pt_files = Split('''
2711     menus.bind
2712 ''')
2713
2714
2715 lib_bind_de_files = Split('''
2716     menus.bind
2717 ''')
2718
2719
2720 lib_commands_files = Split('''
2721     default.def
2722 ''')
2723
2724
2725 boost_extra_files = Split('''
2726     LICENSE_1_0.txt
2727     Makefile.am
2728 ''')
2729
2730
2731 boost_libs_extra_files = Split('''
2732     Makefile.am
2733     README
2734 ''')
2735
2736
2737 boost_libs_signals_extra_files = Split('''
2738     Makefile.am
2739     signals.vcproj
2740 ''')
2741
2742
2743 boost_libs_signals_src_files = Split('''
2744     connection.cpp
2745     named_slot_map.cpp
2746     signal_base.cpp
2747     slot.cpp
2748     trackable.cpp
2749 ''')
2750
2751
2752 boost_libs_signals_src_extra_files = Split('''
2753     Makefile.am
2754     pch.h
2755 ''')
2756
2757
2758 boost_libs_regex_extra_files = Split('''
2759     Makefile.am
2760     regex.vcproj
2761 ''')
2762
2763
2764 boost_libs_regex_src_files = Split('''
2765     c_regex_traits.cpp
2766     cpp_regex_traits.cpp
2767     cregex.cpp
2768     fileiter.cpp
2769     instances.cpp
2770     posix_api.cpp
2771     regex.cpp
2772     regex_debug.cpp
2773     regex_raw_buffer.cpp
2774     regex_traits_defaults.cpp
2775     w32_regex_traits.cpp
2776     wide_posix_api.cpp
2777     winstances.cpp
2778 ''')
2779
2780
2781 boost_libs_regex_src_extra_files = Split('''
2782     Makefile.am
2783     pch.h
2784 ''')
2785
2786
2787
2788 development_Win32_packaging_installer = Split('''
2789     license.rtf
2790     lyx.nsi
2791     settings.nsh
2792 ''')
2793
2794
2795 development_Win32_packaging_installer_graphics = Split('''
2796     header.bmp
2797     wizard.bmp
2798 ''')
2799
2800
2801 development_Win32_packaging_installer_gui = Split('''
2802     external.nsh
2803     langselect.nsh
2804     reinstall.nsh
2805 ''')
2806
2807
2808 development_Win32_packaging_installer_include = Split('''
2809     declarations.nsh
2810     detection.nsh
2811     dictlist.nsh    
2812     filelist.nsh
2813     gui.nsh
2814     init.nsh
2815     langlist.nsh
2816     nsis.nsh
2817     variables.nsh
2818 ''')
2819
2820
2821 development_Win32_packaging_installer_lang = Split('''
2822     english.nsh
2823     french.nsh
2824     german.nsh
2825     italian.nsh
2826 ''')
2827
2828
2829 development_Win32_packaging_installer_setup = Split('''
2830     configure.nsh
2831     install.nsh
2832     reinstall.nsh
2833 ''')