]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
7998c381cde635b152567549284ed4635c0cdcbe
[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 ''')
1343
1344
1345 lib_ui_files = Split('''
1346     classic.ui
1347     default.ui
1348     stdcontext.inc
1349     stdmenus.inc
1350     stdtoolbars.inc
1351 ''')
1352
1353
1354 lib_fonts_files = Split('''
1355     BaKoMaFontLicense.txt
1356     cmex10.ttf
1357     cmmi10.ttf
1358     cmr10.ttf
1359     cmsy10.ttf
1360     esint10.ttf
1361     eufm10.ttf
1362     msam10.ttf
1363     msbm10.ttf
1364     ReadmeBaKoMa4LyX.txt
1365     wasy10.ttf
1366 ''')
1367
1368
1369 lib_images_files = Split('''
1370     all-changes-accept.png
1371     all-changes-reject.png
1372     amssymb.png
1373     banner.png
1374     bookmark-goto.png
1375     bookmark-goto_0.png
1376     bookmark-save.png
1377     box-insert.png
1378     break-line.png
1379     buffer-close.png
1380     buffer-export.png
1381     buffer-export_dvi.png
1382     buffer-export_latex.png
1383     buffer-export_pdf.png
1384     buffer-export_pdf2.png
1385     buffer-export_pdf3.png
1386     buffer-export_pdf4.png
1387     buffer-export_ps.png
1388     buffer-export_text.png
1389     buffer-new.png
1390     buffer-reload.png
1391     buffer-update.png
1392     buffer-update_dvi.png
1393     buffer-update_pdf.png
1394     buffer-update_pdf2.png
1395     buffer-update_pdf3.png
1396     buffer-update_pdf4.png
1397     buffer-update_ps.png
1398     buffer-view.png
1399     buffer-view_dvi.png
1400     buffer-view_pdf.png
1401     buffer-view_pdf2.png
1402     buffer-view_pdf3.png
1403     buffer-view_pdf4.png
1404     buffer-view_ps.png
1405     buffer-write-as.png
1406     buffer-write.png
1407     build-program.png
1408     change-accept.png
1409     change-next.png
1410     change-reject.png
1411     changes-merge.png
1412     changes-output.png
1413     changes-track.png
1414     closetab.png
1415     close-tab-group.png
1416     copy.png
1417     cut.png
1418     demote.png
1419     depth-decrement.png
1420     depth-increment.png
1421     dialog-preferences.png
1422     dialog-show-new-inset_citation.png
1423     dialog-show-new-inset_graphics.png
1424     dialog-show-new-inset_include.png
1425     dialog-show-new-inset_ref.png
1426     dialog-show_character.png
1427     dialog-show_findreplace.png
1428     dialog-show_mathdelimiter.png
1429     dialog-show_mathmatrix.png
1430     dialog-show_print.png
1431     dialog-show_spellchecker.png
1432     dialog-show_vclog.png
1433     dialog-toggle_toc.png
1434     down.png
1435     ert-insert.png
1436     file-open.png
1437     float-insert_figure.png
1438     float-insert_table.png
1439     font-bold.png
1440     font-emph.png
1441     textstyle-apply.png
1442     font-noun.png
1443     font-sans.png
1444     footnote-insert.png
1445     href-insert.png
1446     hidetab.png
1447     index-insert.png
1448     label-insert.png
1449     layout-document.png
1450     layout-paragraph.png
1451     layout.png
1452     layout_Description.png
1453     layout_Enumerate.png
1454     layout_Itemize.png
1455     layout_List.png
1456     layout_LyX-Code.png
1457     layout_Scrap.png
1458     layout_Section.png
1459     lyx-quit.png
1460     lyx.png
1461     marginalnote-insert.png
1462     master-buffer-update.png
1463     master-buffer-view.png
1464     math-display.png
1465     math-macro-add-greedy-optional-param.png
1466     math-macro-add-optional-param.png
1467     math-macro-add-param.png
1468     math-macro-append-greedy-param.png
1469     math-macro-make-nonoptional.png
1470     math-macro-make-optional.png
1471     math-macro-remove-greedy-param.png
1472     math-macro-remove-optional-param.png
1473     math-macro-remove-param.png
1474     math-macro_newmacroname_newcommand.png
1475     math-matrix.png
1476     math-mode.png
1477     math-subscript.png
1478     math-superscript.png
1479     nomencl-insert.png
1480     note-insert.png
1481     note-next.png
1482     paste.png
1483     promote.png
1484     psnfss1.png
1485     psnfss2.png
1486     psnfss3.png
1487     psnfss4.png
1488     redo.png
1489     reload.png
1490     split-view_horizontal.png
1491     split-view_vertical.png
1492     standard.png
1493     tabular-feature_m-align-center.png
1494     tabular-feature_m-align-left.png
1495     tabular-feature_m-align-right.png
1496     tabular-feature_append-column.png
1497     tabular-feature_append-row.png
1498     tabular-feature_delete-column.png
1499     tabular-feature_delete-row.png
1500     tabular-feature_multicolumn.png
1501     tabular-feature_set-all-lines.png
1502     tabular-feature_set-border-lines.png
1503     tabular-feature_set-longtabular.png
1504     tabular-feature_set-rotate-cell.png
1505     tabular-feature_set-rotate-tabular.png
1506     tabular-feature_toggle-line-bottom.png
1507     tabular-feature_toggle-line-left.png
1508     tabular-feature_toggle-line-right.png
1509     tabular-feature_toggle-line-top.png
1510     tabular-feature_toggle-rotate-cell.png
1511     tabular-feature_toggle-rotate-tabular.png
1512     tabular-feature_unset-all-lines.png
1513     tabular-feature_m-valign-bottom.png
1514     tabular-feature_m-valign-middle.png
1515     tabular-feature_m-valign-top.png
1516     tabular-insert.png
1517     thesaurus-entry.png
1518     toolbar-toggle_math.png
1519     toolbar-toggle_math_panels.png
1520     toolbar-toggle_table.png
1521     undo.png
1522     unknown.png
1523     up.png
1524     url-insert.png
1525     vc-check-in.png
1526     vc-check-out.png
1527     vc-locking-toggle.png
1528     vc-register.png
1529     vc-revert.png
1530 ''')
1531
1532
1533 lib_images_extra_files = Split('''
1534     font-smallcaps.png
1535     README
1536 ''')
1537
1538
1539 lib_images_math_files = Split('''
1540     acute.png
1541     adots.png
1542     aleph.png
1543     alpha.png
1544     amalg.png
1545     angle.png
1546     approx.png
1547     approxeq.png
1548     asymp.png
1549     backepsilon.png
1550     backprime.png
1551     backsim.png
1552     backsimeq.png
1553     backslash.png
1554     bar.png
1555     bars.png
1556     barwedge.png
1557     Bbbk.png
1558     because.png
1559     beta.png
1560     beth.png
1561     between.png
1562     bigcap.png
1563     bigcirc.png
1564     bigcup.png
1565     bigodot.png
1566     bigoplus.png
1567     bigotimes.png
1568     bigsqcup.png
1569     bigstar.png
1570     bigtriangledown.png
1571     bigtriangleup.png
1572     biguplus.png
1573     bigvee.png
1574     bigwedge.png
1575     blacklozenge.png
1576     blacksquare.png
1577     blacktriangle.png
1578     blacktriangledown.png
1579     blacktriangleleft.png
1580     blacktriangleright.png
1581     bot.png
1582     bowtie.png
1583     boxdot.png
1584     boxminus.png
1585     boxplus.png
1586     boxtimes.png
1587     breve.png
1588     bullet.png
1589     bumpeq.png
1590     bumpeq2.png
1591     cap.png
1592     cap2.png
1593     cases.png
1594     cdot.png
1595     cdots.png
1596     centerdot.png
1597     check.png
1598     chi.png
1599     circ.png
1600     circeq.png
1601     circlearrowleft.png
1602     circlearrowright.png
1603     circledS.png
1604     circledast.png
1605     circledcirc.png
1606     circleddash.png
1607     clubsuit.png
1608     complement.png
1609     cong.png
1610     coprod.png
1611     cup.png
1612     cup2.png
1613     curlyeqprec.png
1614     curlyeqsucc.png
1615     curlyvee.png
1616     curlywedge.png
1617     curvearrowleft.png
1618     curvearrowright.png
1619     dagger.png
1620     daleth.png
1621     dashleftarrow.png
1622     dashrightarrow.png
1623     dashv.png
1624     ddagger.png
1625     ddddot.png
1626     dddot.png
1627     ddot.png
1628     ddots.png
1629     delim.png
1630     delta.png
1631     delta2.png
1632     diagdown.png
1633     diagup.png
1634     diamond.png
1635     diamondsuit.png
1636     digamma.png
1637     div.png
1638     divideontimes.png
1639     dot.png
1640     doteq.png
1641     doteqdot.png
1642     dotplus.png
1643     dotsint.png
1644     dotsintop.png
1645     doublebarwedge.png
1646     downarrow.png
1647     downarrow2.png
1648     downdownarrows.png
1649     downharpoonleft.png
1650     downharpoonright.png
1651     ell.png
1652     empty.png
1653     emptyset.png
1654     epsilon.png
1655     eqcirc.png
1656     eqslantgtr.png
1657     eqslantless.png
1658     equation.png
1659     equiv.png
1660     eta.png
1661     eth.png
1662     exists.png
1663     export-others.png
1664     fallingdotseq.png
1665     fint.png
1666     fintop.png
1667     Finv.png
1668     flat.png
1669     font.png
1670     forall.png
1671     frac-square.png
1672     frac.png
1673     frown.png
1674     functions.png
1675     Game.png
1676     gamma.png
1677     gamma2.png
1678     geq.png
1679     geqq.png
1680     geqslant.png
1681     gg.png
1682     ggg.png
1683     gimel.png
1684     gnapprox.png
1685     gneq.png
1686     gneqq.png
1687     gnsim.png
1688     grave.png
1689     gtrapprox.png
1690     gtrdot.png
1691     gtreqless.png
1692     gtreqqless.png
1693     gtrless.png
1694     gtrsim.png
1695     gvertneqq.png
1696     hat.png
1697     hbar.png
1698     heartsuit.png
1699     hookleftarrow.png
1700     hookrightarrow.png
1701     hphantom.png
1702     hslash.png
1703     iddots.png
1704     iiiint.png
1705     iiiintop.png
1706     iiint.png
1707     iiintop.png
1708     iint.png
1709     iintop.png
1710     Im.png
1711     imath.png
1712     in.png
1713     infty.png
1714     int.png
1715     intercal.png
1716     intop.png
1717     iota.png
1718     jmath.png
1719     kappa.png
1720     lambda.png
1721     lambda2.png
1722     landdownint.png
1723     landdownintop.png
1724     landupint.png
1725     landupintop.png
1726     langle.png
1727     lbrace.png
1728     lbrace_rbrace.png
1729     lbracket.png
1730     lbracket_rbracket.png
1731     lceil.png
1732     lceil_rceil.png
1733     ldots.png
1734     leftarrow.png
1735     leftarrow2.png
1736     leftarrowtail.png
1737     leftharpoondown.png
1738     leftharpoonup.png
1739     leftleftarrows.png
1740     leftrightarrow.png
1741     leftrightarrow2.png
1742     leftrightarrows.png
1743     leftrightharpoons.png
1744     leftrightsquigarrow.png
1745     leftthreetimes.png
1746     leq.png
1747     leqq.png
1748     leqslant.png
1749     lessapprox.png
1750     lessdot.png
1751     lesseqgtr.png
1752     lesseqqgtr.png
1753     lessgtr.png
1754     lesssim.png
1755     lfloor.png
1756     lfloor_rfloor.png
1757     ll.png
1758     llcorner.png
1759     Lleftarrow.png
1760     lll.png
1761     lnapprox.png
1762     lneq.png
1763     lneqq.png
1764     lnsim.png
1765     longleftarrow.png
1766     longleftarrow2.png
1767     longleftrightarrow.png
1768     longleftrightarrow2.png
1769     longmapsto.png
1770     longrightarrow.png
1771     longrightarrow2.png
1772     looparrowleft.png
1773     looparrowright.png
1774     lozenge.png
1775     lparen.png
1776     lparen_rparen.png
1777     lrcorner.png
1778     Lsh.png
1779     ltimes.png
1780     lvertneqq.png
1781     mapsto.png
1782     mathbb_C.png
1783     mathbb_H.png
1784     mathbb_N.png
1785     mathbb_Q.png
1786     mathbb_R.png
1787     mathbb_Z.png
1788     mathcal_F.png
1789     mathcal_H.png
1790     mathcal_L.png
1791     mathcal_O.png
1792     mathcircumflex.png
1793     mathrm_T.png
1794     matrix.png
1795     measuredangle.png
1796     mho.png
1797     mid.png
1798     models.png
1799     mp.png
1800     mu.png
1801     multimap.png
1802     nabla.png
1803     natural.png
1804     ncong.png
1805     nearrow.png
1806     neg.png
1807     neq.png
1808     nexists.png
1809     ngeq.png
1810     ngeqq.png
1811     ngeqslant.png
1812     ngtr.png
1813     ni.png
1814     nleftarrow.png
1815     nleftarrow2.png
1816     nleftrightarrow.png
1817     nleftrightarrow2.png
1818     nleq.png
1819     nleqq.png
1820     nleqslant.png
1821     nless.png
1822     nmid.png
1823     notin.png
1824     nparallel.png
1825     nprec.png
1826     npreceq.png
1827     nrightarrow.png
1828     nrightarrow2.png
1829     nshortmid.png
1830     nshortparallel.png
1831     nsim.png
1832     nsubseteq.png
1833     nsucc.png
1834     nsucceq.png
1835     nsupseteq.png
1836     nsupseteqq.png
1837     ntriangleleft.png
1838     ntrianglelefteq.png
1839     ntriangleright.png
1840     ntrianglerighteq.png
1841     nu.png
1842     nvdash.png
1843     nvdash2.png
1844     nvdash3.png
1845     nwarrow.png
1846     odot.png
1847     oiint.png
1848     oiintop.png
1849     oint.png
1850     ointclockwise.png
1851     ointclockwiseop.png
1852     ointctrclockwise.png
1853     ointctrclockwiseop.png
1854     ointop.png
1855     omega.png
1856     omega2.png
1857     ominus.png
1858     oplus.png
1859     oslash.png
1860     otimes.png
1861     overbrace.png
1862     overleftarrow.png
1863     overleftrightarrow.png
1864     overline.png
1865     overrightarrow.png
1866     overset.png
1867     parallel.png
1868     partial.png
1869     perp.png
1870     phantom.png
1871     phi.png
1872     phi2.png
1873     pi.png
1874     pi2.png
1875     pitchfork.png
1876     pm.png
1877     prec.png
1878     precapprox.png
1879     preccurlyeq.png
1880     preceq.png
1881     precnapprox.png
1882     precnsim.png
1883     precsim.png
1884     prime.png
1885     prod.png
1886     propto.png
1887     psi.png
1888     psi2.png
1889     rangle.png
1890     rbrace.png
1891     rbracket.png
1892     rceil.png
1893     Re.png
1894     rfloor.png
1895     rho.png
1896     rightarrow.png
1897     rightarrow2.png
1898     rightarrowtail.png
1899     rightharpoondown.png
1900     rightharpoonup.png
1901     rightleftarrows.png
1902     rightleftharpoons.png
1903     rightrightarrows.png
1904     rightsquigarrow.png
1905     rightthreetimes.png
1906     risingdotseq.png
1907     root.png
1908     rparen.png
1909     Rrightarrow.png
1910     Rsh.png
1911     rtimes.png
1912     searrow.png
1913     setminus.png
1914     sharp.png
1915     shortmid.png
1916     shortparallel.png
1917     sigma.png
1918     sigma2.png
1919     sim.png
1920     simeq.png
1921     slash.png
1922     smallfrown.png
1923     smallsetminus.png
1924     smallsmile.png
1925     smile.png
1926     space.png
1927     spadesuit.png
1928     sphericalangle.png
1929     sqcap.png
1930     sqcup.png
1931     sqiint.png
1932     sqiintop.png
1933     sqint.png
1934     sqintop.png
1935     sqrt-square.png
1936     sqrt.png
1937     sqsubset.png
1938     sqsubseteq.png
1939     sqsupset.png
1940     sqsupseteq.png
1941     square.png
1942     star.png
1943     style.png
1944     style.png
1945     sub.png
1946     subset.png
1947     subset2.png
1948     subseteq.png
1949     subseteqq.png
1950     subsetneq.png
1951     subsetneqq.png
1952     succ.png
1953     succapprox.png
1954     succcurlyeq.png
1955     succeq.png
1956     succnapprox.png
1957     succnsim.png
1958     succsim.png
1959     sum.png
1960     super.png
1961     supset.png
1962     supset2.png
1963     supseteq.png
1964     supseteqq.png
1965     supsetneq.png
1966     supsetneqq.png
1967     surd.png
1968     swarrow.png
1969     tau.png
1970     textrm_AA.png
1971     textrm_O.png
1972     therefore.png
1973     theta.png
1974     theta2.png
1975     thickapprox.png
1976     thicksim.png
1977     tilde.png
1978     times.png
1979     top.png
1980     triangle.png
1981     triangledown.png
1982     triangleleft.png
1983     trianglelefteq.png
1984     triangleq.png
1985     triangleright.png
1986     trianglerighteq.png
1987     twoheadleftarrow.png
1988     twoheadrightarrow.png
1989     ulcorner.png
1990     underbrace.png
1991     underleftarrow.png
1992     underleftrightarrow.png
1993     underline.png
1994     underrightarrow.png
1995     underscore.png
1996     underset.png
1997     uparrow.png
1998     uparrow2.png
1999     update-others.png
2000     updownarrow.png
2001     updownarrow2.png
2002     upharpoonleft.png
2003     upharpoonright.png
2004     uplus.png
2005     upsilon.png
2006     upsilon2.png
2007     upuparrows.png
2008     urcorner.png
2009     varepsilon.png
2010     varkappa.png
2011     varnothing.png
2012     varphi.png
2013     varpi.png
2014     varpropto.png
2015     varrho.png
2016     varsigma.png
2017     varsubsetneq.png
2018     varsubsetneqq.png
2019     varsupsetneq.png
2020     varsupsetneqq.png
2021     vartheta.png
2022     vartriangle.png
2023     vartriangleleft.png
2024     vartriangleright.png
2025     vdash.png
2026     vdash2.png
2027     vdash3.png
2028     vdots.png
2029     vec.png
2030     vee.png
2031     veebar.png
2032     vert.png
2033     vert2.png
2034     view-others.png
2035     vphantom.png
2036     Vvdash.png
2037     wedge.png
2038     widehat.png
2039     widetilde.png
2040     wp.png
2041     wr.png
2042     xi.png
2043     xi2.png
2044     zeta.png
2045 ''')
2046
2047
2048 lib_images_math_extra_files = Split('''
2049     ams_arrows.png
2050     ams_misc.png
2051     ams_nrel.png
2052     ams_ops.png
2053     ams_rel.png
2054     arrows.png
2055     bop.png
2056     brel.png
2057     deco.png
2058     deco.png
2059     delim.png
2060     delim0.png
2061     delim1.png
2062     dots.png
2063     font.png
2064     functions.png
2065     greek.png
2066     misc.png
2067     varsz.png
2068 ''')
2069
2070
2071 lib_images_commands_files = Split('''
2072 ''')
2073
2074
2075 lib_images_attic_extra_files = Split('''
2076     dialog-show_mathpanel.png
2077 ''')
2078
2079
2080 lib_tex_files = Split('''
2081     broadway.cls
2082     hollywood.cls
2083     lyxchess.sty
2084     lyxskak.sty
2085     revtex.cls
2086 ''')
2087
2088
2089 lib_doc_files = Split('''
2090     Customization.lyx
2091     DummyDocument1.lyx
2092     DummyDocument2.lyx
2093     DummyTextDocument.txt
2094     EmbeddedObjects.lyx
2095     Extended.lyx
2096     Formula-numbering.lyx
2097     Intro.lyx
2098     LaTeXConfig.lyx
2099     LFUNs.lyx
2100     Math.lyx
2101     Shortcuts.lyx
2102     Tutorial.lyx
2103     UserGuide.lyx
2104 ''')
2105
2106
2107 lib_doc_biblio_files = Split('''
2108     alphadin.bst
2109     LyXDocs.bib
2110 ''')
2111
2112
2113 lib_doc_clipart_files = Split('''
2114     Abstract.pdf
2115     BoxInsetDefaultQt4.png
2116     ChangesToolbar.png
2117     ChildDocumentQt4.png
2118     CommentNoteImageQt4.png
2119     endnotes.pdf
2120     ERT.png
2121     escher-lsd.eps
2122     ExternalMaterialQt4.png
2123     ExtraToolbar.png
2124     floatQt4.png
2125     footnoteQt4.png
2126     GreyedOutNoteImageQt4.png
2127     labelQt4.png
2128     LaTeX.png
2129     LyXNoteImageQt4.png
2130     macrobox.png
2131     MacroToolbar.png
2132     macrouse.png
2133     mbox.png
2134     mobius.eps
2135     platypus.eps
2136     referenceQt4.png
2137     SpaceMarker.png
2138     StandardToolbar.png
2139     ToolbarEnvBox.png
2140     ViewToolbar.png
2141     with_fntright.pdf
2142     without_fntright.pdf
2143 ''')
2144
2145
2146 lib_doc_extra_files = Split('''
2147     Makefile.am
2148     README.Documentation
2149 ''')
2150
2151
2152 lib_doc_ca_files = Split('''
2153     Intro.lyx
2154 ''')
2155
2156
2157 lib_doc_cs_files = Split('''
2158     Tutorial.lyx
2159 ''')
2160
2161
2162 lib_doc_de_files = Split('''
2163     Customization.lyx
2164     DummyDocument1.lyx
2165     DummyDocument2.lyx
2166     DummyTextDocument.txt
2167     EmbeddedObjects.lyx
2168     Extended.lyx
2169     Formelnummerierung.lyx
2170     Intro.lyx
2171     Math.lyx
2172     Shortcuts.lyx
2173     Tutorial.lyx
2174     UserGuide.lyx
2175 ''')
2176
2177
2178 lib_doc_de_clipart_files = Split('''
2179     ERT.png
2180     ExternesMaterialQt4.png
2181     FussnoteQt4.png
2182     GleitobjektQt4.png
2183     GrauschriftNotizQt4.png
2184     KommentarQt4.png
2185     LyXNotizQt4.png
2186     Marke.png
2187     Querverweis.png
2188     StandardBoxQt4.png
2189     UnterdokumentQt4.png
2190 ''')
2191
2192
2193 lib_doc_da_files = Split('''
2194     Intro.lyx
2195 ''')
2196
2197
2198 lib_doc_es_files = Split('''
2199     Customization.lyx
2200     DocumentoPostizo1.lyx
2201     DocumentoPostizo2.lyx
2202     DocumentoTextoPostizo.txt
2203     EmbeddedObjects.lyx
2204     Extended.lyx
2205     Formula-numbering.lyx
2206     Intro.lyx
2207     Math.lyx
2208     Shortcuts.lyx
2209     Tutorial.lyx
2210     UserGuide.lyx
2211 ''')
2212
2213
2214 lib_doc_es_clipart_files = Split('''
2215     ComentNotaImagenQt4.png
2216     CuadroMinipagQt4.png
2217     DocumentoHijoQt4.png
2218     es_ERT.png
2219     es_ToolbarEnvBox.png
2220     etiquetaQt4.png
2221     flotanteQt4.png
2222     GrisNotaImagenQt4.png
2223     MaterialExternoQt4.png
2224     NotaLyXImagenQt4.png
2225     notapieQt4.png
2226     referenciaQt4.png
2227     Resumen.pdf
2228 ''')
2229
2230
2231 lib_doc_eu_files = Split('''
2232     Customization.lyx
2233     Extended.lyx
2234     Intro.lyx
2235     Tutorial.lyx
2236     UserGuide.lyx
2237 ''')
2238
2239
2240 lib_doc_fr_files = Split('''
2241     Customization.lyx
2242     DocumentBidon1.lyx
2243     DocumentBidon2.lyx
2244     DocumentTexteBidon.txt
2245     EmbeddedObjects.lyx
2246     Extended.lyx
2247     Formula-numbering.lyx
2248     Intro.lyx
2249     Math.lyx
2250     Shortcuts.lyx
2251     Tutorial.lyx
2252     UserGuide.lyx
2253 ''')
2254
2255
2256 lib_doc_fr_clipart_files = Split('''
2257     BoxInsetDefaultQt4.png
2258     ChildDocumentQt4.png
2259     CommentNoteImageQt4.png
2260     floatQt4.png
2261     footnoteQt4.png
2262     GreyedOutNoteImageQt4.png
2263     labelQt4.png
2264     LyXNoteImageQt4.png    
2265 ''')
2266
2267
2268 lib_doc_gl_files = Split('''
2269     Intro.lyx
2270     Tutorial.lyx
2271 ''')
2272
2273
2274 lib_doc_he_files = Split('''
2275     Intro.lyx
2276     Tutorial.lyx
2277 ''')
2278
2279
2280 lib_doc_hu_files = Split('''
2281     Intro.lyx
2282     Tutorial.lyx
2283 ''')
2284
2285
2286 lib_doc_id_files = Split('''
2287     Intro.lyx
2288     Tutorial.lyx
2289 ''')
2290
2291
2292 lib_doc_id_clipart_files = Split('''
2293     id-contrib.png
2294     id-footnote.png
2295     id-lingkungan.png
2296 ''')
2297
2298
2299 lib_doc_it_files = Split('''
2300     Customization.lyx
2301     Intro.lyx
2302     Tutorial.lyx
2303     UserGuide.lyx
2304 ''')
2305
2306
2307 lib_doc_it_clipart_files = Split('''
2308     it_footnoteQt4.png
2309     it_referenceQt4.png
2310 ''')
2311
2312
2313 lib_doc_ja_files = Split('''
2314     Extended.lyx
2315     Intro.lyx
2316     LaTeXConfig.lyx
2317     Math.lyx
2318     Shortcuts.lyx
2319     Tutorial.lyx
2320     UserGuide.lyx
2321 ''')
2322
2323
2324 lib_doc_ja_clipart_files = Split('''
2325     floatQt4.png
2326     footnoteQt4.png
2327     referenceQt4.png
2328     ERT.png
2329     ToolbarEnvBox.png
2330 ''')
2331
2332
2333 lib_doc_nb_files = Split('''
2334     Intro.lyx
2335 ''')
2336
2337
2338 lib_doc_nl_files = Split('''
2339     Intro.lyx
2340     Tutorial.lyx
2341 ''')
2342
2343
2344 lib_doc_pl_files = Split('''
2345     Extended.lyx
2346     Intro.lyx
2347     Tutorial.lyx
2348 ''')
2349
2350
2351 lib_doc_pt_files = Split('''
2352     Intro.lyx
2353     Tutorial.lyx
2354 ''')
2355
2356
2357 lib_doc_ro_files = Split('''
2358     Intro.lyx
2359 ''')
2360
2361
2362 lib_doc_ru_files = Split('''
2363     Intro.lyx
2364     Tutorial.lyx
2365 ''')
2366
2367
2368 lib_doc_sl_files = Split('''
2369     Intro.lyx
2370     Tutorial.lyx
2371 ''')
2372
2373
2374 lib_doc_sk_files = Split('''
2375     Intro.lyx
2376     Tutorial.lyx
2377     UserGuide.lyx
2378 ''')
2379
2380
2381 lib_doc_sv_files = Split('''
2382     Intro.lyx
2383     Tutorial.lyx
2384 ''')
2385
2386
2387 lib_doc_uk_files = Split('''
2388     Intro.lyx
2389 ''')
2390
2391
2392 lib_doc_uk_clipart_files = Split('''
2393     FootnoteQT4.png
2394 ''')
2395
2396
2397 lib_examples_files = Split('''
2398     aa_sample.lyx
2399     aas_sample.lyx
2400     achemso.lyx
2401     addressExample.adr
2402     amsart-test.lyx
2403     amsbook-test.lyx
2404     armenian-article.lyx
2405     beamer-g4-mask.jpg
2406     beamer-g4.jpg
2407     beamer-icsi-logo.pdf
2408     beamer-knight1-mask.png
2409     beamer-knight1.png
2410     beamer-knight2-mask.png
2411     beamer-knight2.png
2412     beamer-knight3-mask.png
2413     beamer-knight3.png
2414     beamer-knight4-mask.png
2415     beamer-knight4.png
2416     beamerlyxexample1.lyx
2417     biblioExample.bib
2418     Braille.lyx
2419     chess-article.lyx
2420     chessgame.lyx
2421     CV-image.eps
2422     CV-image.png
2423     docbook_article.lyx
2424     europeCV.lyx
2425     example_lyxified.lyx
2426     example_raw.lyx
2427     Foils.lyx
2428     iecc05.fen
2429     iecc07.fen
2430     iecc12.fen
2431     ItemizeBullets.lyx
2432     landslide.lyx
2433     linguistics.lyx
2434     listerrors.lyx
2435     Literate.lyx
2436     modernCV.lyx
2437     multicol.lyx
2438     noweb2lyx.lyx
2439     powerdot-example.lyx
2440     recipebook.lyx
2441     script_form.lyx
2442     seminar.lyx
2443     serial_letter1.lyx
2444     serial_letter2.lyx
2445     serial_letter3.lyx
2446     simplecv.lyx
2447     splash.lyx
2448     sweave.lyx
2449     xyfigure.png
2450     xypic.lyx
2451 ''')
2452
2453
2454 lib_examples_ca_files = Split('''
2455     ItemizeBullets.lyx
2456     mathed.lyx
2457     splash.lyx
2458 ''')
2459
2460
2461 lib_examples_cs_files = Split('''
2462     splash.lyx
2463 ''')
2464
2465
2466 lib_examples_da_files = Split('''
2467     splash.lyx
2468 ''')
2469
2470
2471 lib_examples_de_files = Split('''
2472     beispiel_gelyxt.lyx
2473     beispiel_roh.lyx
2474     Braille.lyx
2475     Dezimal.lyx
2476     ItemizeBullets.lyx
2477     Lebenslauf.lyx
2478     linguistics.lyx
2479     multicol.lyx
2480     serienbrief1.lyx
2481     serienbrief2.lyx
2482     serienbrief3.lyx
2483     splash.lyx
2484 ''')
2485
2486
2487 lib_examples_fa_files = Split('''
2488     splash.lyx
2489 ''')
2490
2491
2492 lib_examples_fr_files = Split('''
2493     AlignementDecimal.lyx
2494     exemple_brut.lyx
2495     exemple_lyxifie.lyx
2496     Foils.lyx
2497     ListesPuces.lyx
2498     multicol.lyx
2499     simplecv.lyx
2500     splash.lyx
2501 ''')
2502
2503
2504 lib_examples_es_files = Split('''
2505     Braille.lyx
2506     ejemplo_con_lyx.lyx
2507     ejemplo_sin_lyx.lyx
2508     ItemizeBullets.lyx
2509     linguistics.lyx
2510     multicol.lyx
2511     splash.lyx
2512 ''')
2513
2514
2515 lib_examples_eu_files = Split('''
2516     adibide_gordina.lyx
2517     adibide_lyx-atua.lyx
2518     splash.lyx
2519 ''')
2520
2521
2522 lib_examples_gl_files = Split('''
2523     exemplo_bruto.lyx
2524     exemplo_lyxificado.lyx
2525     splash.lyx
2526 ''')
2527
2528
2529 lib_examples_he_files = Split('''
2530     example_lyxified.lyx
2531     example_raw.lyx
2532     splash.lyx
2533 ''')
2534
2535
2536 lib_examples_hu_files = Split('''
2537     example_lyxified.lyx
2538     example_raw.lyx
2539     splash.lyx
2540 ''')
2541
2542
2543 lib_examples_id_files = Split('''
2544     splash.lyx
2545 ''')
2546
2547
2548 lib_examples_it_files = Split('''
2549     ItemizeBullets.lyx
2550     splash.lyx
2551 ''')
2552
2553
2554 lib_examples_ja_files = Split('''
2555     Braille.lyx
2556     splash.lyx
2557 ''')
2558
2559
2560 lib_examples_nl_files = Split('''
2561     multicol.lyx
2562     opsommingstekens.lyx
2563     splash.lyx
2564     voorbeeld_ruw.lyx
2565     voorbeeld_verlyxt.lyx
2566 ''')
2567
2568
2569 lib_examples_pl_files = Split('''
2570     splash.lyx
2571 ''')
2572
2573
2574 lib_examples_pt_files = Split('''
2575     splash.lyx
2576 ''')
2577
2578
2579 lib_examples_ro_files = Split('''
2580     splash.lyx
2581 ''')
2582
2583
2584 lib_examples_ru_files = Split('''
2585     splash.lyx
2586 ''')
2587
2588
2589 lib_examples_sl_files = Split('''
2590     primer_lyxan.lyx
2591     primer_surov.lyx
2592     splash.lyx
2593 ''')
2594
2595
2596 lib_examples_uk_files = Split('''
2597     splash.lyx
2598 ''')
2599
2600
2601 lib_lyx2lyx_files = Split('''
2602     generate_encoding_info.py
2603     LyX.py
2604     lyx2lyx
2605     lyx2lyx_lang.py
2606     lyx_0_06.py
2607     lyx_0_08.py
2608     lyx_0_10.py
2609     lyx_0_12.py
2610     lyx_1_0.py
2611     lyx_1_1.py
2612     lyx_1_1_5.py
2613     lyx_1_1_6_0.py
2614     lyx_1_1_6_3.py
2615     lyx_1_2.py
2616     lyx_1_3.py
2617     lyx_1_4.py
2618     lyx_1_5.py
2619     lyx_1_6.py
2620     lyx_2_0.py
2621     parser_tools.py
2622     profiling.py
2623     test_parser_tools.py
2624 ''')
2625
2626
2627 lib_lyx2lyx_extra_files = Split('''
2628     lyx2lyx_version.py.in
2629     Makefile.am
2630 ''')
2631
2632
2633 lib_layouts_files = Split('''
2634     aa.layout
2635     aapaper.layout
2636     aastex.layout
2637     achemso.layout
2638     acmsiggraph.layout
2639     agu-dtd.layout
2640     agums.layout
2641     amsart.layout
2642     amsbook.layout
2643     apa.layout
2644     arab-article.layout
2645     armenian-article.layout
2646     article.layout
2647     article-beamer.layout
2648     beamer.layout
2649     book.layout
2650     broadway.layout
2651     chess.layout
2652     cl2emult.layout
2653     dinbrief.layout
2654     docbook-book.layout
2655     docbook-chapter.layout
2656     docbook-section.layout
2657     docbook.layout
2658     dtk.layout
2659     egs.layout
2660     elsart.layout
2661     elsarticle.layout
2662     entcs.layout
2663     europecv.layout
2664     extarticle.layout
2665     extbook.layout
2666     extletter.layout
2667     extreport.layout
2668     foils.layout
2669     g-brief-de.layout
2670     g-brief-en.layout
2671     g-brief2.layout
2672     heb-article.layout
2673     heb-letter.layout
2674     hollywood.layout
2675     IEEEtran.layout
2676     ijmpc.layout
2677     ijmpd.layout
2678     iopart.layout
2679     isprs.layout
2680     jarticle.layout
2681     jbook.layout
2682     jgrga.layout
2683     jreport.layout
2684     jsarticle.layout
2685     jsbook.layout
2686     jss.layout
2687     kluwer.layout
2688     latex8.layout
2689     letter.layout
2690     literate-article.layout
2691     literate-book.layout
2692     literate-report.layout
2693     llncs.layout
2694     ltugboat.layout
2695     memoir.layout
2696     moderncv.layout
2697     mwart.layout
2698     mwbk.layout
2699     mwrep.layout
2700     paper.layout
2701     powerdot.layout
2702     recipebook.layout
2703     report.layout
2704     revtex.layout
2705     revtex4.layout
2706     scrartcl.layout
2707     scrarticle-beamer.layout
2708     scrbook.layout
2709     scrlettr.layout
2710     scrlttr2.layout
2711     scrreprt.layout
2712     seminar.layout
2713     siamltex.layout
2714     sigplanconf.layout
2715     simplecv.layout
2716     singlecol.layout
2717     slides.layout
2718     spie.layout
2719     svglobal.layout
2720     svglobal3.layout
2721     svjog.layout
2722     svprobth.layout
2723     tarticle.layout
2724     tbook.layout
2725     treport.layout
2726 ''')
2727
2728
2729 lib_layouts_inc_files = Split('''
2730     aapaper.inc
2731     agu_stdclass.inc
2732     agu_stdcounters.inc
2733     agu_stdlists.inc
2734     agu_stdsections.inc
2735     agu_stdtitle.inc
2736     aguplus.inc
2737     amsdefs.inc
2738     db_lyxmacros.inc
2739     db_stdcharstyles.inc
2740     db_stdclass.inc
2741     db_stdcounters.inc
2742     db_stdlayouts.inc
2743     db_stdlists.inc
2744     db_stdsections.inc
2745     db_stdstarsections.inc
2746     db_stdstruct.inc
2747     db_stdtitle.inc
2748     literate-scrap.inc
2749     lyxmacros.inc
2750     numarticle.inc
2751     numreport.inc
2752     numrevtex.inc
2753     scrclass.inc
2754     stdcharstyles.inc
2755     stdclass.inc
2756     stdcounters.inc
2757     stdcustom.inc
2758     stdfloats.inc
2759     stdinsets.inc
2760     stdlayouts.inc
2761     stdletter.inc
2762     stdlists.inc
2763     stdsections.inc
2764     stdstarsections.inc
2765     stdstruct.inc
2766     stdtitle.inc
2767     svjour.inc
2768     theorems.inc
2769     theorems-ams.inc
2770     theorems-order.inc
2771     theorems-proof.inc
2772     theorems-proof-std.inc
2773     theorems-starred.inc
2774     theorems-starred-equivalents.inc
2775 ''')
2776
2777
2778 lib_layouts_module_files = Split('''
2779     braille.module
2780     capitals.module
2781     endnotes.module
2782     foottoend.module
2783     hanging.module
2784     linguistics.module
2785     logicalmkup.module
2786     minimalistic.module
2787     noweb.module
2788     sweave.module
2789     theorems-ams-extended.module
2790     theorems-ams.module
2791     theorems-chap.module
2792     theorems-sec.module
2793     theorems-starred.module
2794     theorems-std.module
2795 ''')
2796
2797 lib_scripts_files = Split('''
2798     clean_dvi.py
2799     convertDefault.py
2800     csv2lyx.py
2801     date.py
2802     ext_copy.py
2803     fen2ascii.py
2804     fig2pdftex.py
2805     fig2pstex.py
2806     fig_copy.py
2807     layout2layout.py
2808     legacy_lyxpreview2ppm.py
2809     listerrors
2810     lyxpreview2bitmap.py
2811     lyxpreview-platex2bitmap.py
2812     lyxpreview_tools.py
2813     TeXFiles.py
2814     tex_copy.py
2815 ''')
2816
2817
2818 lib_bind_files = Split('''
2819     aqua.bind
2820     broadway.bind
2821     cua.bind
2822     cyrkeys.bind
2823     emacs.bind
2824     greekkeys.bind
2825     hollywood.bind
2826     latinkeys.bind
2827     mac.bind
2828     math.bind
2829     menus.bind
2830     sciword.bind
2831     site.bind
2832     xemacs.bind
2833 ''')
2834
2835
2836 lib_bind_fi_files = Split('''
2837     menus.bind
2838 ''')
2839
2840
2841 lib_bind_sv_files = Split('''
2842     menus.bind
2843 ''')
2844
2845
2846 lib_bind_pt_files = Split('''
2847     menus.bind
2848 ''')
2849
2850
2851 lib_bind_de_files = Split('''
2852     menus.bind
2853 ''')
2854
2855
2856 lib_commands_files = Split('''
2857     default.def
2858 ''')
2859
2860
2861 boost_extra_files = Split('''
2862     LICENSE_1_0.txt
2863     Makefile.am
2864 ''')
2865
2866
2867 boost_libs_extra_files = Split('''
2868     Makefile.am
2869     README
2870 ''')
2871
2872
2873 boost_libs_signals_extra_files = Split('''
2874     Makefile.am
2875     signals.vcproj
2876 ''')
2877
2878
2879 boost_libs_signals_src_files = Split('''
2880     connection.cpp
2881     named_slot_map.cpp
2882     signal_base.cpp
2883     slot.cpp
2884     trackable.cpp
2885 ''')
2886
2887
2888 boost_libs_signals_src_extra_files = Split('''
2889     Makefile.am
2890     pch.h
2891 ''')
2892
2893
2894 boost_libs_regex_extra_files = Split('''
2895     Makefile.am
2896     regex.vcproj
2897 ''')
2898
2899
2900 boost_libs_regex_src_files = Split('''
2901     c_regex_traits.cpp
2902     cpp_regex_traits.cpp
2903     cregex.cpp
2904     fileiter.cpp
2905     instances.cpp
2906     posix_api.cpp
2907     regex.cpp
2908     regex_debug.cpp
2909     regex_raw_buffer.cpp
2910     regex_traits_defaults.cpp
2911     w32_regex_traits.cpp
2912     wide_posix_api.cpp
2913     winstances.cpp
2914 ''')
2915
2916
2917 boost_libs_regex_src_extra_files = Split('''
2918     Makefile.am
2919     pch.h
2920 ''')
2921
2922
2923
2924 development_Win32_packaging_installer = Split('''
2925     license.rtf
2926     lyx.nsi
2927     settings.nsh
2928 ''')
2929
2930
2931 development_Win32_packaging_installer_graphics = Split('''
2932     header.bmp
2933     wizard.bmp
2934 ''')
2935
2936
2937 development_Win32_packaging_installer_gui = Split('''
2938     external.nsh
2939     langselect.nsh
2940     reinstall.nsh
2941 ''')
2942
2943
2944 development_Win32_packaging_installer_include = Split('''
2945     declarations.nsh
2946     detection.nsh
2947     dictlist.nsh    
2948     filelist.nsh
2949     gui.nsh
2950     init.nsh
2951     langlist.nsh
2952     nsis.nsh
2953     variables.nsh
2954 ''')
2955
2956
2957 development_Win32_packaging_installer_lang = Split('''
2958     english.nsh
2959     french.nsh
2960     german.nsh
2961     italian.nsh
2962 ''')
2963
2964
2965 development_Win32_packaging_installer_setup = Split('''
2966     configure.nsh
2967     install.nsh
2968     reinstall.nsh
2969 ''')