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