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