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