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