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