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