]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
fix SCons
[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 src_support_extra_src_files = Split('''
372     Package.cpp.in
373     atexit.c
374     os_cygwin.cpp
375     os_unix.cpp
376     os_win32.cpp
377     strerror.c
378 ''')
379
380
381 src_support_extra_files = Split('''
382     ChangeLog
383     Makefile.am
384     pch.h
385 ''')
386
387
388 src_support_tests_extra_files = Split('''
389     ChangeLog
390     Makefile.am
391     boost.cpp
392     convert.cpp
393     filetools.cpp
394     lstrings.cpp
395     pch.h
396     test_convert
397     test_filetools
398     test_lstrings
399 ''')
400
401
402 src_support_tests_regfiles_extra_files = Split('''
403     convert
404     filetools
405     lstrings
406 ''')
407
408
409 src_graphics_header_files = Split('''
410     GraphicsCache.h
411     GraphicsCacheItem.h
412     GraphicsConverter.h
413     GraphicsImage.h
414     GraphicsLoader.h
415     GraphicsParams.h
416     GraphicsTypes.h
417     LoaderQueue.h
418     PreviewImage.h
419     PreviewLoader.h
420     Previews.h
421 ''')
422
423
424 src_graphics_files = Split('''
425     GraphicsCache.cpp
426     GraphicsCacheItem.cpp
427     GraphicsConverter.cpp
428     GraphicsImage.cpp
429     GraphicsLoader.cpp
430     GraphicsParams.cpp
431     GraphicsTypes.cpp
432     LoaderQueue.cpp
433     PreviewImage.cpp
434     PreviewLoader.cpp
435     Previews.cpp
436 ''')
437
438
439 src_graphics_extra_files = Split('''
440     ChangeLog
441     Makefile.am
442     pch.h
443 ''')
444
445
446 src_mathed_header_files = Split('''
447     CommandInset.h
448     InsetMath.h
449     InsetMathAMSArray.h
450     InsetMathArray.h
451     InsetMathBig.h
452     InsetMathBinom.h
453     InsetMathBoldSymbol.h
454     InsetMathBox.h
455     InsetMathBoxed.h
456     InsetMathBrace.h
457     InsetMathCases.h
458     InsetMathChar.h
459     InsetMathColor.h
460     InsetMathComment.h
461     InsetMathDFrac.h
462     InsetMathDecoration.h
463     InsetMathDelim.h
464     InsetMathDiff.h
465     InsetMathDots.h
466     InsetMathEnv.h
467     InsetMathExFunc.h
468     InsetMathExInt.h
469     InsetMathFBox.h
470     InsetMathFont.h
471     InsetMathFontOld.h
472     InsetMathFrac.h
473     InsetMathFracBase.h
474     InsetMathFrameBox.h
475     InsetMathGrid.h
476     InsetMathHull.h
477     InsetMathKern.h
478     InsetMathLefteqn.h
479     InsetMathLim.h
480     InsetMathMakebox.h
481     InsetMathMatrix.h
482     InsetMathNest.h
483     InsetMathNumber.h
484     InsetMathOverset.h
485     InsetMathPar.h
486     InsetMathPhantom.h
487     InsetMathRef.h
488     InsetMathRoot.h
489     InsetMathScript.h
490     InsetMathSize.h
491     InsetMathSpace.h
492     InsetMathSplit.h
493     InsetMathSqrt.h
494     InsetMathStackrel.h
495     InsetMathString.h
496     InsetMathSubstack.h
497     InsetMathSymbol.h
498     InsetMathTFrac.h
499     InsetMathTabular.h
500     InsetMathUnderset.h
501     InsetMathUnknown.h
502     InsetMathXArrow.h
503     InsetMathXYMatrix.h
504     MacroTable.h
505     MathAtom.h
506     MathAutoCorrect.h
507     MathData.h
508     MathExtern.h
509     MathFactory.h
510     MathGridInfo.h
511     MathMacro.h
512     MathMacroArgument.h
513     MathMacroTemplate.h
514     MathParser.h
515     MathStream.h
516     MathSupport.h
517     ReplaceData.h
518     TextPainter.h
519 ''')
520
521
522 src_mathed_files = Split('''
523     CommandInset.cpp
524     InsetMath.cpp
525     InsetMathAMSArray.cpp
526     InsetMathArray.cpp
527     InsetMathBig.cpp
528     InsetMathBinom.cpp
529     InsetMathBoldSymbol.cpp
530     InsetMathBox.cpp
531     InsetMathBoxed.cpp
532     InsetMathBrace.cpp
533     InsetMathCases.cpp
534     InsetMathChar.cpp
535     InsetMathColor.cpp
536     InsetMathComment.cpp
537     InsetMathDFrac.cpp
538     InsetMathDecoration.cpp
539     InsetMathDelim.cpp
540     InsetMathDiff.cpp
541     InsetMathDots.cpp
542     InsetMathEnv.cpp
543     InsetMathExFunc.cpp
544     InsetMathExInt.cpp
545     InsetMathFBox.cpp
546     InsetMathFont.cpp
547     InsetMathFontOld.cpp
548     InsetMathFrac.cpp
549     InsetMathFracBase.cpp
550     InsetMathFrameBox.cpp
551     InsetMathGrid.cpp
552     InsetMathHull.cpp
553     InsetMathKern.cpp
554     InsetMathLefteqn.cpp
555     InsetMathLim.cpp
556     InsetMathMakebox.cpp
557     InsetMathMatrix.cpp
558     InsetMathNest.cpp
559     InsetMathNumber.cpp
560     InsetMathOverset.cpp
561     InsetMathPar.cpp
562     InsetMathPhantom.cpp
563     InsetMathRef.cpp
564     InsetMathRoot.cpp
565     InsetMathScript.cpp
566     InsetMathSize.cpp
567     InsetMathSpace.cpp
568     InsetMathSplit.cpp
569     InsetMathSqrt.cpp
570     InsetMathStackrel.cpp
571     InsetMathString.cpp
572     InsetMathSubstack.cpp
573     InsetMathSymbol.cpp
574     InsetMathTFrac.cpp
575     InsetMathTabular.cpp
576     InsetMathUnderset.cpp
577     InsetMathUnknown.cpp
578     InsetMathXArrow.cpp
579     InsetMathXYMatrix.cpp
580     MacroTable.cpp
581     MathAtom.cpp
582     MathAutoCorrect.cpp
583     MathData.cpp
584     MathExtern.cpp
585     MathFactory.cpp
586     MathMacro.cpp
587     MathMacroArgument.cpp
588     MathMacroTemplate.cpp
589     MathParser.cpp
590     MathStream.cpp
591     MathSupport.cpp
592     TextPainter.cpp
593 ''')
594
595
596 src_mathed_extra_files = Split('''
597     BUGS
598     ChangeLog
599     InsetFormulaMacro.cpp
600     InsetFormulaMacro.h
601     InsetMathMBox.cpp
602     InsetMathMBox.h
603     InsetMathXYArrow.cpp
604     InsetMathXYArrow.h
605     Makefile.am
606     README
607     pch.h
608     texify
609 ''')
610
611
612 src_tex2lyx_header_files = Split('''
613     Context.h
614     Font.h
615     Parser.h
616     Spacing.h
617     tex2lyx.h
618 ''')
619
620
621 src_tex2lyx_files = Split('''
622     Context.cpp
623     Font.cpp
624     Parser.cpp
625     boost.cpp
626     gettext.cpp
627     lengthcommon.cpp
628     math.cpp
629     preamble.cpp
630     table.cpp
631     tex2lyx.cpp
632     text.cpp
633 ''')
634
635
636 src_tex2lyx_copied_files = Split('''
637     Counters.cpp
638     FloatList.cpp
639     Floating.cpp
640     Layout.cpp
641     Lexer.cpp
642     TextClass.cpp
643 ''')
644
645
646 src_tex2lyx_copied_header_files = Split('''
647     Layout.h
648     Lexer.h
649     TextClass.h
650 ''')
651
652
653 src_tex2lyx_extra_files = Split('''
654     ChangeLog
655     Makefile.am
656     pch.h
657     test-insets.tex
658     test-structure.tex
659     test.ltx
660     tex2lyx.man
661 ''')
662
663
664 src_frontends_header_files = Split('''
665     Alert_pimpl.h
666     Application.h
667     Clipboard.h
668     Dialogs.h
669     FileDialog.h
670     FontLoader.h
671     FontMetrics.h
672     Gui.h
673     KeySymbol.h
674     LyXView.h
675     Menubar.h
676     NoGuiFontLoader.h
677     NoGuiFontMetrics.h
678     Painter.h
679     Selection.h
680     Timeout.h
681     Toolbars.h
682     WorkArea.h
683     alert.h
684     key_state.h
685     mouse_state.h
686 ''')
687
688
689 src_frontends_files = Split('''
690     Application.cpp
691     Dialogs.cpp
692     LyXView.cpp
693     Painter.cpp
694     Timeout.cpp
695     Toolbars.cpp
696     WorkArea.cpp
697     alert.cpp
698 ''')
699
700
701 src_frontends_extra_files = Split('''
702     ChangeLog
703     Makefile.am
704     pch.h
705 ''')
706
707
708 src_frontends_controllers_header_files = Split('''
709     BCView.h
710     ButtonController.h
711     ButtonPolicy.h
712     ControlAboutlyx.h
713     ControlBibtex.h
714     ControlBox.h
715     ControlBranch.h
716     ControlChanges.h
717     ControlCharacter.h
718     ControlCitation.h
719     ControlCommand.h
720     ControlCommandBuffer.h
721     ControlDocument.h
722     ControlERT.h
723     ControlErrorList.h
724     ControlExternal.h
725     ControlFloat.h
726     ControlGraphics.h
727     ControlInclude.h
728     ControlLog.h
729     ControlMath.h
730     ControlNote.h
731     ControlParagraph.h
732     ControlPrefs.h
733     ControlPrint.h
734     ControlRef.h
735     ControlSearch.h
736     ControlSendto.h
737     ControlShowFile.h
738     ControlSpellchecker.h
739     ControlTabular.h
740     ControlTabularCreate.h
741     ControlTexinfo.h
742     ControlThesaurus.h
743     ControlToc.h
744     ControlVSpace.h
745     ControlViewSource.h
746     ControlWrap.h
747     Dialog.h
748     Kernel.h
749     frontend_helpers.h
750 ''')
751
752
753 src_frontends_controllers_files = Split('''
754     BCView.cpp
755     ButtonController.cpp
756     ButtonPolicy.cpp
757     ControlAboutlyx.cpp
758     ControlBibtex.cpp
759     ControlBox.cpp
760     ControlBranch.cpp
761     ControlChanges.cpp
762     ControlCharacter.cpp
763     ControlCitation.cpp
764     ControlCommand.cpp
765     ControlCommandBuffer.cpp
766     ControlDocument.cpp
767     ControlERT.cpp
768     ControlErrorList.cpp
769     ControlExternal.cpp
770     ControlFloat.cpp
771     ControlGraphics.cpp
772     ControlInclude.cpp
773     ControlLog.cpp
774     ControlMath.cpp
775     ControlNote.cpp
776     ControlParagraph.cpp
777     ControlPrefs.cpp
778     ControlPrint.cpp
779     ControlRef.cpp
780     ControlSearch.cpp
781     ControlSendto.cpp
782     ControlShowFile.cpp
783     ControlSpellchecker.cpp
784     ControlTabular.cpp
785     ControlTabularCreate.cpp
786     ControlTexinfo.cpp
787     ControlThesaurus.cpp
788     ControlToc.cpp
789     ControlVSpace.cpp
790     ControlViewSource.cpp
791     ControlWrap.cpp
792     Dialog.cpp
793     Kernel.cpp
794     frontend_helpers.cpp
795 ''')
796
797
798 src_frontends_controllers_extra_files = Split('''
799     BCView.tmpl
800     ChangeLog
801     Makefile.am
802     pch.h
803 ''')
804
805
806 src_frontends_controllers_tests_extra_files = Split('''
807     Makefile.am
808     biblio.cpp
809     boost.cpp
810     pch.h
811     test_biblio
812 ''')
813
814
815 src_frontends_controllers_tests_regfiles_extra_files = Split('''
816     biblio
817 ''')
818
819
820 src_frontends_qt4_header_files = Split('''
821     Action.h
822     BulletsModule.h
823     CheckedLineEdit.h
824     ColorCache.h
825     DockView.h
826     EmptyTable.h
827     FloatPlacement.h
828     GuiApplication.h
829     GuiClipboard.h
830     GuiFontLoader.h
831     GuiImplementation.h
832     GuiSelection.h
833     GuiView.h
834     GuiWorkArea.h
835     IconPalette.h
836     InsertTableWidget.h
837     LengthCombo.h
838     LyXFileDialog.h
839     PanelStack.h
840     QAbout.h
841     QBibitem.h
842     QBibtex.h
843     QBox.h
844     QBranch.h
845     QBranches.h
846     QChanges.h
847     QCharacter.h
848     QCharacter.h
849     QCitation.h
850     QCitationDialog.h
851     QCommandBuffer.h
852     QCommandEdit.h
853     QDelimiterDialog.h
854     QDialogView.h
855     QDocument.h
856     QERT.h
857     QErrorList.h
858     QExternal.h
859     QFloat.h
860     QFloatDialog.h
861     QFontExample.h
862     QGraphics.h
863     QGraphicsDialog.h
864     QGraphicsUi.h
865     QInclude.h
866     QIndex.h
867     QKeySymbol.h
868     QLImage.h
869     QLMenubar.h
870     QLPainter.h
871     QLPopupMenu.h
872     QLPrintDialog.h
873     QLToolbar.h
874     QLog.h
875     QMathMatrixDialog.h
876     QNomencl.h
877     QNote.h
878     QParagraph.h
879     QPrefs.h
880     QPrint.h
881     QRef.h
882     QSearch.h
883     QSendto.h
884     QSetBorder.h
885     QShowFile.h
886     QSpellchecker.h
887     QTabular.h
888     QTabularCreate.h
889     QTexinfo.h
890     QThesaurus.h
891     QToc.h
892     QURLDialog.h
893     QVSpace.h
894     QViewSource.h
895     QWrap.h
896     Qt2BC.h
897     TocModel.h
898     TocWidget.h
899     UrlView.h
900     Validator.h
901     qlkey.h
902     qtTimeout.h
903     qt_helpers.h
904     socket_callback.h
905 ''')
906
907
908 src_frontends_qt4_files = Split('''
909     Action.cpp
910     BulletsModule.cpp
911     CheckedLineEdit.cpp
912     ColorCache.cpp
913     Dialogs.cpp
914     EmptyTable.cpp
915     FileDialog.cpp
916     FloatPlacement.cpp
917     GuiApplication.cpp
918     GuiClipboard.cpp
919     GuiFontLoader.cpp
920     GuiFontMetrics.cpp
921     GuiImplementation.cpp
922     GuiSelection.cpp
923     GuiView.cpp
924     GuiWorkArea.cpp
925     IconPalette.cpp
926     InsertTableWidget.cpp
927     KeySymbol.cpp
928     LengthCombo.cpp
929     LyXFileDialog.cpp
930     PanelStack.cpp
931     QAbout.cpp
932     QBibitem.cpp
933     QBibtex.cpp
934     QBox.cpp
935     QBranch.cpp
936     QBranches.cpp
937     QChanges.cpp
938     QCharacter.cpp
939     QCitation.cpp
940     QCitationDialog.cpp
941     QCommandBuffer.cpp
942     QCommandEdit.cpp
943     QDelimiterDialog.cpp
944     QDialogView.cpp
945     QDocument.cpp
946     QERT.cpp
947     QErrorList.cpp
948     QExternal.cpp
949     QFloat.cpp
950     QFloatDialog.cpp
951     QFontExample.cpp
952     QGraphics.cpp
953     QGraphicsDialog.cpp
954     QInclude.cpp
955     QIndex.cpp
956     QKeySymbol.cpp
957     QLImage.cpp
958     QLMenubar.cpp
959     QLPainter.cpp
960     QLPopupMenu.cpp
961     QLPrintDialog.cpp
962     QLToolbar.cpp
963     QLog.cpp
964     QMathMatrixDialog.cpp
965     QNomencl.cpp
966     QNote.cpp
967     QParagraph.cpp
968     QPrefs.cpp
969     QPrint.cpp
970     QRef.cpp
971     QSearch.cpp
972     QSendto.cpp
973     QSetBorder.cpp
974     QShowFile.cpp
975     QSpellchecker.cpp
976     QTabular.cpp
977     QTabularCreate.cpp
978     QTexinfo.cpp
979     QThesaurus.cpp
980     QToc.cpp
981     QURLDialog.cpp
982     QVSpace.cpp
983     QViewSource.cpp
984     QWrap.cpp
985     Qt2BC.cpp
986     TocModel.cpp
987     TocWidget.cpp
988     UrlView.cpp
989     Validator.cpp
990     alert_pimpl.cpp
991     qtTimeout.cpp
992     qt_helpers.cpp
993     socket_callback.cpp
994 ''')
995
996
997 src_frontends_qt4_moc_files = Split('''
998     Action.cpp
999     BulletsModule.cpp
1000     EmptyTable.cpp
1001     FloatPlacement.cpp
1002     GuiApplication.cpp
1003     GuiImplementation.cpp
1004     GuiView.cpp
1005     GuiWorkArea.cpp
1006     IconPalette.cpp
1007     InsertTableWidget.cpp
1008     LengthCombo.cpp
1009     LyXFileDialog.cpp
1010     PanelStack.cpp
1011     QAbout.cpp
1012     QBibitem.cpp
1013     QBibtex.cpp
1014     QBox.cpp
1015     QBranch.cpp
1016     QBranches.cpp
1017     QChanges.cpp
1018     QCharacter.cpp
1019     QCitationDialog.cpp
1020     QCommandBuffer.cpp
1021     QCommandEdit.cpp
1022     QDelimiterDialog.cpp
1023     QDialogView.cpp
1024     QDocument.cpp
1025     QERT.cpp
1026     QErrorList.cpp
1027     QExternal.cpp
1028     QFloatDialog.cpp
1029     QGraphicsDialog.cpp
1030     QInclude.cpp
1031     QIndex.cpp
1032     QLMenubar.cpp
1033     QLPopupMenu.cpp
1034     QLPrintDialog.cpp
1035     QLToolbar.cpp
1036     QLog.cpp
1037     QLog.cpp
1038     QMathMatrixDialog.cpp
1039     QNomencl.cpp
1040     QNomencl.cpp
1041     QNote.cpp
1042     QParagraph.cpp
1043     QPrefs.cpp
1044     QRef.cpp
1045     QSearch.cpp
1046     QSendto.cpp
1047     QSetBorder.cpp
1048     QShowFile.cpp
1049     QSpellchecker.cpp
1050     QTabular.cpp
1051     QTabularCreate.cpp
1052     QTexinfo.cpp
1053     QThesaurus.cpp
1054     QToc.cpp
1055     QURLDialog.cpp
1056     QVSpace.cpp
1057     QViewSource.cpp
1058     QWrap.cpp
1059     TocModel.cpp
1060     TocWidget.cpp
1061     Validator.cpp
1062     socket_callback.cpp
1063 ''')
1064
1065
1066 src_frontends_qt4_extra_files = Split('''
1067     ChangeLog
1068     GuiFontMetrics.h
1069     Makefile.am
1070     Makefile.dialogs
1071     README
1072     pch.h
1073 ''')
1074
1075
1076 src_frontends_qt4_ui_files = Split('''
1077     AboutUi.ui
1078     AskForTextUi.ui
1079     BibitemUi.ui
1080     BiblioUi.ui
1081     BibtexAddUi.ui
1082     BibtexUi.ui
1083     BoxUi.ui
1084     BranchUi.ui
1085     BranchesUi.ui
1086     BulletsUi.ui
1087     ChangesUi.ui
1088     CharacterUi.ui
1089     CitationUi.ui
1090     DelimiterUi.ui
1091     DocumentUi.ui
1092     ERTUi.ui
1093     ErrorListUi.ui
1094     ExternalUi.ui
1095     FloatPlacementUi.ui
1096     FloatUi.ui
1097     FontUi.ui
1098     GraphicsUi.ui
1099     IncludeUi.ui
1100     IndexUi.ui
1101     LaTeXUi.ui
1102     LanguageUi.ui
1103     LogUi.ui
1104     MarginsUi.ui
1105     MathMatrixUi.ui
1106     MathsUi.ui
1107     NomenclUi.ui
1108     NoteUi.ui
1109     NumberingUi.ui
1110     PageLayoutUi.ui
1111     ParagraphUi.ui
1112     PreambleUi.ui
1113     PrefColorsUi.ui
1114     PrefConvertersUi.ui
1115     PrefCopiersUi.ui
1116     PrefCygwinPathUi.ui
1117     PrefDateUi.ui
1118     PrefDisplayUi.ui
1119     PrefFileformatsUi.ui
1120     PrefIdentityUi.ui
1121     PrefKeyboardUi.ui
1122     PrefLanguageUi.ui
1123     PrefLatexUi.ui
1124     PrefPathsUi.ui
1125     PrefPlaintextUi.ui
1126     PrefPrinterUi.ui
1127     PrefScreenFontsUi.ui
1128     PrefSpellcheckerUi.ui
1129     PrefUi.ui
1130     PrefsUi.ui
1131     PrintUi.ui
1132     RefUi.ui
1133     SearchUi.ui
1134     SendtoUi.ui
1135     ShowFileUi.ui
1136     SpellcheckerUi.ui
1137     TabularCreateUi.ui
1138     TabularUi.ui
1139     TexinfoUi.ui
1140     TextLayoutUi.ui
1141     ThesaurusUi.ui
1142     TocUi.ui
1143     URLUi.ui
1144     VSpaceUi.ui
1145     ViewSourceUi.ui
1146     WrapUi.ui
1147 ''')
1148
1149
1150 src_frontends_qt4_ui_extra_files = Split('''
1151     Makefile.am
1152     compile_uic.sh
1153 ''')
1154
1155
1156 src_insets_header_files = Split('''
1157     ExternalSupport.h
1158     ExternalTemplate.h
1159     ExternalTransforms.h
1160     Inset.h
1161     InsetBibitem.h
1162     InsetBibtex.h
1163     InsetBox.h
1164     InsetBranch.h
1165     InsetCaption.h
1166     InsetCharStyle.h
1167     InsetCitation.h
1168     InsetCollapsable.h
1169     InsetCommand.h
1170     InsetCommandParams.h
1171     InsetERT.h
1172     InsetEnvironment.h
1173     InsetExternal.h
1174     InsetFloat.h
1175     InsetFloatList.h
1176     InsetFoot.h
1177     InsetFootlike.h
1178     InsetGraphics.h
1179     InsetGraphicsParams.h
1180     InsetHFill.h
1181     InsetInclude.h
1182     InsetIndex.h
1183     InsetLabel.h
1184     InsetLine.h
1185     InsetMarginal.h
1186     InsetNewline.h
1187     InsetNomencl.h
1188     InsetNote.h
1189     InsetOptArg.h
1190     InsetPagebreak.h
1191     InsetQuotes.h
1192     InsetRef.h
1193     InsetSpace.h
1194     InsetSpecialChar.h
1195     InsetTOC.h
1196     InsetTabular.h
1197     InsetText.h
1198     InsetUrl.h
1199     InsetVSpace.h
1200     InsetWrap.h
1201     MailInset.h
1202     RenderBase.h
1203     RenderButton.h
1204     RenderGraphic.h
1205     RenderPreview.h
1206 ''')
1207
1208
1209 src_insets_files = Split('''
1210     ExternalSupport.cpp
1211     ExternalTemplate.cpp
1212     ExternalTransforms.cpp
1213     Inset.cpp
1214     InsetBibitem.cpp
1215     InsetBibtex.cpp
1216     InsetBox.cpp
1217     InsetBranch.cpp
1218     InsetCaption.cpp
1219     InsetCharStyle.cpp
1220     InsetCitation.cpp
1221     InsetCollapsable.cpp
1222     InsetCommand.cpp
1223     InsetCommandParams.cpp
1224     InsetERT.cpp
1225     InsetEnvironment.cpp
1226     InsetExternal.cpp
1227     InsetFloat.cpp
1228     InsetFloatList.cpp
1229     InsetFoot.cpp
1230     InsetFootlike.cpp
1231     InsetGraphics.cpp
1232     InsetGraphicsParams.cpp
1233     InsetHFill.cpp
1234     InsetInclude.cpp
1235     InsetIndex.cpp
1236     InsetLabel.cpp
1237     InsetLine.cpp
1238     InsetMarginal.cpp
1239     InsetNewline.cpp
1240     InsetNomencl.cpp
1241     InsetNote.cpp
1242     InsetOptArg.cpp
1243     InsetPagebreak.cpp
1244     InsetQuotes.cpp
1245     InsetRef.cpp
1246     InsetSpace.cpp
1247     InsetSpecialChar.cpp
1248     InsetTOC.cpp
1249     InsetTabular.cpp
1250     InsetText.cpp
1251     InsetUrl.cpp
1252     InsetVSpace.cpp
1253     InsetWrap.cpp
1254     MailInset.cpp
1255     RenderButton.cpp
1256     RenderGraphic.cpp
1257     RenderPreview.cpp
1258 ''')
1259
1260
1261 src_insets_extra_files = Split('''
1262     ChangeLog
1263     InsetTheorem.cpp
1264     InsetTheorem.h
1265     Makefile.am
1266     pch.h
1267 ''')
1268
1269
1270 intl_header_files = Split('''
1271     eval-plural.h
1272     gettextP.h
1273     gmo.h
1274     hash-string.h
1275     loadinfo.h
1276     localcharset.h
1277     os2compat.h
1278     plural-exp.h
1279     printf-args.h
1280     printf-parse.h
1281     relocatable.h
1282     vasnprintf.h
1283     vasnwprintf.h
1284     wprintf-parse.h
1285     xsize.h
1286 ''')
1287
1288
1289 intl_files = Split('''
1290     bindtextdom.c
1291     dcgettext.c
1292     dcigettext.c
1293     dcngettext.c
1294     dgettext.c
1295     dngettext.c
1296     explodename.c
1297     finddomain.c
1298     gettext.c
1299     intl-compat.c
1300     l10nflist.c
1301     loadmsgcat.c
1302     localcharset.c
1303     localealias.c
1304     localename.c
1305     log.c
1306     ngettext.c
1307     osdep.c
1308     plural-exp.c
1309     plural.c
1310     printf.c
1311     relocatable.c
1312     textdomain.c
1313 ''')
1314
1315
1316 intl_extra_files = Split('''
1317     ChangeLog
1318     VERSION
1319     config.charset
1320     libgnuintl.h.in
1321     locale.alias
1322     os2compat.c
1323     plural.y
1324     printf-args.c
1325     printf-parse.c
1326     ref-add.sin
1327     ref-del.sin
1328     vasnprintf.c
1329 ''')
1330
1331
1332 config_extra_files = Split('''
1333     ChangeLog
1334     Makefile.am
1335     common.am
1336     config.guess
1337     config.rpath
1338     config.sub
1339     depcomp
1340     install-sh
1341     libtool.m4
1342     ltmain.sh
1343     lyxinclude.m4
1344     missing
1345     mkinstalldirs
1346     pkg.m4
1347     py-compile
1348     qt4.m4
1349     spell.m4
1350 ''')
1351
1352
1353 sourcedoc_extra_files = Split('''
1354     Doxyfile.in
1355     Makefile.am
1356 ''')
1357
1358
1359 po_extra_files = Split('''
1360     ChangeLog
1361     LINGUAS
1362     Makefile.in.in
1363     Makevars
1364     POTFILES.in
1365     README
1366     Rules-quot
1367     bg.po
1368     boldquot.sed
1369     ca.po
1370     cs.po
1371     da.po
1372     de.po
1373     en@boldquot.header
1374     en@quot.header
1375     es.po
1376     eu.po
1377     fi.po
1378     fr.po
1379     gl.po
1380     he.po
1381     hu.po
1382     insert-header.sin
1383     it.po
1384     ja.po
1385     lyx_pot.py
1386     nb.po
1387     nl.po
1388     nn.po
1389     pl.po
1390     pocheck.pl
1391     postats.sh
1392     pt.po
1393     quot.sed
1394     remove-potcdate.sin
1395     ro.po
1396     ru.po
1397     sk.po
1398     sl.po
1399     sv.po
1400     tr.po
1401     wa.po
1402 ''')
1403
1404
1405 lib_files = Split('''
1406     CREDITS
1407     chkconfig.ltx
1408     configure.py
1409     encodings
1410     external_templates
1411     languages
1412     symbols
1413     syntax.default
1414     unicodesymbols
1415 ''')
1416
1417
1418 lib_extra_files = Split('''
1419     ChangeLog
1420     Makefile.am
1421     autocorrect
1422     build-listerrors
1423     generate_contributions.py
1424 ''')
1425
1426
1427 lib_kbd_files = Split('''
1428     american-2.kmap
1429     american.kmap
1430     arabic.kmap
1431     bg-bds-1251.kmap
1432     brazil.kmap
1433     brazil2.kmap
1434     czech-prg.kmap
1435     czech.kmap
1436     espanol.kmap
1437     european.kmap
1438     francais.kmap
1439     french.kmap
1440     german-2.kmap
1441     german-3.kmap
1442     german.kmap
1443     greek.kmap
1444     hebrew.kmap
1445     koi8-r.kmap
1446     koi8-u.kmap
1447     latvian.kmap
1448     magyar-2.kmap
1449     magyar-3.kmap
1450     magyar.kmap
1451     null.kmap
1452     polish.kmap
1453     polski.kmap
1454     portuges.kmap
1455     romanian.kmap
1456     serbian.kmap
1457     serbocroatian.kmap
1458     sf.kmap
1459     sg.kmap
1460     slovak.kmap
1461     slovene.kmap
1462     thai-kedmanee.kmap
1463     transilvanian.kmap
1464     turkish-f.kmap
1465     turkish.kmap
1466 ''')
1467
1468
1469 lib_templates_files = Split('''
1470     IEEEtran.lyx
1471     README.new_templates
1472     aa.lyx
1473     aastex.lyx
1474     agu_article.lyx
1475     beamer-conference-ornate-20min.lyx
1476     biblioExample.bib
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     down.xpm
1567     ert-insert.xpm
1568     file-open.xpm
1569     float-insert_figure.xpm
1570     float-insert_table.xpm
1571     font-bold.xpm
1572     font-emph.xpm
1573     font-free-apply.xpm
1574     font-noun.xpm
1575     font-sans.xpm
1576     footnote-insert.xpm
1577     index-insert.xpm
1578     label-insert.xpm
1579     layout-document.xpm
1580     layout-paragraph.xpm
1581     layout.xpm
1582     layout_Description.xpm
1583     layout_Enumerate.xpm
1584     layout_Itemize.xpm
1585     layout_List.xpm
1586     layout_LyX-Code.xpm
1587     layout_Scrap.xpm
1588     layout_Section.xpm
1589     lyx-quit.xpm
1590     lyx.xpm
1591     marginalnote-insert.xpm
1592     math-display.xpm
1593     math-matrix.xpm
1594     math-mode.xpm
1595     math-subscript.xpm
1596     math-superscript.xpm
1597     nomencl-insert.xpm
1598     note-insert.xpm
1599     note-next.xpm
1600     paste.xpm
1601     psnfss1.xpm
1602     psnfss2.xpm
1603     psnfss3.xpm
1604     psnfss4.xpm
1605     redo.xpm
1606     standard.xpm
1607     tabular-feature_align-center.xpm
1608     tabular-feature_align-left.xpm
1609     tabular-feature_align-right.xpm
1610     tabular-feature_append-column.xpm
1611     tabular-feature_append-row.xpm
1612     tabular-feature_delete-column.xpm
1613     tabular-feature_delete-row.xpm
1614     tabular-feature_multicolumn.xpm
1615     tabular-feature_set-all-lines.xpm
1616     tabular-feature_set-longtabular.xpm
1617     tabular-feature_set-rotate-cell.xpm
1618     tabular-feature_set-rotate-tabular.xpm
1619     tabular-feature_toggle-line-bottom.xpm
1620     tabular-feature_toggle-line-left.xpm
1621     tabular-feature_toggle-line-right.xpm
1622     tabular-feature_toggle-line-top.xpm
1623     tabular-feature_unset-all-lines.xpm
1624     tabular-feature_valign-bottom.xpm
1625     tabular-feature_valign-middle.xpm
1626     tabular-feature_valign-top.xpm
1627     tabular-insert.xpm
1628     thesaurus-entry.xpm
1629     toc-view.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     cv.cls
2167     hollywood.cls
2168     lyxchess.sty
2169     lyxskak.sty
2170     revtex.cls
2171 ''')
2172
2173
2174 lib_doc_files = Split('''
2175     Customization.lyx
2176     DocStyle.lyx
2177     DummyDocument1.lyx
2178     DummyDocument2.lyx
2179     DummyTextDocument.txt
2180     EmbeddedObjects.lyx
2181     Extended.lyx
2182     FAQ.lyx
2183     Intro.lyx
2184     LaTeXConfig.lyx.in
2185     Reference.lyx
2186     Tutorial.lyx
2187     UserGuide.lyx
2188 ''')
2189
2190
2191 lib_doc_extra_files = Split('''
2192     ChangeLog
2193     Makefile.am
2194     Makefile.depend
2195     README.Documentation
2196     depend.py
2197     doc_toc.py
2198 ''')
2199
2200
2201 lib_doc_da_files = Split('''
2202     Intro.lyx
2203 ''')
2204
2205
2206 lib_doc_sk_files = Split('''
2207     Tutorial.lyx
2208     UserGuide.lyx
2209 ''')
2210
2211
2212 lib_doc_ro_files = Split('''
2213     Intro.lyx
2214 ''')
2215
2216
2217 lib_doc_fr_files = Split('''
2218     Customization.lyx
2219     Extended.lyx
2220     FAQ.lyx
2221     Intro.lyx
2222     Tutorial.lyx
2223     UserGuide.lyx
2224 ''')
2225
2226
2227 lib_doc_es_files = Split('''
2228     DocumentoPostizo1.lyx
2229     DocumentoPostizo2.lyx
2230     DocumentoTextoPostizo.txt
2231     EmbeddedObjects.lyx
2232     Extended.lyx
2233     Intro.lyx
2234     Tutorial.lyx
2235 ''')
2236
2237
2238 lib_doc_es_clipart_files = Split('''
2239     ComentNotaImagenQt4.png
2240     CuadroMinipagQt4.png
2241     DocumentoHijoQt4.png
2242     GrisNotaImagenQt4.png
2243     MaterialExternoQt4.png
2244     NotaEnmarcadaImg.png
2245     NotaLyXImagenQt4.png
2246     NotaSombreadaImg.png
2247     etiquetaQt4.png
2248     flotanteQt4.png
2249     notapieQt4.png
2250     referenciaQt4.png
2251 ''')
2252
2253
2254 lib_doc_sv_files = Split('''
2255     Intro.lyx
2256     Tutorial.lyx
2257 ''')
2258
2259
2260 lib_doc_ru_files = Split('''
2261     FAQ.lyx
2262     Intro.lyx
2263     Tutorial.lyx
2264 ''')
2265
2266
2267 lib_doc_it_files = Split('''
2268     Customization.lyx
2269     Intro.lyx
2270     Tutorial.lyx
2271     UserGuide.lyx
2272 ''')
2273
2274
2275 lib_doc_gl_extra_files = Split('''
2276     Intro.lyx
2277     Tutorial.lyx
2278 ''')
2279
2280
2281 lib_doc_eu_files = Split('''
2282     Customization.lyx
2283     Extended.lyx
2284     FAQ.lyx
2285     Intro.lyx
2286     Tutorial.lyx
2287     UserGuide.lyx
2288 ''')
2289
2290
2291 lib_doc_he_files = Split('''
2292     Intro.lyx
2293     Tutorial.lyx
2294 ''')
2295
2296
2297 lib_doc_hu_files = Split('''
2298     Intro.lyx
2299     Tutorial.lyx
2300 ''')
2301
2302
2303 lib_doc_clipart_files = Split('''
2304     BoxInsetDefaultQt4.png
2305     ChildDocumentQt4.png
2306     CommentNoteImageQt4.png
2307     ExternalMaterialQt4.png
2308     FramedNoteImageQt4.png
2309     GreyedOutNoteImageQt4.png
2310     LyXNoteImageQt4.png
2311     ShadedNoteImageQt4.png
2312     endnotes.pdf
2313     escher-lsd.eps
2314     floatQt4.png
2315     footnoteQt4.png
2316     labelQt4.png
2317     mobius.eps
2318     platypus.eps
2319     referenceQt4.png
2320     with_fntright.pdf
2321     without_fntright.pdf
2322 ''')
2323
2324
2325 lib_doc_cs_files = Split('''
2326     Tutorial.lyx
2327 ''')
2328
2329
2330 lib_doc_nb_files = Split('''
2331     Intro.lyx
2332 ''')
2333
2334
2335 lib_doc_pl_files = Split('''
2336     Extended.lyx
2337     Intro.lyx
2338     Tutorial.lyx
2339 ''')
2340
2341
2342 lib_doc_nl_files = Split('''
2343     Intro.lyx
2344     Tutorial.lyx
2345 ''')
2346
2347
2348 lib_doc_pt_files = Split('''
2349     Intro.lyx
2350     Tutorial.lyx
2351 ''')
2352
2353
2354 lib_doc_sl_files = Split('''
2355     Intro.lyx
2356     Tutorial.lyx
2357 ''')
2358
2359
2360 lib_doc_de_files = Split('''
2361     Customization.lyx
2362     Extended.lyx
2363     FAQ.lyx
2364     Intro.lyx
2365     Tutorial.lyx
2366     UserGuide.lyx
2367 ''')
2368
2369
2370 lib_examples_files = Split('''
2371     CV-image.eps
2372     CV-image.png
2373     Foils.lyx
2374     ItemizeBullets.lyx
2375     Literate.lyx
2376     Minipage.lyx
2377     TableExamples.lyx
2378     aa_sample.lyx
2379     aas_sample.lyx
2380     amsart-test.lyx
2381     amsbook-test.lyx
2382     beamer-g4-mask.jpg
2383     beamer-g4.jpg
2384     beamer-icsi-logo.pdf
2385     beamer-knight1-mask.png
2386     beamer-knight1.png
2387     beamer-knight2-mask.png
2388     beamer-knight2.png
2389     beamer-knight3-mask.png
2390     beamer-knight3.png
2391     beamer-knight4-mask.png
2392     beamer-knight4.png
2393     beamerlyxexample1.lyx
2394     chess-article.lyx
2395     chessgame.lyx
2396     currency.lyx
2397     cv.lyx
2398     docbook_article.lyx
2399     europeCV.lyx
2400     example_lyxified.lyx
2401     example_raw.lyx
2402     iecc05.fen
2403     iecc07.fen
2404     iecc12.fen
2405     landslide.lyx
2406     listerrors.lyx
2407     mathed.lyx
2408     modernCV.lyx
2409     multicol.lyx
2410     noweb2lyx.lyx
2411     script_form.lyx
2412     simplecv.lyx
2413     splash.lyx
2414 ''')
2415
2416
2417 lib_examples_da_files = Split('''
2418     splash.lyx
2419 ''')
2420
2421
2422 lib_examples_ro_files = Split('''
2423     splash.lyx
2424 ''')
2425
2426
2427 lib_examples_fr_files = Split('''
2428     AlignementDecimal.lyx
2429     CV.lyx
2430     ExemplesTableaux.lyx
2431     Foils.lyx
2432     ListesPuces.lyx
2433     Minipage.lyx
2434     exemple_brut.lyx
2435     exemple_lyxifie.lyx
2436     mathed.lyx
2437     multicol.lyx
2438     splash.lyx
2439 ''')
2440
2441
2442 lib_examples_es_files = Split('''
2443     ejemplo_con_lyx.lyx
2444     ejemplo_sin_lyx.lyx
2445     splash.lyx
2446 ''')
2447
2448
2449 lib_examples_ru_files = Split('''
2450     splash.lyx
2451 ''')
2452
2453
2454 lib_examples_it_files = Split('''
2455     ItemizeBullets.lyx
2456     splash.lyx
2457 ''')
2458
2459
2460 lib_examples_gl_extra_files = Split('''
2461     exemplo_bruto.lyx
2462     exemplo_lyxificado.lyx
2463     splash.lyx
2464 ''')
2465
2466
2467 lib_examples_eu_files = Split('''
2468     adibide_gordina.lyx
2469     adibide_lyx-atua.lyx
2470     splash.lyx
2471 ''')
2472
2473
2474 lib_examples_he_files = Split('''
2475     example_raw.lyx
2476     he_example_lyxified.lyx
2477     he_example_raw.lyx
2478 ''')
2479
2480
2481 lib_examples_ca_files = Split('''
2482     splash.lyx
2483 ''')
2484
2485
2486 lib_examples_hu_files = Split('''
2487     splash.lyx
2488 ''')
2489
2490
2491 lib_examples_hu_extra_files = Split('''
2492     example_lyxified.lyx
2493     example_raw.lyx
2494 ''')
2495
2496
2497 lib_examples_cs_files = Split('''
2498     splash.lyx
2499 ''')
2500
2501
2502 lib_examples_pl_files = Split('''
2503     splash.lyx
2504 ''')
2505
2506
2507 lib_examples_nl_files = Split('''
2508     multicol.lyx
2509     opsommingstekens.lyx
2510     splash.lyx
2511     voorbeeld_ruw.lyx
2512     voorbeeld_verlyxt.lyx
2513 ''')
2514
2515
2516 lib_examples_pt_files = Split('''
2517     splash.lyx
2518 ''')
2519
2520
2521 lib_examples_sl_files = Split('''
2522     primer_lyxan.lyx
2523     primer_surov.lyx
2524     splash.lyx
2525 ''')
2526
2527
2528 lib_examples_de_files = Split('''
2529     Dezimal.lyx
2530     ItemizeBullets.lyx
2531     Lebenslauf.lyx
2532     Minipage.lyx
2533     TableExamples.lyx
2534     Waehrungen.lyx
2535     beispiel_gelyxt.lyx
2536     beispiel_roh.lyx
2537     mathed.lyx
2538     multicol.lyx
2539     splash.lyx
2540 ''')
2541
2542
2543 lib_lyx2lyx_files = Split('''
2544     LyX.py
2545     generate_encoding_info.py
2546     lyx2lyx
2547     lyx2lyx_lang.py
2548     lyx_0_06.py
2549     lyx_0_08.py
2550     lyx_0_10.py
2551     lyx_0_12.py
2552     lyx_1_0.py
2553     lyx_1_1.py
2554     lyx_1_1_5.py
2555     lyx_1_1_6_0.py
2556     lyx_1_1_6_3.py
2557     lyx_1_2.py
2558     lyx_1_3.py
2559     lyx_1_4.py
2560     lyx_1_5.py
2561     parser_tools.py
2562     profiling.py
2563     test_parser_tools.py
2564 ''')
2565
2566
2567 lib_lyx2lyx_extra_files = Split('''
2568     ChangeLog
2569     Makefile.am
2570     lyx2lyx_version.py.in
2571 ''')
2572
2573
2574 lib_layouts_files = Split('''
2575     IEEEtran.layout
2576     aa.layout
2577     aapaper.inc
2578     aapaper.layout
2579     aastex.layout
2580     agu-dtd.layout
2581     agu_stdclass.inc
2582     agu_stdcounters.inc
2583     agu_stdlists.inc
2584     agu_stdsections.inc
2585     agu_stdtitle.inc
2586     agums.layout
2587     aguplus.inc
2588     amsart-plain.layout
2589     amsart-seq.layout
2590     amsart.layout
2591     amsbook.layout
2592     amsdefs.inc
2593     amsmaths-plain.inc
2594     amsmaths-seq.inc
2595     amsmaths.inc
2596     apa.layout
2597     arab-article.layout
2598     article.layout
2599     beamer.layout
2600     book.layout
2601     broadway.layout
2602     chess.layout
2603     cl2emult.layout
2604     cv.layout
2605     db_lyxmacros.inc
2606     db_stdcharstyles.inc
2607     db_stdclass.inc
2608     db_stdcounters.inc
2609     db_stdlayouts.inc
2610     db_stdlists.inc
2611     db_stdsections.inc
2612     db_stdstarsections.inc
2613     db_stdstruct.inc
2614     db_stdtitle.inc
2615     dinbrief.layout
2616     docbook-book.layout
2617     docbook-chapter.layout
2618     docbook-section.layout
2619     docbook.layout
2620     dtk.layout
2621     egs.layout
2622     elsart.layout
2623     entcs.layout
2624     europecv.layout
2625     extarticle.layout
2626     extbook.layout
2627     extletter.layout
2628     extreport.layout
2629     foils.layout
2630     g-brief-de.layout
2631     g-brief-en.layout
2632     g-brief2.layout
2633     heb-article.layout
2634     heb-letter.layout
2635     hollywood.layout
2636     ijmpc.layout
2637     ijmpd.layout
2638     isprs.layout
2639     jgrga.layout
2640     kluwer.layout
2641     latex8.layout
2642     letter.layout
2643     literate-article.layout
2644     literate-book.layout
2645     literate-report.layout
2646     literate-scrap.inc
2647     llncs.layout
2648     ltugboat.layout
2649     lyxmacros.inc
2650     manpage.layout
2651     memoir.layout
2652     moderncv.layout
2653     mwart.layout
2654     mwbk.layout
2655     mwrep.layout
2656     numarticle.inc
2657     numreport.inc
2658     numrevtex.inc
2659     paper.layout
2660     report.layout
2661     revtex.layout
2662     revtex4.layout
2663     scrartcl.layout
2664     scrbook.layout
2665     scrclass.inc
2666     scrlettr.layout
2667     scrlttr2.layout
2668     scrreprt.layout
2669     seminar.layout
2670     siamltex.layout
2671     simplecv.layout
2672     slides.layout
2673     spie.layout
2674     stdclass.inc
2675     stdcounters.inc
2676     stdfloats.inc
2677     stdlayouts.inc
2678     stdletter.inc
2679     stdlists.inc
2680     stdsections.inc
2681     stdstarsections.inc
2682     stdstruct.inc
2683     stdtitle.inc
2684     svglobal.layout
2685     svjog.layout
2686     svjour.inc
2687     svprobth.layout
2688 ''')
2689
2690
2691 lib_scripts_files = Split('''
2692     TeXFiles.py
2693     clean_dvi.py
2694     convertDefault.py
2695     date.py
2696     fen2ascii.py
2697     fig2pdftex.py
2698     fig2pstex.py
2699     fig_copy.py
2700     layout2layout.py
2701     legacy_lyxpreview2ppm.py
2702     listerrors
2703     lyxpreview2bitmap.py
2704     lyxpreview_tools.py
2705     tex_copy.py
2706 ''')
2707
2708
2709 lib_bind_files = Split('''
2710     aqua.bind
2711     broadway.bind
2712     cua.bind
2713     cyrkeys.bind
2714     emacs.bind
2715     greekkeys.bind
2716     hollywood.bind
2717     latinkeys.bind
2718     mac.bind
2719     math.bind
2720     menus.bind
2721     sciword.bind
2722     xemacs.bind
2723 ''')
2724
2725
2726 lib_bind_fi_files = Split('''
2727     menus.bind
2728 ''')
2729
2730
2731 lib_bind_sv_files = Split('''
2732     menus.bind
2733 ''')
2734
2735
2736 lib_bind_pt_files = Split('''
2737     menus.bind
2738 ''')
2739
2740
2741 lib_bind_de_files = Split('''
2742     menus.bind
2743 ''')
2744
2745
2746 boost_extra_files = Split('''
2747     ChangeLog
2748     LICENSE_1_0.txt
2749     Makefile.am
2750 ''')
2751
2752
2753 boost_libs_extra_files = Split('''
2754     Makefile.am
2755     README
2756 ''')
2757
2758
2759 boost_libs_signals_extra_files = Split('''
2760     Makefile.am
2761     signals.vcproj
2762 ''')
2763
2764
2765 boost_libs_signals_src_files = Split('''
2766     connection.cpp
2767     named_slot_map.cpp
2768     signal_base.cpp
2769     slot.cpp
2770     trackable.cpp
2771 ''')
2772
2773
2774 boost_libs_signals_src_extra_files = Split('''
2775     Makefile.am
2776     pch.h
2777 ''')
2778
2779
2780 boost_libs_regex_extra_files = Split('''
2781     Makefile.am
2782     regex.vcproj
2783 ''')
2784
2785
2786 boost_libs_regex_src_files = Split('''
2787     c_regex_traits.cpp
2788     cpp_regex_traits.cpp
2789     cregex.cpp
2790     fileiter.cpp
2791     instances.cpp
2792     posix_api.cpp
2793     regex.cpp
2794     regex_debug.cpp
2795     regex_raw_buffer.cpp
2796     regex_traits_defaults.cpp
2797     w32_regex_traits.cpp
2798     wide_posix_api.cpp
2799     winstances.cpp
2800 ''')
2801
2802
2803 boost_libs_regex_src_extra_files = Split('''
2804     Makefile.am
2805     pch.h
2806 ''')
2807
2808
2809 boost_libs_filesystem_extra_files = Split('''
2810     Makefile.am
2811     filesystem.vcproj
2812 ''')
2813
2814
2815 boost_libs_filesystem_src_files = Split('''
2816     exception.cpp
2817     operations.cpp
2818     path.cpp
2819     portability.cpp
2820 ''')
2821
2822
2823 boost_libs_filesystem_src_extra_files = Split('''
2824     Makefile.am
2825     pch.h
2826 ''')
2827
2828
2829 boost_libs_iostreams_extra_files = Split('''
2830     Makefile.am
2831 ''')
2832
2833
2834 boost_libs_iostreams_src_files = Split('''
2835     file_descriptor.cpp
2836     mapped_file.cpp
2837     zlib.cpp
2838 ''')
2839
2840
2841 boost_libs_iostreams_src_extra_files = Split('''
2842     Makefile.am
2843     pch.h
2844 ''')
2845
2846