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