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