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