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