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