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