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