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