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