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