]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
Fixed some lines that were too long. It compiled afterwards.
[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     README
1080     pch.h
1081 ''')
1082
1083
1084 src_frontends_qt4_ui_files = Split('''
1085     AboutUi.ui
1086     AskForTextUi.ui
1087     BibitemUi.ui
1088     BiblioUi.ui
1089     BibtexAddUi.ui
1090     BibtexUi.ui
1091     BoxUi.ui
1092     BranchUi.ui
1093     BranchesUi.ui
1094     BulletsUi.ui
1095     ChangesUi.ui
1096     CharacterUi.ui
1097     CitationUi.ui
1098     DelimiterUi.ui
1099     DocumentUi.ui
1100     ERTUi.ui
1101     ErrorListUi.ui
1102     ExternalUi.ui
1103     FloatPlacementUi.ui
1104     FloatUi.ui
1105     FontUi.ui
1106     GraphicsUi.ui
1107     IncludeUi.ui
1108     IndexUi.ui
1109     LaTeXUi.ui
1110     LanguageUi.ui
1111     ListingsUi.ui
1112     LogUi.ui
1113     MarginsUi.ui
1114     MathMatrixUi.ui
1115     MathsUi.ui
1116     NomenclUi.ui
1117     NoteUi.ui
1118     NumberingUi.ui
1119     PageLayoutUi.ui
1120     ParagraphUi.ui
1121     PreambleUi.ui
1122     PrefColorsUi.ui
1123     PrefConvertersUi.ui
1124     PrefCopiersUi.ui
1125     PrefCygwinPathUi.ui
1126     PrefDateUi.ui
1127     PrefDisplayUi.ui
1128     PrefFileformatsUi.ui
1129     PrefIdentityUi.ui
1130     PrefKeyboardUi.ui
1131     PrefLanguageUi.ui
1132     PrefLatexUi.ui
1133     PrefPathsUi.ui
1134     PrefPlaintextUi.ui
1135     PrefPrinterUi.ui
1136     PrefScreenFontsUi.ui
1137     PrefSpellcheckerUi.ui
1138     PrefUi.ui
1139     PrefsUi.ui
1140     PrintUi.ui
1141     RefUi.ui
1142     SearchUi.ui
1143     SendtoUi.ui
1144     ShowFileUi.ui
1145     SpellcheckerUi.ui
1146     TabularCreateUi.ui
1147     TabularUi.ui
1148     TexinfoUi.ui
1149     TextLayoutUi.ui
1150     ThesaurusUi.ui
1151     TocUi.ui
1152     URLUi.ui
1153     VSpaceUi.ui
1154     ViewSourceUi.ui
1155     WrapUi.ui
1156 ''')
1157
1158
1159 src_frontends_qt4_ui_extra_files = Split('''
1160     Makefile.am
1161     compile_uic.sh
1162 ''')
1163
1164
1165 src_insets_header_files = Split('''
1166     ExternalSupport.h
1167     ExternalTemplate.h
1168     ExternalTransforms.h
1169     Inset.h
1170     InsetBibitem.h
1171     InsetBibtex.h
1172     InsetBox.h
1173     InsetBranch.h
1174     InsetCaption.h
1175     InsetCharStyle.h
1176     InsetCitation.h
1177     InsetCollapsable.h
1178     InsetCommand.h
1179     InsetCommandParams.h
1180     InsetERT.h
1181     InsetEnvironment.h
1182     InsetExternal.h
1183     InsetFloat.h
1184     InsetFloatList.h
1185     InsetFoot.h
1186     InsetFootlike.h
1187     InsetGraphics.h
1188     InsetGraphicsParams.h
1189     InsetHFill.h
1190     InsetInclude.h
1191     InsetIndex.h
1192     InsetLabel.h
1193     InsetLine.h
1194     InsetListings.h
1195     InsetListingsParams.h
1196     InsetMarginal.h
1197     InsetNewline.h
1198     InsetNomencl.h
1199     InsetNote.h
1200     InsetOptArg.h
1201     InsetPagebreak.h
1202     InsetQuotes.h
1203     InsetRef.h
1204     InsetSpace.h
1205     InsetSpecialChar.h
1206     InsetTOC.h
1207     InsetTabular.h
1208     InsetText.h
1209     InsetUrl.h
1210     InsetVSpace.h
1211     InsetWrap.h
1212     MailInset.h
1213     RenderBase.h
1214     RenderButton.h
1215     RenderGraphic.h
1216     RenderPreview.h
1217 ''')
1218
1219
1220 src_insets_files = Split('''
1221     ExternalSupport.cpp
1222     ExternalTemplate.cpp
1223     ExternalTransforms.cpp
1224     Inset.cpp
1225     InsetBibitem.cpp
1226     InsetBibtex.cpp
1227     InsetBox.cpp
1228     InsetBranch.cpp
1229     InsetCaption.cpp
1230     InsetCharStyle.cpp
1231     InsetCitation.cpp
1232     InsetCollapsable.cpp
1233     InsetCommand.cpp
1234     InsetCommandParams.cpp
1235     InsetERT.cpp
1236     InsetEnvironment.cpp
1237     InsetExternal.cpp
1238     InsetFloat.cpp
1239     InsetFloatList.cpp
1240     InsetFoot.cpp
1241     InsetFootlike.cpp
1242     InsetGraphics.cpp
1243     InsetGraphicsParams.cpp
1244     InsetHFill.cpp
1245     InsetInclude.cpp
1246     InsetIndex.cpp
1247     InsetLabel.cpp
1248     InsetLine.cpp
1249     InsetListings.cpp
1250     InsetListingsParams.cpp
1251     InsetMarginal.cpp
1252     InsetNewline.cpp
1253     InsetNomencl.cpp
1254     InsetNote.cpp
1255     InsetOptArg.cpp
1256     InsetPagebreak.cpp
1257     InsetQuotes.cpp
1258     InsetRef.cpp
1259     InsetSpace.cpp
1260     InsetSpecialChar.cpp
1261     InsetTOC.cpp
1262     InsetTabular.cpp
1263     InsetText.cpp
1264     InsetUrl.cpp
1265     InsetVSpace.cpp
1266     InsetWrap.cpp
1267     MailInset.cpp
1268     RenderButton.cpp
1269     RenderGraphic.cpp
1270     RenderPreview.cpp
1271 ''')
1272
1273
1274 src_insets_extra_files = Split('''
1275     ChangeLog
1276     InsetTheorem.cpp
1277     InsetTheorem.h
1278     Makefile.am
1279     pch.h
1280 ''')
1281
1282
1283 intl_header_files = Split('''
1284     eval-plural.h
1285     gettextP.h
1286     gmo.h
1287     hash-string.h
1288     loadinfo.h
1289     localcharset.h
1290     os2compat.h
1291     plural-exp.h
1292     printf-args.h
1293     printf-parse.h
1294     relocatable.h
1295     vasnprintf.h
1296     vasnwprintf.h
1297     wprintf-parse.h
1298     xsize.h
1299 ''')
1300
1301
1302 intl_files = Split('''
1303     bindtextdom.c
1304     dcgettext.c
1305     dcigettext.c
1306     dcngettext.c
1307     dgettext.c
1308     dngettext.c
1309     explodename.c
1310     finddomain.c
1311     gettext.c
1312     intl-compat.c
1313     l10nflist.c
1314     langprefs.c
1315     loadmsgcat.c
1316     localcharset.c
1317     localealias.c
1318     localename.c
1319     log.c
1320     ngettext.c
1321     osdep.c
1322     plural-exp.c
1323     plural.c
1324     printf.c
1325     relocatable.c
1326     textdomain.c
1327 ''')
1328
1329
1330 intl_extra_files = Split('''
1331     ChangeLog
1332     VERSION
1333     config.charset
1334     libgnuintl.h.in
1335     locale.alias
1336     os2compat.c
1337     plural.y
1338     printf-args.c
1339     printf-parse.c
1340     ref-add.sin
1341     ref-del.sin
1342     vasnprintf.c
1343 ''')
1344
1345
1346 config_extra_files = Split('''
1347     ChangeLog
1348     Makefile.am
1349     common.am
1350     config.guess
1351     config.rpath
1352     config.sub
1353     depcomp
1354     install-sh
1355     libtool.m4
1356     ltmain.sh
1357     lyxinclude.m4
1358     missing
1359     mkinstalldirs
1360     pkg.m4
1361     py-compile
1362     qt4.m4
1363     spell.m4
1364 ''')
1365
1366
1367 sourcedoc_extra_files = Split('''
1368     Doxyfile.in
1369     Makefile.am
1370 ''')
1371
1372
1373 po_extra_files = Split('''
1374     ChangeLog
1375     LINGUAS
1376     Makefile.in.in
1377     Makevars
1378     POTFILES.in
1379     README
1380     Rules-quot
1381     bg.po
1382     boldquot.sed
1383     ca.po
1384     cs.po
1385     da.po
1386     de.po
1387     en@boldquot.header
1388     en@quot.header
1389     es.po
1390     eu.po
1391     fi.po
1392     fr.po
1393     gl.po
1394     he.po
1395     hu.po
1396     insert-header.sin
1397     it.po
1398     ja.po
1399     ko.po
1400     lyx_pot.py
1401     nb.po
1402     nl.po
1403     nn.po
1404     pl.po
1405     pocheck.pl
1406     postats.sh
1407     pt.po
1408     quot.sed
1409     remove-potcdate.sin
1410     ro.po
1411     ru.po
1412     sk.po
1413     sl.po
1414     sv.po
1415     tr.po
1416     wa.po
1417     zh_CN.po
1418     zh_TW.po
1419 ''')
1420
1421
1422 lib_files = Split('''
1423     CREDITS
1424     chkconfig.ltx
1425     configure.py
1426     encodings
1427     external_templates
1428     languages
1429     symbols
1430     syntax.default
1431     unicodesymbols
1432 ''')
1433
1434
1435 lib_extra_files = Split('''
1436     ChangeLog
1437     Makefile.am
1438     autocorrect
1439     build-listerrors
1440     generate_contributions.py
1441 ''')
1442
1443
1444 lib_kbd_files = Split('''
1445     american-2.kmap
1446     american.kmap
1447     arabic.kmap
1448     bg-bds-1251.kmap
1449     brazil.kmap
1450     brazil2.kmap
1451     czech-prg.kmap
1452     czech.kmap
1453     espanol.kmap
1454     european.kmap
1455     farsi.kmap
1456     francais.kmap
1457     french.kmap
1458     german-2.kmap
1459     german-3.kmap
1460     german.kmap
1461     greek.kmap
1462     hebrew.kmap
1463     koi8-r.kmap
1464     koi8-u.kmap
1465     latvian.kmap
1466     magyar-2.kmap
1467     magyar-3.kmap
1468     magyar.kmap
1469     null.kmap
1470     polish.kmap
1471     polski.kmap
1472     portuges.kmap
1473     romanian.kmap
1474     serbian.kmap
1475     serbocroatian.kmap
1476     sf.kmap
1477     sg.kmap
1478     slovak.kmap
1479     slovene.kmap
1480     thai-kedmanee.kmap
1481     transilvanian.kmap
1482     turkish-f.kmap
1483     turkish.kmap
1484 ''')
1485
1486
1487 lib_templates_files = Split('''
1488     IEEEtran.lyx
1489     README.new_templates
1490     aa.lyx
1491     aastex.lyx
1492     agu_article.lyx
1493     apa.lyx
1494     beamer-conference-ornate-20min.lyx
1495     de_beamer-conference-ornate-20min.lyx
1496     dinbrief.lyx
1497     docbook_article.lyx
1498     elsart.lyx
1499     fr_beamer-conference-ornate-20min.lyx
1500     g-brief-de.lyx
1501     g-brief-en.lyx
1502     g-brief2.lyx
1503     hollywood.lyx
1504     ijmpc.lyx
1505     ijmpd.lyx
1506     iop-article.lyx
1507     kluwer.lyx
1508     koma-letter2.lyx
1509     latex8.lyx
1510     letter.lyx
1511     revtex.lyx
1512     revtex4.lyx
1513     slides.lyx
1514 ''')
1515
1516
1517 lib_ui_files = Split('''
1518     classic.ui
1519     default.ui
1520     stdmenus.inc
1521     stdtoolbars.inc
1522 ''')
1523
1524
1525 lib_fonts_files = Split('''
1526     BaKoMaFontLicense.txt
1527     ReadmeBaKoMa4LyX.txt
1528     cmex10.ttf
1529     cmmi10.ttf
1530     cmr10.ttf
1531     cmsy10.ttf
1532     eufm10.ttf
1533     msam10.ttf
1534     msbm10.ttf
1535     wasy10.ttf
1536 ''')
1537
1538
1539 lib_images_files = Split('''
1540     all-changes-accept.xpm
1541     all-changes-reject.xpm
1542     amssymb.xpm
1543     banner.png
1544     bookmark-goto.xpm
1545     bookmark-save.xpm
1546     break-line.xpm
1547     buffer-close.xpm
1548     buffer-export_dvi.xpm
1549     buffer-export_latex.xpm
1550     buffer-export_pdf2.xpm
1551     buffer-export_ps.xpm
1552     buffer-export_text.xpm
1553     buffer-new.xpm
1554     buffer-reload.xpm
1555     buffer-update_dvi.xpm
1556     buffer-update_pdf2.xpm
1557     buffer-update_ps.xpm
1558     buffer-view_dvi.xpm
1559     buffer-view_pdf2.xpm
1560     buffer-view_ps.xpm
1561     buffer-write-as.xpm
1562     buffer-write.xpm
1563     build-program.xpm
1564     change-accept.xpm
1565     change-next.xpm
1566     change-reject.xpm
1567     changes-merge.xpm
1568     changes-output.xpm
1569     changes-track.xpm
1570     closetab.xpm
1571     copy.xpm
1572     cut.xpm
1573     demote.xpm
1574     depth-decrement.xpm
1575     depth-increment.xpm
1576     dialog-preferences.xpm
1577     dialog-show-new-inset_citation.xpm
1578     dialog-show-new-inset_graphics.xpm
1579     dialog-show-new-inset_include.xpm
1580     dialog-show-new-inset_ref.xpm
1581     dialog-show_character.xpm
1582     dialog-show_findreplace.xpm
1583     dialog-show_mathdelimiter.xpm
1584     dialog-show_mathmatrix.xpm
1585     dialog-show_print.xpm
1586     dialog-show_spellchecker.xpm
1587     dialog-toggle_toc.xpm
1588     down.xpm
1589     ert-insert.xpm
1590     file-open.xpm
1591     float-insert_figure.xpm
1592     float-insert_table.xpm
1593     font-bold.xpm
1594     font-emph.xpm
1595     font-free-apply.xpm
1596     font-noun.xpm
1597     font-sans.xpm
1598     footnote-insert.xpm
1599     index-insert.xpm
1600     label-insert.xpm
1601     layout-document.xpm
1602     layout-paragraph.xpm
1603     layout.xpm
1604     layout_Description.xpm
1605     layout_Enumerate.xpm
1606     layout_Itemize.xpm
1607     layout_List.xpm
1608     layout_LyX-Code.xpm
1609     layout_Scrap.xpm
1610     layout_Section.xpm
1611     lyx-quit.xpm
1612     lyx.xpm
1613     marginalnote-insert.xpm
1614     math-display.xpm
1615     math-matrix.xpm
1616     math-mode.xpm
1617     math-subscript.xpm
1618     math-superscript.xpm
1619     nomencl-insert.xpm
1620     note-insert.xpm
1621     note-next.xpm
1622     paste.xpm
1623     promote.xpm
1624     psnfss1.xpm
1625     psnfss2.xpm
1626     psnfss3.xpm
1627     psnfss4.xpm
1628     redo.xpm
1629     reload.xpm
1630     standard.xpm
1631     tabular-feature_align-center.xpm
1632     tabular-feature_align-left.xpm
1633     tabular-feature_align-right.xpm
1634     tabular-feature_append-column.xpm
1635     tabular-feature_append-row.xpm
1636     tabular-feature_delete-column.xpm
1637     tabular-feature_delete-row.xpm
1638     tabular-feature_multicolumn.xpm
1639     tabular-feature_set-all-lines.xpm
1640     tabular-feature_set-longtabular.xpm
1641     tabular-feature_set-rotate-cell.xpm
1642     tabular-feature_toggle-rotate-cell.xpm
1643     tabular-feature_set-rotate-tabular.xpm
1644     tabular-feature_toggle-rotate-tabular.xpm
1645     tabular-feature_toggle-line-bottom.xpm
1646     tabular-feature_toggle-line-left.xpm
1647     tabular-feature_toggle-line-right.xpm
1648     tabular-feature_toggle-line-top.xpm
1649     tabular-feature_unset-all-lines.xpm
1650     tabular-feature_valign-bottom.xpm
1651     tabular-feature_valign-middle.xpm
1652     tabular-feature_valign-top.xpm
1653     tabular-insert.xpm
1654     thesaurus-entry.xpm
1655     toolbar-toggle_math.xpm
1656     toolbar-toggle_math_panels.xpm
1657     toolbar-toggle_table.xpm
1658     undo.xpm
1659     unknown.xpm
1660     up.xpm
1661     url-insert.xpm
1662 ''')
1663
1664
1665 lib_images_extra_files = Split('''
1666     README
1667     font-smallcaps.xpm
1668 ''')
1669
1670
1671 lib_images_math_files = Split('''
1672     Bbbk.xpm
1673     Finv.xpm
1674     Game.xpm
1675     Im.xpm
1676     Lleftarrow.xpm
1677     Lsh.xpm
1678     Re.xpm
1679     Rrightarrow.xpm
1680     Rsh.xpm
1681     Vert.xpm
1682     Vvdash.xpm
1683     acute.xpm
1684     aleph.xpm
1685     alpha.xpm
1686     amalg.xpm
1687     angle.xpm
1688     approx.xpm
1689     approxeq.xpm
1690     asymp.xpm
1691     backepsilon.xpm
1692     backprime.xpm
1693     backsim.xpm
1694     backsimeq.xpm
1695     backslash.xpm
1696     bar.xpm
1697     bars.xpm
1698     barwedge.xpm
1699     because.xpm
1700     beta.xpm
1701     beth.xpm
1702     between.xpm
1703     bigcap.xpm
1704     bigcirc.xpm
1705     bigcup.xpm
1706     bigodot.xpm
1707     bigoplus.xpm
1708     bigotimes.xpm
1709     bigsqcup.xpm
1710     bigstar.xpm
1711     bigtriangledown.xpm
1712     bigtriangleup.xpm
1713     biguplus.xpm
1714     bigvee.xpm
1715     bigwedge.xpm
1716     blacklozenge.xpm
1717     blacksquare.xpm
1718     blacktriangle.xpm
1719     blacktriangledown.xpm
1720     blacktriangleleft.xpm
1721     blacktriangleright.xpm
1722     bot.xpm
1723     bowtie.xpm
1724     boxdot.xpm
1725     boxminus.xpm
1726     boxplus.xpm
1727     boxtimes.xpm
1728     breve.xpm
1729     bullet.xpm
1730     bumpeq.xpm
1731     bumpeq2.xpm
1732     cap.xpm
1733     cap2.xpm
1734     cases.xpm
1735     cdot.xpm
1736     cdots.xpm
1737     centerdot.xpm
1738     check.xpm
1739     chi.xpm
1740     circ.xpm
1741     circeq.xpm
1742     circlearrowleft.xpm
1743     circlearrowright.xpm
1744     circledS.xpm
1745     circledast.xpm
1746     circledcirc.xpm
1747     circleddash.xpm
1748     clubsuit.xpm
1749     complement.xpm
1750     cong.xpm
1751     coprod.xpm
1752     cup.xpm
1753     cup2.xpm
1754     curlyeqprec.xpm
1755     curlyeqsucc.xpm
1756     curlyvee.xpm
1757     curlywedge.xpm
1758     curvearrowleft.xpm
1759     curvearrowright.xpm
1760     dagger.xpm
1761     daleth.xpm
1762     dashleftarrow.xpm
1763     dashrightarrow.xpm
1764     dashv.xpm
1765     ddagger.xpm
1766     ddot.xpm
1767     ddots.xpm
1768     delim.xpm
1769     delta.xpm
1770     delta2.xpm
1771     diagdown.xpm
1772     diagup.xpm
1773     diamond.xpm
1774     diamondsuit.xpm
1775     digamma.xpm
1776     div.xpm
1777     divideontimes.xpm
1778     dot.xpm
1779     doteq.xpm
1780     doteqdot.xpm
1781     dotplus.xpm
1782     dotsint.xpm
1783     dotsintop.xpm
1784     doublebarwedge.xpm
1785     downarrow.xpm
1786     downarrow2.xpm
1787     downdownarrows.xpm
1788     downharpoonleft.xpm
1789     downharpoonright.xpm
1790     ell.xpm
1791     empty.xpm
1792     emptyset.xpm
1793     epsilon.xpm
1794     eqcirc.xpm
1795     eqslantgtr.xpm
1796     eqslantless.xpm
1797     equation.xpm
1798     equiv.xpm
1799     eta.xpm
1800     eth.xpm
1801     exists.xpm
1802     fallingdotseq.xpm
1803     flat.xpm
1804     font.xpm
1805     forall.xpm
1806     frac-square.xpm
1807     frac.xpm
1808     frown.xpm
1809     functions.xpm
1810     gamma.xpm
1811     gamma2.xpm
1812     geq.xpm
1813     geqq.xpm
1814     geqslant.xpm
1815     gg.xpm
1816     ggg.xpm
1817     gimel.xpm
1818     gnapprox.xpm
1819     gneq.xpm
1820     gneqq.xpm
1821     gnsim.xpm
1822     grave.xpm
1823     gtrapprox.xpm
1824     gtrdot.xpm
1825     gtreqless.xpm
1826     gtreqqless.xpm
1827     gtrless.xpm
1828     gtrsim.xpm
1829     gvertneqq.xpm
1830     hat.xpm
1831     hbar.xpm
1832     heartsuit.xpm
1833     hookleftarrow.xpm
1834     hookrightarrow.xpm
1835     hphantom.xpm
1836     hslash.xpm
1837     iiiint.xpm
1838     iiiintop.xpm
1839     iiint.xpm
1840     iiintop.xpm
1841     iint.xpm
1842     iintop.xpm
1843     imath.xpm
1844     in.xpm
1845     infty.xpm
1846     int.xpm
1847     intercal.xpm
1848     intop.xpm
1849     iota.xpm
1850     jmath.xpm
1851     kappa.xpm
1852     lambda.xpm
1853     lambda2.xpm
1854     langle.xpm
1855     lbrace.xpm
1856     lbrace_rbrace.xpm
1857     lbracket.xpm
1858     lbracket_rbracket.xpm
1859     lceil.xpm
1860     lceil_rceil.xpm
1861     ldots.xpm
1862     leftarrow.xpm
1863     leftarrow2.xpm
1864     leftarrowtail.xpm
1865     leftharpoondown.xpm
1866     leftharpoonup.xpm
1867     leftleftarrows.xpm
1868     leftrightarrow.xpm
1869     leftrightarrow2.xpm
1870     leftrightarrows.xpm
1871     leftrightharpoons.xpm
1872     leftrightsquigarrow.xpm
1873     leftthreetimes.xpm
1874     leq.xpm
1875     leqq.xpm
1876     leqslant.xpm
1877     lessapprox.xpm
1878     lessdot.xpm
1879     lesseqgtr.xpm
1880     lesseqqgtr.xpm
1881     lessgtr.xpm
1882     lesssim.xpm
1883     lfloor.xpm
1884     lfloor_rfloor.xpm
1885     ll.xpm
1886     llcorner.xpm
1887     lll.xpm
1888     lnapprox.xpm
1889     lneq.xpm
1890     lneqq.xpm
1891     lnsim.xpm
1892     longleftarrow.xpm
1893     longleftarrow2.xpm
1894     longleftrightarrow.xpm
1895     longleftrightarrow2.xpm
1896     longmapsto.xpm
1897     longrightarrow.xpm
1898     longrightarrow2.xpm
1899     looparrowleft.xpm
1900     looparrowright.xpm
1901     lozenge.xpm
1902     lparen.xpm
1903     lparen_rparen.xpm
1904     lrcorner.xpm
1905     ltimes.xpm
1906     lvertneqq.xpm
1907     mapsto.xpm
1908     mathbb_C.xpm
1909     mathbb_H.xpm
1910     mathbb_N.xpm
1911     mathbb_Q.xpm
1912     mathbb_R.xpm
1913     mathbb_Z.xpm
1914     mathcal_F.xpm
1915     mathcal_H.xpm
1916     mathcal_L.xpm
1917     mathcal_O.xpm
1918     mathcircumflex.xpm
1919     mathrm_T.xpm
1920     matrix.xpm
1921     measuredangle.xpm
1922     mho.xpm
1923     mid.xpm
1924     models.xpm
1925     mp.xpm
1926     mu.xpm
1927     multimap.xpm
1928     nabla.xpm
1929     natural.xpm
1930     ncong.xpm
1931     nearrow.xpm
1932     neg.xpm
1933     neq.xpm
1934     nexists.xpm
1935     ngeq.xpm
1936     ngeqq.xpm
1937     ngeqslant.xpm
1938     ngtr.xpm
1939     ni.xpm
1940     nleftarrow.xpm
1941     nleftarrow2.xpm
1942     nleftrightarrow.xpm
1943     nleftrightarrow2.xpm
1944     nleq.xpm
1945     nleqq.xpm
1946     nleqslant.xpm
1947     nless.xpm
1948     nmid.xpm
1949     notin.xpm
1950     nparallel.xpm
1951     nprec.xpm
1952     npreceq.xpm
1953     nrightarrow.xpm
1954     nrightarrow2.xpm
1955     nshortmid.xpm
1956     nshortparallel.xpm
1957     nsim.xpm
1958     nsubseteq.xpm
1959     nsucc.xpm
1960     nsucceq.xpm
1961     nsupseteq.xpm
1962     nsupseteqq.xpm
1963     ntriangleleft.xpm
1964     ntrianglelefteq.xpm
1965     ntriangleright.xpm
1966     ntrianglerighteq.xpm
1967     nu.xpm
1968     nvdash.xpm
1969     nvdash2.xpm
1970     nvdash3.xpm
1971     nwarrow.xpm
1972     odot.xpm
1973     oiint.xpm
1974     oiintop.xpm
1975     oint.xpm
1976     ointclockwise.xpm
1977     ointclockwiseop.xpm
1978     ointctrclockwise.xpm
1979     ointctrclockwiseop.xpm
1980     ointop.xpm
1981     omega.xpm
1982     omega2.xpm
1983     ominus.xpm
1984     oplus.xpm
1985     oslash.xpm
1986     otimes.xpm
1987     overbrace.xpm
1988     overleftarrow.xpm
1989     overleftrightarrow.xpm
1990     overline.xpm
1991     overrightarrow.xpm
1992     overset.xpm
1993     parallel.xpm
1994     partial.xpm
1995     perp.xpm
1996     phantom.xpm
1997     phi.xpm
1998     phi2.xpm
1999     pi.xpm
2000     pi2.xpm
2001     pitchfork.xpm
2002     pm.xpm
2003     prec.xpm
2004     precapprox.xpm
2005     preccurlyeq.xpm
2006     preceq.xpm
2007     precnapprox.xpm
2008     precnsim.xpm
2009     precsim.xpm
2010     prime.xpm
2011     prod.xpm
2012     propto.xpm
2013     psi.xpm
2014     psi2.xpm
2015     rangle.xpm
2016     rbrace.xpm
2017     rbracket.xpm
2018     rceil.xpm
2019     rfloor.xpm
2020     rho.xpm
2021     rightarrow.xpm
2022     rightarrow2.xpm
2023     rightarrowtail.xpm
2024     rightharpoondown.xpm
2025     rightharpoonup.xpm
2026     rightleftarrows.xpm
2027     rightleftharpoons.xpm
2028     rightrightarrows.xpm
2029     rightsquigarrow.xpm
2030     rightthreetimes.xpm
2031     risingdotseq.xpm
2032     root.xpm
2033     rparen.xpm
2034     rtimes.xpm
2035     searrow.xpm
2036     setminus.xpm
2037     sharp.xpm
2038     shortmid.xpm
2039     shortparallel.xpm
2040     sigma.xpm
2041     sigma2.xpm
2042     sim.xpm
2043     simeq.xpm
2044     slash.xpm
2045     smallfrown.xpm
2046     smallsetminus.xpm
2047     smallsmile.xpm
2048     smile.xpm
2049     space.xpm
2050     spadesuit.xpm
2051     sphericalangle.xpm
2052     sqcap.xpm
2053     sqcup.xpm
2054     sqiint.xpm
2055     sqiintop.xpm
2056     sqint.xpm
2057     sqintop.xpm
2058     sqrt-square.xpm
2059     sqrt.xpm
2060     sqsubset.xpm
2061     sqsubseteq.xpm
2062     sqsupset.xpm
2063     sqsupseteq.xpm
2064     square.xpm
2065     star.xpm
2066     style.xbm
2067     style.xpm
2068     sub.xpm
2069     subset.xpm
2070     subset2.xpm
2071     subseteq.xpm
2072     subseteqq.xpm
2073     subsetneq.xpm
2074     subsetneqq.xpm
2075     succ.xpm
2076     succapprox.xpm
2077     succcurlyeq.xpm
2078     succeq.xpm
2079     succnapprox.xpm
2080     succnsim.xpm
2081     succsim.xpm
2082     sum.xpm
2083     super.xpm
2084     supset.xpm
2085     supset2.xpm
2086     supseteq.xpm
2087     supseteqq.xpm
2088     supsetneq.xpm
2089     supsetneqq.xpm
2090     surd.xpm
2091     swarrow.xpm
2092     tau.xpm
2093     textrm_AA.xpm
2094     textrm_Oe.xpm
2095     therefore.xpm
2096     theta.xpm
2097     theta2.xpm
2098     thickapprox.xpm
2099     thicksim.xpm
2100     tilde.xpm
2101     times.xpm
2102     top.xpm
2103     triangle.xpm
2104     triangledown.xpm
2105     triangleleft.xpm
2106     trianglelefteq.xpm
2107     triangleq.xpm
2108     triangleright.xpm
2109     trianglerighteq.xpm
2110     twoheadleftarrow.xpm
2111     twoheadrightarrow.xpm
2112     ulcorner.xpm
2113     underbrace.xpm
2114     underleftarrow.xpm
2115     underleftrightarrow.xpm
2116     underline.xpm
2117     underrightarrow.xpm
2118     underscore.xpm
2119     underset.xpm
2120     uparrow.xpm
2121     uparrow2.xpm
2122     updownarrow.xpm
2123     updownarrow2.xpm
2124     upharpoonleft.xpm
2125     upharpoonright.xpm
2126     uplus.xpm
2127     upsilon.xpm
2128     upsilon2.xpm
2129     upuparrows.xpm
2130     urcorner.xpm
2131     varepsilon.xpm
2132     varkappa.xpm
2133     varnothing.xpm
2134     varphi.xpm
2135     varpi.xpm
2136     varpropto.xpm
2137     varrho.xpm
2138     varsigma.xpm
2139     varsubsetneq.xpm
2140     varsubsetneqq.xpm
2141     varsupsetneq.xpm
2142     varsupsetneqq.xpm
2143     vartheta.xpm
2144     vartriangle.xpm
2145     vartriangleleft.xpm
2146     vartriangleright.xpm
2147     vdash.xpm
2148     vdash2.xpm
2149     vdash3.xpm
2150     vdots.xpm
2151     vec.xpm
2152     vee.xpm
2153     veebar.xpm
2154     vphantom.xpm
2155     wedge.xpm
2156     widehat.xpm
2157     widetilde.xpm
2158     wp.xpm
2159     wr.xpm
2160     xi.xpm
2161     xi2.xpm
2162     zeta.xpm
2163 ''')
2164
2165
2166 lib_images_math_extra_files = Split('''
2167     ams_arrows.xbm
2168     ams_misc.xbm
2169     ams_nrel.xbm
2170     ams_ops.xbm
2171     ams_rel.xbm
2172     arrows.xbm
2173     bop.xbm
2174     brel.xbm
2175     deco.xbm
2176     deco.xpm
2177     delim.xbm
2178     delim0.xpm
2179     delim1.xpm
2180     dots.xbm
2181     font.xbm
2182     functions.xpm
2183     greek.xbm
2184     misc.xbm
2185     varsz.xbm
2186 ''')
2187
2188
2189 lib_images_attic_extra_files = Split('''
2190     dialog-show_mathpanel.xpm
2191 ''')
2192
2193
2194 lib_tex_files = Split('''
2195     broadway.cls
2196     hollywood.cls
2197     lyxchess.sty
2198     lyxskak.sty
2199     revtex.cls
2200 ''')
2201
2202
2203 lib_doc_files = Split('''
2204     Customization.lyx
2205     DocStyle.lyx
2206     DummyDocument1.lyx
2207     DummyDocument2.lyx
2208     DummyTextDocument.txt
2209     EmbeddedObjects.lyx
2210     Extended.lyx
2211     FAQ.lyx
2212     Intro.lyx
2213     LaTeXConfig.lyx.in
2214     Reference.lyx
2215     Tutorial.lyx
2216     UserGuide.lyx
2217 ''')
2218
2219
2220 lib_doc_biblio_files = Split('''
2221     alphadin.bst
2222     LyXDocs.bib
2223 ''')
2224
2225
2226 lib_doc_clipart_files = Split('''
2227     Abstract.pdf
2228     BoxInsetDefaultQt4.png
2229     ChildDocumentQt4.png
2230     CommentNoteImageQt4.png
2231     ERT.png
2232     ExternalMaterialQt4.png
2233     ExtraToolbar.png
2234     FramedNoteImageQt4.png
2235     GreyedOutNoteImageQt4.png
2236     LaTeX.png
2237     LyXNoteImageQt4.png
2238     ShadedNoteImageQt4.png
2239     SpaceMarker.png
2240     StandardToolbar.png
2241     ToolbarEnvBox.png
2242     endnotes.pdf
2243     escher-lsd.eps
2244     floatQt4.png
2245     footnoteQt4.png
2246     labelQt4.png
2247     macrobox.png
2248     macrouse.png
2249     mbox.png
2250     mobius.eps
2251     platypus.eps
2252     referenceQt4.png
2253     with_fntright.pdf
2254     without_fntright.pdf
2255 ''')
2256
2257
2258 lib_doc_extra_files = Split('''
2259     ChangeLog
2260     Makefile.am
2261     Makefile.depend
2262     README.Documentation
2263     depend.py
2264     doc_toc.py
2265 ''')
2266
2267
2268 lib_doc_cs_files = Split('''
2269     Tutorial.lyx
2270 ''')
2271
2272
2273 lib_doc_de_files = Split('''
2274     Customization.lyx
2275     DummyDocument1.lyx
2276     DummyDocument2.lyx
2277     DummyTextDocument.txt
2278     EmbeddedObjects.lyx
2279     Extended.lyx
2280     FAQ.lyx
2281     Intro.lyx
2282     Tutorial.lyx
2283     UserGuide.lyx
2284 ''')
2285
2286
2287 lib_doc_de_clipart_files = Split('''
2288     ExternesMaterialQt4.png
2289     FussnoteQt4.png
2290     GerahmteNotizQt4.png
2291     GleitobjektQt4.png
2292     GrauschriftNotizQt4.png
2293     KommentarQt4.png
2294     LyXNotizQt4.png
2295     Marke.png
2296     Querverweis.png
2297     SchattierteNotizQt4.png
2298     StandardBoxQt4.png
2299     UnterdokumentQt4.png
2300 ''')
2301
2302
2303 lib_doc_da_files = Split('''
2304     Intro.lyx
2305 ''')
2306
2307
2308 lib_doc_es_files = Split('''
2309     DocumentoPostizo1.lyx
2310     DocumentoPostizo2.lyx
2311     DocumentoTextoPostizo.txt
2312     EmbeddedObjects.lyx
2313     Extended.lyx
2314     Intro.lyx
2315     Tutorial.lyx
2316 ''')
2317
2318
2319 lib_doc_es_clipart_files = Split('''
2320     ComentNotaImagenQt4.png
2321     CuadroMinipagQt4.png
2322     DocumentoHijoQt4.png
2323     GrisNotaImagenQt4.png
2324     MaterialExternoQt4.png
2325     NotaEnmarcadaImg.png
2326     NotaLyXImagenQt4.png
2327     NotaSombreadaImg.png
2328     etiquetaQt4.png
2329     flotanteQt4.png
2330     notapieQt4.png
2331     referenciaQt4.png
2332 ''')
2333
2334
2335 lib_doc_eu_files = Split('''
2336     Customization.lyx
2337     Extended.lyx
2338     FAQ.lyx
2339     Intro.lyx
2340     Tutorial.lyx
2341     UserGuide.lyx
2342 ''')
2343
2344
2345 lib_doc_fr_files = Split('''
2346     Customization.lyx
2347     Extended.lyx
2348     FAQ.lyx
2349     Intro.lyx
2350     Tutorial.lyx
2351     UserGuide.lyx
2352 ''')
2353
2354
2355 lib_doc_gl_extra_files = Split('''
2356     Intro.lyx
2357     Tutorial.lyx
2358 ''')
2359
2360
2361 lib_doc_he_files = Split('''
2362     Intro.lyx
2363     Tutorial.lyx
2364 ''')
2365
2366
2367 lib_doc_hu_files = Split('''
2368     Intro.lyx
2369     Tutorial.lyx
2370 ''')
2371
2372
2373 lib_doc_it_files = Split('''
2374     Customization.lyx
2375     Intro.lyx
2376     Tutorial.lyx
2377     UserGuide.lyx
2378 ''')
2379
2380
2381 lib_doc_nb_files = Split('''
2382     Intro.lyx
2383 ''')
2384
2385
2386 lib_doc_nl_files = Split('''
2387     Intro.lyx
2388     Tutorial.lyx
2389 ''')
2390
2391
2392 lib_doc_pl_files = Split('''
2393     Extended.lyx
2394     Intro.lyx
2395     Tutorial.lyx
2396 ''')
2397
2398
2399 lib_doc_pt_files = Split('''
2400     Intro.lyx
2401     Tutorial.lyx
2402 ''')
2403
2404
2405 lib_doc_ro_files = Split('''
2406     Intro.lyx
2407 ''')
2408
2409
2410 lib_doc_ru_files = Split('''
2411     FAQ.lyx
2412     Intro.lyx
2413     Tutorial.lyx
2414 ''')
2415
2416
2417 lib_doc_sl_files = Split('''
2418     Intro.lyx
2419     Tutorial.lyx
2420 ''')
2421
2422
2423 lib_doc_sk_files = Split('''
2424     Tutorial.lyx
2425     UserGuide.lyx
2426 ''')
2427
2428
2429 lib_doc_sv_files = Split('''
2430     Intro.lyx
2431     Tutorial.lyx
2432 ''')
2433
2434
2435 lib_examples_files = Split('''
2436     CV-image.eps
2437     CV-image.png
2438     Foils.lyx
2439     ItemizeBullets.lyx
2440     Literate.lyx
2441     Minipage.lyx
2442     aa_sample.lyx
2443     aas_sample.lyx
2444     amsart-test.lyx
2445     amsbook-test.lyx
2446     armenian-article.lyx
2447     beamer-g4-mask.jpg
2448     beamer-g4.jpg
2449     beamer-icsi-logo.pdf
2450     beamer-knight1-mask.png
2451     beamer-knight1.png
2452     beamer-knight2-mask.png
2453     beamer-knight2.png
2454     beamer-knight3-mask.png
2455     beamer-knight3.png
2456     beamer-knight4-mask.png
2457     beamer-knight4.png
2458     beamerlyxexample1.lyx
2459     biblioExample.bib
2460     chess-article.lyx
2461     chessgame.lyx
2462     currency.lyx
2463     docbook_article.lyx
2464     europeCV.lyx
2465     example_lyxified.lyx
2466     example_raw.lyx
2467     iecc05.fen
2468     iecc07.fen
2469     iecc12.fen
2470     landslide.lyx
2471     listerrors.lyx
2472     listings.lyx
2473     mathed.lyx
2474     modernCV.lyx
2475     multicol.lyx
2476     noweb2lyx.lyx
2477     powerdot-example.lyx
2478     script_form.lyx
2479     simplecv.lyx
2480     splash.lyx
2481 ''')
2482
2483
2484 lib_examples_ca_files = Split('''
2485     splash.lyx
2486 ''')
2487
2488
2489 lib_examples_cs_files = Split('''
2490     splash.lyx
2491 ''')
2492
2493
2494 lib_examples_da_files = Split('''
2495     splash.lyx
2496 ''')
2497
2498
2499 lib_examples_de_files = Split('''
2500     Dezimal.lyx
2501     ItemizeBullets.lyx
2502     Lebenslauf.lyx
2503     Minipage.lyx
2504     TabellenBeispiel.lyx
2505     Waehrungen.lyx
2506     beispiel_gelyxt.lyx
2507     beispiel_roh.lyx
2508     mathed.lyx
2509     multicol.lyx
2510     splash.lyx
2511 ''')
2512
2513
2514 lib_examples_fa_files = Split('''
2515     splash.lyx
2516 ''')
2517
2518
2519 lib_examples_fr_files = Split('''
2520     AlignementDecimal.lyx
2521     simplecv.lyx
2522     ExemplesTableaux.lyx
2523     Foils.lyx
2524     ListesPuces.lyx
2525     Minipage.lyx
2526     exemple_brut.lyx
2527     exemple_lyxifie.lyx
2528     mathed.lyx
2529     multicol.lyx
2530     splash.lyx
2531 ''')
2532
2533
2534 lib_examples_es_files = Split('''
2535     ejemplo_con_lyx.lyx
2536     ejemplo_sin_lyx.lyx
2537     splash.lyx
2538 ''')
2539
2540
2541 lib_examples_eu_files = Split('''
2542     adibide_gordina.lyx
2543     adibide_lyx-atua.lyx
2544     splash.lyx
2545 ''')
2546
2547
2548 lib_examples_gl_extra_files = Split('''
2549     exemplo_bruto.lyx
2550     exemplo_lyxificado.lyx
2551     splash.lyx
2552 ''')
2553
2554
2555 lib_examples_he_files = Split('''
2556     example_lyxified.lyx
2557     example_raw.lyx
2558     splash.lyx
2559 ''')
2560
2561
2562 lib_examples_hu_files = Split('''
2563     example_lyxified.lyx
2564     example_raw.lyx
2565     splash.lyx
2566 ''')
2567
2568
2569 lib_examples_it_files = Split('''
2570     ItemizeBullets.lyx
2571     splash.lyx
2572 ''')
2573
2574
2575 lib_examples_nl_files = Split('''
2576     multicol.lyx
2577     opsommingstekens.lyx
2578     splash.lyx
2579     voorbeeld_ruw.lyx
2580     voorbeeld_verlyxt.lyx
2581 ''')
2582
2583
2584 lib_examples_pl_files = Split('''
2585     splash.lyx
2586 ''')
2587
2588
2589 lib_examples_pt_files = Split('''
2590     splash.lyx
2591 ''')
2592
2593
2594 lib_examples_ro_files = Split('''
2595     splash.lyx
2596 ''')
2597
2598
2599 lib_examples_ru_files = Split('''
2600     splash.lyx
2601 ''')
2602
2603
2604 lib_examples_sl_files = Split('''
2605     primer_lyxan.lyx
2606     primer_surov.lyx
2607     splash.lyx
2608 ''')
2609
2610
2611 lib_lyx2lyx_files = Split('''
2612     LyX.py
2613     generate_encoding_info.py
2614     lyx2lyx
2615     lyx2lyx_lang.py
2616     lyx_0_06.py
2617     lyx_0_08.py
2618     lyx_0_10.py
2619     lyx_0_12.py
2620     lyx_1_0.py
2621     lyx_1_1.py
2622     lyx_1_1_5.py
2623     lyx_1_1_6_0.py
2624     lyx_1_1_6_3.py
2625     lyx_1_2.py
2626     lyx_1_3.py
2627     lyx_1_4.py
2628     lyx_1_5.py
2629     parser_tools.py
2630     profiling.py
2631     test_parser_tools.py
2632 ''')
2633
2634
2635 lib_lyx2lyx_extra_files = Split('''
2636     ChangeLog
2637     Makefile.am
2638     lyx2lyx_version.py.in
2639 ''')
2640
2641
2642 lib_layouts_files = Split('''
2643     IEEEtran.layout
2644     aa.layout
2645     aapaper.layout
2646     aastex.layout
2647     agu-dtd.layout
2648     agums.layout
2649     amsart-plain.layout
2650     amsart-seq.layout
2651     amsart.layout
2652     amsbook.layout
2653     apa.layout
2654     arab-article.layout
2655     armenian-article.layout
2656     article.layout
2657     beamer.layout
2658     book.layout
2659     broadway.layout
2660     chess.layout
2661     cl2emult.layout
2662     dinbrief.layout
2663     docbook-book.layout
2664     docbook-chapter.layout
2665     docbook-section.layout
2666     docbook.layout
2667     dtk.layout
2668     egs.layout
2669     elsart.layout
2670     entcs.layout
2671     europecv.layout
2672     extarticle.layout
2673     extbook.layout
2674     extletter.layout
2675     extreport.layout
2676     foils.layout
2677     g-brief-de.layout
2678     g-brief-en.layout
2679     g-brief2.layout
2680     heb-article.layout
2681     heb-letter.layout
2682     hollywood.layout
2683     ijmpc.layout
2684     ijmpd.layout
2685     iopart.layout
2686     isprs.layout
2687     jgrga.layout
2688     kluwer.layout
2689     latex8.layout
2690     letter.layout
2691     literate-article.layout
2692     literate-book.layout
2693     literate-report.layout
2694     llncs.layout
2695     ltugboat.layout
2696     manpage.layout
2697     memoir.layout
2698     moderncv.layout
2699     mwart.layout
2700     mwbk.layout
2701     mwrep.layout
2702     paper.layout
2703     powerdot.layout
2704     report.layout
2705     revtex.layout
2706     revtex4.layout
2707     scrartcl.layout
2708     scrbook.layout
2709     scrlettr.layout
2710     scrlttr2.layout
2711     scrreprt.layout
2712     seminar.layout
2713     siamltex.layout
2714     simplecv.layout
2715     slides.layout
2716     spie.layout
2717     svglobal.layout
2718     svjog.layout
2719     svprobth.layout
2720 ''')
2721
2722
2723 lib_layouts_inc_files = Split('''
2724     aapaper.inc
2725     agu_stdclass.inc
2726     agu_stdcounters.inc
2727     agu_stdlists.inc
2728     agu_stdsections.inc
2729     agu_stdtitle.inc
2730     aguplus.inc
2731     amsdefs.inc
2732     amsmaths-plain.inc
2733     amsmaths-seq.inc
2734     amsmaths.inc
2735     db_lyxmacros.inc
2736     db_stdcharstyles.inc
2737     db_stdclass.inc
2738     db_stdcounters.inc
2739     db_stdlayouts.inc
2740     db_stdlists.inc
2741     db_stdsections.inc
2742     db_stdstarsections.inc
2743     db_stdstruct.inc
2744     db_stdtitle.inc
2745     literate-scrap.inc
2746     lyxmacros.inc
2747     numarticle.inc
2748     numreport.inc
2749     numrevtex.inc
2750     scrclass.inc
2751     stdclass.inc
2752     stdcounters.inc
2753     stdfloats.inc
2754     stdlayouts.inc
2755     stdletter.inc
2756     stdlists.inc
2757     stdsections.inc
2758     stdstarsections.inc
2759     stdstruct.inc
2760     stdtitle.inc
2761     svjour.inc
2762 ''')
2763
2764
2765 lib_scripts_files = Split('''
2766     TeXFiles.py
2767     clean_dvi.py
2768     convertDefault.py
2769     date.py
2770     ext_copy.py
2771     fen2ascii.py
2772     fig2pdftex.py
2773     fig2pstex.py
2774     fig_copy.py
2775     layout2layout.py
2776     legacy_lyxpreview2ppm.py
2777     listerrors
2778     lyxpreview2bitmap.py
2779     lyxpreview_tools.py
2780     tex_copy.py
2781 ''')
2782
2783
2784 lib_bind_files = Split('''
2785     aqua.bind
2786     broadway.bind
2787     cua.bind
2788     cyrkeys.bind
2789     emacs.bind
2790     greekkeys.bind
2791     hollywood.bind
2792     latinkeys.bind
2793     mac.bind
2794     math.bind
2795     menus.bind
2796     sciword.bind
2797     xemacs.bind
2798 ''')
2799
2800
2801 lib_bind_fi_files = Split('''
2802     menus.bind
2803 ''')
2804
2805
2806 lib_bind_sv_files = Split('''
2807     menus.bind
2808 ''')
2809
2810
2811 lib_bind_pt_files = Split('''
2812     menus.bind
2813 ''')
2814
2815
2816 lib_bind_de_files = Split('''
2817     menus.bind
2818 ''')
2819
2820
2821 boost_extra_files = Split('''
2822     ChangeLog
2823     LICENSE_1_0.txt
2824     Makefile.am
2825 ''')
2826
2827
2828 boost_libs_extra_files = Split('''
2829     Makefile.am
2830     README
2831 ''')
2832
2833
2834 boost_libs_signals_extra_files = Split('''
2835     Makefile.am
2836     signals.vcproj
2837 ''')
2838
2839
2840 boost_libs_signals_src_files = Split('''
2841     connection.cpp
2842     named_slot_map.cpp
2843     signal_base.cpp
2844     slot.cpp
2845     trackable.cpp
2846 ''')
2847
2848
2849 boost_libs_signals_src_extra_files = Split('''
2850     Makefile.am
2851     pch.h
2852 ''')
2853
2854
2855 boost_libs_regex_extra_files = Split('''
2856     Makefile.am
2857     regex.vcproj
2858 ''')
2859
2860
2861 boost_libs_regex_src_files = Split('''
2862     c_regex_traits.cpp
2863     cpp_regex_traits.cpp
2864     cregex.cpp
2865     fileiter.cpp
2866     instances.cpp
2867     posix_api.cpp
2868     regex.cpp
2869     regex_debug.cpp
2870     regex_raw_buffer.cpp
2871     regex_traits_defaults.cpp
2872     w32_regex_traits.cpp
2873     wide_posix_api.cpp
2874     winstances.cpp
2875 ''')
2876
2877
2878 boost_libs_regex_src_extra_files = Split('''
2879     Makefile.am
2880     pch.h
2881 ''')
2882
2883
2884 boost_libs_filesystem_extra_files = Split('''
2885     Makefile.am
2886     filesystem.vcproj
2887 ''')
2888
2889
2890 boost_libs_filesystem_src_files = Split('''
2891     exception.cpp
2892     operations.cpp
2893     path.cpp
2894     portability.cpp
2895 ''')
2896
2897
2898 boost_libs_filesystem_src_extra_files = Split('''
2899     Makefile.am
2900     pch.h
2901 ''')
2902
2903
2904 boost_libs_iostreams_extra_files = Split('''
2905     Makefile.am
2906 ''')
2907
2908
2909 boost_libs_iostreams_src_files = Split('''
2910     file_descriptor.cpp
2911     mapped_file.cpp
2912     zlib.cpp
2913 ''')
2914
2915
2916 boost_libs_iostreams_src_extra_files = Split('''
2917     Makefile.am
2918     pch.h
2919 ''')
2920
2921
2922 development_Win32_packaging_installer = Split('''
2923     license.rtf
2924     lyx.nsi
2925     settings.nsh
2926     settings.user.nsh
2927 ''')
2928
2929
2930 development_Win32_packaging_installer_components = Split('''
2931     configure.nsh
2932     core.nsh
2933     dicts.nsh
2934     external.nsh
2935     langselect.nsh
2936     reinstall.nsh
2937     uninstall.nsh
2938     user.nsh
2939     viewer.nsh
2940 ''')
2941
2942
2943 development_Win32_packaging_installer_dialogs = Split('''
2944     external.ini
2945     langselect.ini
2946     reinstall.ini
2947     user.ini
2948     viewer.ini
2949 ''')
2950
2951
2952 development_Win32_packaging_installer_graphics = Split('''
2953     header.bmp
2954     wizard.bmp
2955 ''')
2956
2957
2958 development_Win32_packaging_installer_include = Split('''
2959     declarations.nsh
2960     detection.nsh
2961     filelists.nsh
2962     gui.nsh
2963     init.nsh
2964     lang.nsh
2965     windows.nsh
2966 ''')
2967
2968
2969 development_Win32_packaging_installer_lang = Split('''
2970     english.nsh
2971     french.nsh
2972     german.nsh
2973     italian.nsh
2974 ''')
2975