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