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