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