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