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