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