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