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