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