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