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