]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
adjust
[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     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BiblioInfo.h
34     Bidi.h
35     Box.h
36     BranchList.h
37     Buffer.h
38     BufferList.h
39     BufferParams.h
40     BufferView.h
41     Bullet.h
42     Changes.h
43     Chktex.h
44     Color.h
45     Converter.h
46     ConverterCache.h
47     CoordCache.h
48     Counters.h
49     Cursor.h
50     CursorSlice.h
51     CutAndPaste.h
52     DepTable.h
53     Dimension.h
54     DispatchResult.h
55     DocIterator.h
56     EmbeddedFiles.h
57     Encoding.h
58     ErrorList.h
59     Exporter.h
60     FloatList.h
61     Floating.h
62     Font.h
63     FontIterator.h
64     Format.h
65     FuncRequest.h
66     FuncStatus.h
67     Graph.h
68     ISpell.h
69     Importer.h
70     InsetIterator.h
71     InsetList.h
72     Intl.h
73     KeyMap.h
74     KeySequence.h
75     LaTeX.h
76     LaTeXFeatures.h
77     Language.h
78     Layout.h
79     LayoutEnums.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     ModuleList.h
91     Mover.h
92     OutputParams.h
93     ParIterator.h
94     Paragraph.h
95     ParagraphList.h
96     ParagraphMetrics.h
97     ParagraphParameters.h
98     PDFOptions.h
99     PrinterParams.h
100     PSpell.h
101     Row.h
102     Section.h
103     Server.h
104     ServerSocket.h
105     Session.h
106     Spacing.h
107     SpellBase.h
108     TexRow.h
109     Text.h
110     TextClass.h
111     TextClassPtr.h
112     TextClassList.h
113     TextMetrics.h
114     Thesaurus.h
115     TocBackend.h
116     ToolbarBackend.h
117     Trans.h
118     Undo.h
119     VCBackend.h
120     VSpace.h
121     Variables.h
122     WordLangTuple.h
123     buffer_funcs.h
124     debug.h
125     factory.h
126     gettext.h
127     lengthcommon.h
128     lfuns.h
129     lyxfind.h
130     lyxlayout_ptr_fwd.h
131     output.h
132     output_docbook.h
133     output_latex.h
134     output_plaintext.h
135     paper.h
136     paragraph_funcs.h
137     rowpainter.h
138     sgml.h
139     update_flags.h
140     version.h
141 ''')
142
143
144 src_pre_files = Split('''
145     Author.cpp
146     BiblioInfo.cpp
147     Bidi.cpp
148     BranchList.cpp
149     Buffer.cpp
150     BufferList.cpp
151     BufferParams.cpp
152     BufferView.cpp
153     Bullet.cpp
154     Changes.cpp
155     Chktex.cpp
156     Color.cpp
157     Converter.cpp
158     ConverterCache.cpp
159     CoordCache.cpp
160     Counters.cpp
161     Cursor.cpp
162     CursorSlice.cpp
163     CutAndPaste.cpp
164     DepTable.cpp
165     DocIterator.cpp
166     EmbeddedFiles.cpp
167     Encoding.cpp
168     ErrorList.cpp
169     Exporter.cpp
170     FloatList.cpp
171     Floating.cpp
172     Font.cpp
173     FontIterator.cpp
174     Format.cpp
175     FuncRequest.cpp
176     FuncStatus.cpp
177     Graph.cpp
178     Importer.cpp
179     InsetIterator.cpp
180     InsetList.cpp
181     Intl.cpp
182     KeyMap.cpp
183     KeySequence.cpp
184     LaTeX.cpp
185     LaTeXFeatures.cpp
186     Language.cpp
187     Layout.cpp
188     Length.cpp
189     Lexer.cpp
190     LyX.cpp
191     LyXAction.cpp
192     LyXFunc.cpp
193     LyXRC.cpp
194     LyXVC.cpp
195     MenuBackend.cpp
196     Messages.cpp
197     MetricsInfo.cpp
198     Mover.cpp
199     OutputParams.cpp
200     PDFOptions.cpp
201     ParIterator.cpp
202     Paragraph.cpp
203     ParagraphMetrics.cpp
204     ParagraphParameters.cpp
205     Row.cpp
206     Server.cpp
207     ServerSocket.cpp
208     Session.cpp
209     Spacing.cpp
210     TexRow.cpp
211     Text.cpp
212     Text2.cpp
213     Text3.cpp
214     TextClass.cpp
215     TextClassList.cpp
216     TextMetrics.cpp
217     TocBackend.cpp
218     ToolbarBackend.cpp
219     Trans.cpp
220     Undo.cpp
221     VCBackend.cpp
222     VSpace.cpp
223     boost.cpp
224     buffer_funcs.cpp
225     debug.cpp
226     factory.cpp
227     gettext.cpp
228     lengthcommon.cpp
229     lyxfind.cpp
230     output.cpp
231     output_docbook.cpp
232     output_latex.cpp
233     output_plaintext.cpp
234     paragraph_funcs.cpp
235     rowpainter.cpp
236     sgml.cpp
237     version.cpp
238 ''')
239
240
241 src_post_files = Split('''
242     Box.cpp
243     Dimension.cpp
244     ModuleList.cpp
245     PrinterParams.cpp
246     SpellBase.cpp
247     Thesaurus.cpp
248 ''')
249
250
251 src_extra_src_files = Split('''
252     ASpell.cpp
253     ISpell.cpp
254     PSpell.cpp
255     Section.cpp
256     Variables.cpp
257     main.cpp
258 ''')
259
260
261 src_extra_files = Split('''
262     Makefile.am
263     pch.h
264 ''')
265
266
267 src_client_header_files = Split('''
268     Messages.h
269     debug.h
270 ''')
271
272
273 src_client_files = Split('''
274     Messages.cpp
275     boost.cpp
276     client.cpp
277     debug.cpp
278     gettext.cpp
279 ''')
280
281
282 src_client_extra_files = Split('''
283     Makefile.am
284     lyxclient.man
285     pch.h
286 ''')
287
288
289 src_support_header_files = Split('''
290     ExceptionMessage.h
291     FileFilterList.h
292     FileMonitor.h
293     FileName.h
294     ForkedCallQueue.h
295     Forkedcall.h
296     ForkedcallsController.h
297     Package.h
298     Path.h
299     RandomAccessList.h
300     Systemcall.h
301     Timeout.h
302     Translator.h
303     convert.h
304     copied_ptr.h
305     cow_ptr.h
306     debugstream.h
307     docstream.h
308     docstring.h
309     environment.h
310     filetools.h
311     fs_extras.h
312     gzstream.h
313     limited_stack.h
314     lstrings.h
315     lyxalgo.h
316     lyxlib.h
317     lyxmanip.h
318     lyxtime.h
319     os.h
320     os_win32.h
321     qstring_helpers.h
322     socktools.h
323     std_istream.h
324     std_ostream.h
325     textutils.h
326     types.h
327     unicode.h
328     userinfo.h
329 ''')
330
331
332 src_support_files = Split('''
333     FileFilterList.cpp
334     FileMonitor.cpp
335     FileName.cpp
336     ForkedCallQueue.cpp
337     Forkedcall.cpp
338     ForkedcallsController.cpp
339     Package.cpp
340     Path.cpp
341     Systemcall.cpp
342     Timeout.cpp
343     abort.cpp
344     chdir.cpp
345     convert.cpp
346     copy.cpp
347     docstream.cpp
348     docstring.cpp
349     environment.cpp
350     filetools.cpp
351     fs_extras.cpp
352     gzstream.cpp
353     getcwd.cpp
354     kill.cpp
355     lstrings.cpp
356     lyxsum.cpp
357     lyxtime.cpp
358     mkdir.cpp
359     os.cpp
360     qstring_helpers.cpp
361     rename.cpp
362     socktools.cpp
363     tempname.cpp
364     textutils.cpp
365     unicode.cpp
366     unlink.cpp
367     userinfo.cpp
368 ''')
369
370
371 src_support_extra_header_files = Split('''
372     
373 ''')
374
375
376 src_support_extra_src_files = Split('''
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     Makefile.am
387     pch.h
388 ''')
389
390
391 src_support_tests_extra_files = Split('''
392     Makefile.am
393     boost.cpp
394     convert.cpp
395     filetools.cpp
396     lstrings.cpp
397     pch.h
398     test_convert
399     test_filetools
400     test_lstrings
401 ''')
402
403
404 src_support_tests_regfiles_extra_files = Split('''
405     convert
406     filetools
407     lstrings
408 ''')
409
410
411 src_support_minizip_header_files = Split('''
412     crypt.h
413     ioapi.h 
414     iowin32.h
415     unzip.h
416     zip.h
417 ''')
418
419
420 src_support_minizip_files = Split('''
421     ioapi.c
422     iowin32.c
423     zip.c
424     zipunzip.cpp
425     unzip.c
426 ''')
427
428
429 src_graphics_header_files = Split('''
430     GraphicsCache.h
431     GraphicsCacheItem.h
432     GraphicsConverter.h
433     GraphicsImage.h
434     GraphicsLoader.h
435     GraphicsParams.h
436     GraphicsTypes.h
437     LoaderQueue.h
438     PreviewImage.h
439     PreviewLoader.h
440     Previews.h
441 ''')
442
443
444 src_graphics_files = Split('''
445     GraphicsCache.cpp
446     GraphicsCacheItem.cpp
447     GraphicsConverter.cpp
448     GraphicsImage.cpp
449     GraphicsLoader.cpp
450     GraphicsParams.cpp
451     GraphicsTypes.cpp
452     LoaderQueue.cpp
453     PreviewImage.cpp
454     PreviewLoader.cpp
455     Previews.cpp
456 ''')
457
458
459 src_graphics_extra_files = Split('''
460     Makefile.am
461     pch.h
462 ''')
463
464
465 src_mathed_header_files = Split('''
466     CommandInset.h
467     InsetMath.h
468     InsetMathAMSArray.h
469     InsetMathArray.h
470     InsetMathBig.h
471     InsetMathBinom.h
472     InsetMathBoldSymbol.h
473     InsetMathBox.h
474     InsetMathBoxed.h
475     InsetMathBrace.h
476     InsetMathCases.h
477     InsetMathChar.h
478     InsetMathColor.h
479     InsetMathComment.h
480     InsetMathDFrac.h
481     InsetMathDecoration.h
482     InsetMathDelim.h
483     InsetMathDiff.h
484     InsetMathDots.h
485     InsetMathEnv.h
486     InsetMathExFunc.h
487     InsetMathExInt.h
488     InsetMathFBox.h
489     InsetMathFont.h
490     InsetMathFontOld.h
491     InsetMathFrac.h
492     InsetMathFracBase.h
493     InsetMathFrameBox.h
494     InsetMathGrid.h
495     InsetMathHull.h
496     InsetMathKern.h
497     InsetMathLefteqn.h
498     InsetMathLim.h
499     InsetMathMakebox.h
500     InsetMathMatrix.h
501     InsetMathNest.h
502     InsetMathNumber.h
503     InsetMathOverset.h
504     InsetMathPar.h
505     InsetMathPhantom.h
506     InsetMathRef.h
507     InsetMathRoot.h
508     InsetMathScript.h
509     InsetMathSize.h
510     InsetMathSpace.h
511     InsetMathSplit.h
512     InsetMathSqrt.h
513     InsetMathStackrel.h
514     InsetMathString.h
515     InsetMathSubstack.h
516     InsetMathSymbol.h
517     InsetMathTFrac.h
518     InsetMathTabular.h
519     InsetMathUnderset.h
520     InsetMathUnknown.h
521     InsetMathXArrow.h
522     InsetMathXYMatrix.h
523     MacroTable.h
524     MathAtom.h
525     MathAutoCorrect.h
526     MathData.h
527     MathExtern.h
528     MathFactory.h
529     MathGridInfo.h
530     MathMacro.h
531     MathMacroArgument.h
532     MathMacroTemplate.h
533     MathParser.h
534     MathStream.h
535     MathSupport.h
536     ReplaceData.h
537     TextPainter.h
538 ''')
539
540
541 src_mathed_files = Split('''
542     CommandInset.cpp
543     InsetMath.cpp
544     InsetMathAMSArray.cpp
545     InsetMathArray.cpp
546     InsetMathBig.cpp
547     InsetMathBinom.cpp
548     InsetMathBoldSymbol.cpp
549     InsetMathBox.cpp
550     InsetMathBoxed.cpp
551     InsetMathBrace.cpp
552     InsetMathCases.cpp
553     InsetMathChar.cpp
554     InsetMathColor.cpp
555     InsetMathComment.cpp
556     InsetMathDFrac.cpp
557     InsetMathDecoration.cpp
558     InsetMathDelim.cpp
559     InsetMathDiff.cpp
560     InsetMathDots.cpp
561     InsetMathEnv.cpp
562     InsetMathExFunc.cpp
563     InsetMathExInt.cpp
564     InsetMathFBox.cpp
565     InsetMathFont.cpp
566     InsetMathFontOld.cpp
567     InsetMathFrac.cpp
568     InsetMathFracBase.cpp
569     InsetMathFrameBox.cpp
570     InsetMathGrid.cpp
571     InsetMathHull.cpp
572     InsetMathKern.cpp
573     InsetMathLefteqn.cpp
574     InsetMathLim.cpp
575     InsetMathMakebox.cpp
576     InsetMathMatrix.cpp
577     InsetMathNest.cpp
578     InsetMathNumber.cpp
579     InsetMathOverset.cpp
580     InsetMathPar.cpp
581     InsetMathPhantom.cpp
582     InsetMathRef.cpp
583     InsetMathRoot.cpp
584     InsetMathScript.cpp
585     InsetMathSize.cpp
586     InsetMathSpace.cpp
587     InsetMathSplit.cpp
588     InsetMathSqrt.cpp
589     InsetMathStackrel.cpp
590     InsetMathString.cpp
591     InsetMathSubstack.cpp
592     InsetMathSymbol.cpp
593     InsetMathTFrac.cpp
594     InsetMathTabular.cpp
595     InsetMathUnderset.cpp
596     InsetMathUnknown.cpp
597     InsetMathXArrow.cpp
598     InsetMathXYMatrix.cpp
599     MacroTable.cpp
600     MathAtom.cpp
601     MathAutoCorrect.cpp
602     MathData.cpp
603     MathExtern.cpp
604     MathFactory.cpp
605     MathMacro.cpp
606     MathMacroArgument.cpp
607     MathMacroTemplate.cpp
608     MathParser.cpp
609     MathStream.cpp
610     MathSupport.cpp
611     TextPainter.cpp
612 ''')
613
614
615 src_mathed_extra_files = Split('''
616     BUGS
617     InsetFormulaMacro.cpp
618     InsetFormulaMacro.h
619     InsetMathMBox.cpp
620     InsetMathMBox.h
621     InsetMathXYArrow.cpp
622     InsetMathXYArrow.h
623     Makefile.am
624     README
625     pch.h
626     texify
627 ''')
628
629
630 src_tex2lyx_header_files = Split('''
631     Context.h
632     Font.h
633     Parser.h
634     Spacing.h
635     tex2lyx.h
636 ''')
637
638
639 src_tex2lyx_files = Split('''
640     Context.cpp
641     Font.cpp
642     Parser.cpp
643     boost.cpp
644     gettext.cpp
645     lengthcommon.cpp
646     math.cpp
647     preamble.cpp
648     table.cpp
649     tex2lyx.cpp
650     text.cpp
651 ''')
652
653
654 src_tex2lyx_copied_files = Split('''
655     Color.cpp
656     Counters.cpp
657     FloatList.cpp
658     Floating.cpp
659     Layout.cpp
660     Lexer.cpp
661     TextClass.cpp
662 ''')
663
664
665 src_tex2lyx_extra_files = Split('''
666     Makefile.am
667     pch.h
668     test-insets.tex
669     test-structure.tex
670     test.ltx
671     tex2lyx.man
672 ''')
673
674
675 src_frontends_header_files = Split('''
676     Alert_pimpl.h
677     Application.h
678     Clipboard.h
679     Dialogs.h
680     FileDialog.h
681     FontLoader.h
682     FontMetrics.h
683     Gui.h
684     KeyModifier.h
685     KeySymbol.h
686     LyXView.h
687     NoGuiFontLoader.h
688     NoGuiFontMetrics.h
689     Painter.h
690     Selection.h
691     WorkArea.h
692     WorkAreaManager.h
693     alert.h
694     mouse_state.h
695 ''')
696
697
698 src_frontends_files = Split('''
699     Application.cpp
700     Dialogs.cpp
701     LyXView.cpp
702     Painter.cpp
703     WorkArea.cpp
704     WorkAreaManager.cpp
705     alert.cpp
706 ''')
707
708
709 src_frontends_extra_files = Split('''
710     Makefile.am
711     pch.h
712 ''')
713
714
715 src_frontends_controllers_extra_files = Split('''
716     Makefile.am
717     pch.h
718 ''')
719
720
721 src_frontends_controllers_tests_extra_files = Split('''
722     Makefile.am
723     biblio.cpp
724     boost.cpp
725     pch.h
726     test_biblio
727 ''')
728
729
730 src_frontends_controllers_tests_regfiles_extra_files = Split('''
731     biblio
732 ''')
733
734
735 src_frontends_qt4_header_files = Split('''
736                 ../ButtonPolicy.h
737                 ../Dialog.h
738                 ../frontend_helpers.h
739     Action.h
740     BulletsModule.h
741     ButtonController.h
742     ColorCache.h
743     DialogView.h
744     DockView.h
745     EmptyTable.h
746     FloatPlacement.h
747     GuiAbout.h
748     GuiApplication.h
749     GuiBibitem.h
750     GuiBibtex.h
751     GuiBox.h
752     GuiBranches.h
753     GuiBranch.h
754     GuiChanges.h
755     GuiCharacter.h
756     GuiCharacter.h
757     GuiCitation.h
758     GuiClipboard.h
759     GuiCommandBuffer.h
760     GuiCommandEdit.h
761     GuiDelimiter.h
762     GuiDialog.h
763     GuiDocument.h
764     GuiEmbeddedFiles.h
765     GuiErrorList.h
766     GuiERT.h
767     GuiExternal.h
768     GuiFloat.h
769     GuiFontExample.h
770     GuiFontLoader.h
771     GuiGraphics.h
772     GuiGraphicsUi.h
773     GuiHyperlink.h
774     GuiImage.h
775     GuiImplementation.h
776     GuiInclude.h
777     GuiIndex.h
778     GuiKeySymbol.h
779     GuiListings.h
780     GuiLog.h
781     GuiMath.h
782     GuiMathMatrix.h
783     GuiMenubar.h
784     GuiNomencl.h
785     GuiNote.h
786     GuiPainter.h
787     GuiParagraph.h
788     GuiPopupMenu.h
789     GuiPrefs.h
790     GuiPrint.h
791     GuiRef.h
792     GuiSearch.h
793     GuiSelection.h
794     GuiSelectionManager.h
795     GuiSendto.h
796     GuiSetBorder.h
797     GuiShowFile.h
798     GuiSpellchecker.h
799     GuiTabularCreate.h
800     GuiTabular.h
801     GuiTexinfo.h
802     GuiThesaurus.h
803     GuiToc.h
804     GuiToolbar.h
805     GuiToolbars.h
806     GuiView.h
807     GuiViewSource.h
808     GuiVSpace.h
809     GuiWorkArea.h
810     GuiWrap.h
811     IconPalette.h
812     InsertTableWidget.h
813     LaTeXHighlighter.h
814     LengthCombo.h
815     LyXFileDialog.h
816     PanelStack.h
817     TocModel.h
818     TocWidget.h
819     Validator.h
820     qlkey.h
821     qt_helpers.h
822 ''')
823
824
825 src_frontends_qt4_files = Split('''
826                 ../ButtonPolicy.cpp
827                 ../Dialog.cpp
828                 ../frontend_helpers.cpp
829     Action.cpp
830     BulletsModule.cpp
831     ButtonController.cpp
832     ColorCache.cpp
833     Dialogs.cpp
834     EmptyTable.cpp
835     FileDialog.cpp
836     FloatPlacement.cpp
837     GuiAbout.cpp
838     GuiApplication.cpp
839     GuiBibitem.cpp
840     GuiBibtex.cpp
841     GuiBox.cpp
842     GuiBranch.cpp
843     GuiBranches.cpp
844     GuiChanges.cpp
845     GuiCharacter.cpp
846     GuiCitation.cpp
847     GuiClipboard.cpp
848     GuiCommandBuffer.cpp
849     GuiCommandEdit.cpp
850     GuiDelimiter.cpp
851     GuiDialog.cpp
852     GuiDocument.cpp
853     GuiEmbeddedFiles.cpp
854     GuiErrorList.cpp
855     GuiERT.cpp
856     GuiExternal.cpp
857     GuiFloat.cpp
858     GuiFontExample.cpp
859     GuiFontLoader.cpp
860     GuiFontMetrics.cpp
861     GuiGraphics.cpp
862     GuiHyperlink.cpp
863     GuiImage.cpp
864     GuiImplementation.cpp
865     GuiInclude.cpp
866     GuiIndex.cpp
867     GuiKeySymbol.cpp
868     GuiListings.cpp
869     GuiLog.cpp
870     GuiMath.cpp
871     GuiMathMatrix.cpp
872     GuiMenubar.cpp
873     GuiNomencl.cpp
874     GuiNote.cpp
875     GuiPainter.cpp
876     GuiParagraph.cpp
877     GuiPopupMenu.cpp
878     GuiPrefs.cpp
879     GuiPrint.cpp
880     GuiRef.cpp
881     GuiSearch.cpp
882     GuiSelection.cpp
883     GuiSelectionManager.cpp
884     GuiSendto.cpp
885     GuiSetBorder.cpp
886     GuiShowFile.cpp
887     GuiSpellchecker.cpp
888     GuiTabular.cpp
889     GuiTabularCreate.cpp
890     GuiTexinfo.cpp
891     GuiThesaurus.cpp
892     GuiToc.cpp
893     GuiToolbar.cpp
894     GuiToolbars.cpp
895     GuiView.cpp
896     GuiViewSource.cpp
897     GuiVSpace.cpp
898     GuiWorkArea.cpp
899     GuiWrap.cpp
900     IconPalette.cpp
901     InsertTableWidget.cpp
902     LengthCombo.cpp
903     LaTeXHighlighter.cpp
904     LyXFileDialog.cpp
905     PanelStack.cpp
906     TocModel.cpp
907     TocWidget.cpp
908     Validator.cpp
909     alert_pimpl.cpp
910     qt_helpers.cpp
911 ''')
912
913
914 src_frontends_qt4_extra_files = Split('''
915     GuiFontMetrics.h
916     Makefile.am
917     README
918     pch.h
919 ''')
920
921
922 src_frontends_qt4_ui_files = Split('''
923     AboutUi.ui
924     AskForTextUi.ui
925     BibitemUi.ui
926     BiblioUi.ui
927     BibtexAddUi.ui
928     BibtexUi.ui
929     BoxUi.ui
930     BranchUi.ui
931     BranchesUi.ui
932     BulletsUi.ui
933     ChangesUi.ui
934     CharacterUi.ui
935     CitationUi.ui
936     DelimiterUi.ui
937     DocumentUi.ui
938     EmbeddedFilesUi.ui
939     ERTUi.ui
940     ErrorListUi.ui
941     ExternalUi.ui
942     FloatPlacementUi.ui
943     FloatUi.ui
944     FontUi.ui
945     GraphicsUi.ui
946     HyperlinkUi.ui
947     IncludeUi.ui
948     IndexUi.ui
949     LaTeXUi.ui
950     LanguageUi.ui
951     ListingsUi.ui
952     LogUi.ui
953     MarginsUi.ui
954     MathMatrixUi.ui
955     MathsUi.ui
956     NomenclUi.ui
957     NoteUi.ui
958     NumberingUi.ui
959     PageLayoutUi.ui
960     ParagraphUi.ui
961     PDFSupportUi.ui
962     PreambleUi.ui
963     PrefColorsUi.ui
964     PrefConvertersUi.ui
965     PrefCygwinPathUi.ui
966     PrefDateUi.ui
967     PrefDisplayUi.ui
968     PrefFileformatsUi.ui
969     PrefIdentityUi.ui
970     PrefKeyboardUi.ui
971     PrefLanguageUi.ui
972     PrefLatexUi.ui
973     PrefPathsUi.ui
974     PrefPlaintextUi.ui
975     PrefPrinterUi.ui
976     PrefScreenFontsUi.ui
977     PrefShortcutsUi.ui
978     PrefSpellcheckerUi.ui
979     PrefUi.ui
980     PrefsUi.ui
981     PrintUi.ui
982     RefUi.ui
983     SearchUi.ui
984     SendtoUi.ui
985     ShowFileUi.ui
986     SpellcheckerUi.ui
987     TabularCreateUi.ui
988     TabularUi.ui
989     TexinfoUi.ui
990     TextLayoutUi.ui
991     ThesaurusUi.ui
992     TocUi.ui
993     VSpaceUi.ui
994     ViewSourceUi.ui
995     WrapUi.ui
996 ''')
997
998
999 src_frontends_qt4_ui_extra_files = Split('''
1000     Makefile.am
1001     compile_uic.sh
1002 ''')
1003
1004
1005 src_insets_header_files = Split('''
1006     ExternalSupport.h
1007     ExternalTemplate.h
1008     ExternalTransforms.h
1009     Inset.h
1010     InsetBibitem.h
1011     InsetBibtex.h
1012     InsetBox.h
1013     InsetBranch.h
1014     InsetCaption.h
1015     InsetCitation.h
1016     InsetCode.h
1017     InsetCollapsable.h
1018     InsetCommand.h
1019     InsetCommandParams.h
1020     InsetERT.h
1021     InsetEnvironment.h
1022     InsetExternal.h
1023     InsetFlex.h
1024     InsetFloat.h
1025     InsetFloatList.h
1026     InsetFoot.h
1027     InsetFootlike.h
1028     InsetGraphics.h
1029     InsetGraphicsParams.h
1030     InsetHFill.h
1031     InsetHyperlink.h
1032     InsetInclude.h
1033     InsetIndex.h
1034     InsetInfo.h
1035     InsetLabel.h
1036     InsetLine.h
1037     InsetListings.h
1038     InsetListingsParams.h
1039     InsetMarginal.h
1040     InsetNewline.h
1041     InsetNomencl.h
1042     InsetNote.h
1043     InsetOptArg.h
1044     InsetPagebreak.h
1045     InsetQuotes.h
1046     InsetRef.h
1047     InsetSpace.h
1048     InsetSpecialChar.h
1049     InsetTOC.h
1050     InsetTabular.h
1051     InsetText.h
1052     InsetVSpace.h
1053     InsetWrap.h
1054     MailInset.h
1055     RenderBase.h
1056     RenderButton.h
1057     RenderGraphic.h
1058     RenderPreview.h
1059 ''')
1060
1061
1062 src_insets_files = Split('''
1063     ExternalSupport.cpp
1064     ExternalTemplate.cpp
1065     ExternalTransforms.cpp
1066     Inset.cpp
1067     InsetBibitem.cpp
1068     InsetBibtex.cpp
1069     InsetBox.cpp
1070     InsetBranch.cpp
1071     InsetCaption.cpp
1072     InsetCitation.cpp
1073     InsetCollapsable.cpp
1074     InsetCommand.cpp
1075     InsetCommandParams.cpp
1076     InsetERT.cpp
1077     InsetEnvironment.cpp
1078     InsetExternal.cpp
1079     InsetFlex.cpp
1080     InsetFloat.cpp
1081     InsetFloatList.cpp
1082     InsetFoot.cpp
1083     InsetFootlike.cpp
1084     InsetGraphics.cpp
1085     InsetGraphicsParams.cpp
1086     InsetHFill.cpp
1087     InsetHyperlink.cpp
1088     InsetInclude.cpp
1089     InsetIndex.cpp
1090     InsetInfo.cpp
1091     InsetLabel.cpp
1092     InsetLine.cpp
1093     InsetListings.cpp
1094     InsetListingsParams.cpp
1095     InsetMarginal.cpp
1096     InsetNewline.cpp
1097     InsetNomencl.cpp
1098     InsetNote.cpp
1099     InsetOptArg.cpp
1100     InsetPagebreak.cpp
1101     InsetQuotes.cpp
1102     InsetRef.cpp
1103     InsetSpace.cpp
1104     InsetSpecialChar.cpp
1105     InsetTOC.cpp
1106     InsetTabular.cpp
1107     InsetText.cpp
1108     InsetVSpace.cpp
1109     InsetWrap.cpp
1110     MailInset.cpp
1111     RenderButton.cpp
1112     RenderGraphic.cpp
1113     RenderPreview.cpp
1114 ''')
1115
1116
1117 src_insets_extra_files = Split('''
1118     InsetTheorem.cpp
1119     InsetTheorem.h
1120     Makefile.am
1121     pch.h
1122 ''')
1123
1124
1125 intl_header_files = Split('''
1126     eval-plural.h
1127     gettextP.h
1128     gmo.h
1129     hash-string.h
1130     loadinfo.h
1131     localcharset.h
1132     os2compat.h
1133     plural-exp.h
1134     printf-args.h
1135     printf-parse.h
1136     relocatable.h
1137     vasnprintf.h
1138     vasnwprintf.h
1139     wprintf-parse.h
1140     xsize.h
1141 ''')
1142
1143
1144 intl_files = Split('''
1145     bindtextdom.c
1146     dcgettext.c
1147     dcigettext.c
1148     dcngettext.c
1149     dgettext.c
1150     dngettext.c
1151     explodename.c
1152     finddomain.c
1153     gettext.c
1154     intl-compat.c
1155     l10nflist.c
1156     langprefs.c
1157     loadmsgcat.c
1158     localcharset.c
1159     localealias.c
1160     localename.c
1161     log.c
1162     ngettext.c
1163     osdep.c
1164     plural-exp.c
1165     plural.c
1166     printf.c
1167     relocatable.c
1168     textdomain.c
1169 ''')
1170
1171
1172 intl_extra_files = Split('''
1173     VERSION
1174     config.charset
1175     libgnuintl.h.in
1176     locale.alias
1177     os2compat.c
1178     plural.y
1179     printf-args.c
1180     printf-parse.c
1181     ref-add.sin
1182     ref-del.sin
1183     vasnprintf.c
1184 ''')
1185
1186
1187 config_extra_files = Split('''
1188     Makefile.am
1189     common.am
1190     config.guess
1191     config.rpath
1192     config.sub
1193     depcomp
1194     install-sh
1195     libtool.m4
1196     ltmain.sh
1197     lyxinclude.m4
1198     missing
1199     mkinstalldirs
1200     pkg.m4
1201     py-compile
1202     qt4.m4
1203     spell.m4
1204 ''')
1205
1206
1207 sourcedoc_extra_files = Split('''
1208     Doxyfile.in
1209     Makefile.am
1210 ''')
1211
1212
1213 po_extra_files = Split('''
1214     LINGUAS
1215     Makefile.in.in
1216     Makevars
1217     POTFILES.in
1218     README
1219     Rules-quot
1220     bg.po
1221     boldquot.sed
1222     ca.po
1223     cs.po
1224     da.po
1225     de.po
1226     en@boldquot.header
1227     en@quot.header
1228     es.po
1229     eu.po
1230     fi.po
1231     fr.po
1232     gl.po
1233     he.po
1234     hu.po
1235     insert-header.sin
1236     it.po
1237     ja.po
1238     ko.po
1239     lyx_pot.py
1240     nb.po
1241     nl.po
1242     nn.po
1243     pl.po
1244     pocheck.pl
1245     postats.sh
1246     pt.po
1247     quot.sed
1248     remove-potcdate.sin
1249     ro.po
1250     ru.po
1251     sk.po
1252     sl.po
1253     sv.po
1254     tr.po
1255     wa.po
1256     zh_CN.po
1257     zh_TW.po
1258 ''')
1259
1260
1261 lib_files = Split('''
1262     CREDITS
1263     chkconfig.ltx
1264     configure.py
1265     encodings
1266     external_templates
1267     languages
1268     symbols
1269     syntax.default
1270     unicodesymbols
1271 ''')
1272
1273
1274 lib_extra_files = Split('''
1275     Makefile.am
1276     autocorrect
1277     build-listerrors
1278     generate_contributions.py
1279 ''')
1280
1281
1282 lib_kbd_files = Split('''
1283     american-2.kmap
1284     american.kmap
1285     arabic.kmap
1286     bg-bds-1251.kmap
1287     brazil.kmap
1288     brazil2.kmap
1289     czech-prg.kmap
1290     czech.kmap
1291     espanol.kmap
1292     european.kmap
1293     farsi.kmap
1294     francais.kmap
1295     french.kmap
1296     german-2.kmap
1297     german-3.kmap
1298     german.kmap
1299     greek.kmap
1300     hebrew.kmap
1301     koi8-r.kmap
1302     koi8-u.kmap
1303     latvian.kmap
1304     magyar-2.kmap
1305     magyar-3.kmap
1306     magyar.kmap
1307     null.kmap
1308     polish.kmap
1309     polski.kmap
1310     portuges.kmap
1311     romanian.kmap
1312     serbian.kmap
1313     serbocroatian.kmap
1314     sf.kmap
1315     sg.kmap
1316     slovak.kmap
1317     slovene.kmap
1318     thai-kedmanee.kmap
1319     transilvanian.kmap
1320     turkish-f.kmap
1321     turkish.kmap
1322 ''')
1323
1324
1325 lib_templates_files = Split('''
1326     IEEEtran.lyx
1327     README.new_templates
1328     aa.lyx
1329     aastex.lyx
1330     agu_article.lyx
1331     apa.lyx
1332     beamer-conference-ornate-20min.lyx
1333     de_beamer-conference-ornate-20min.lyx
1334     dinbrief.lyx
1335     docbook_article.lyx
1336     elsart.lyx
1337     fr_beamer-conference-ornate-20min.lyx
1338     g-brief-de.lyx
1339     g-brief-en.lyx
1340     g-brief2.lyx
1341     hollywood.lyx
1342     ijmpc.lyx
1343     ijmpd.lyx
1344     iop-article.lyx
1345     kluwer.lyx
1346     koma-letter2.lyx
1347     latex8.lyx
1348     letter.lyx
1349     revtex.lyx
1350     revtex4.lyx
1351     slides.lyx
1352 ''')
1353
1354
1355 lib_ui_files = Split('''
1356     classic.ui
1357     default.ui
1358     stdmenus.inc
1359     stdtoolbars.inc
1360 ''')
1361
1362
1363 lib_fonts_files = Split('''
1364     BaKoMaFontLicense.txt
1365     ReadmeBaKoMa4LyX.txt
1366     cmex10.ttf
1367     cmmi10.ttf
1368     cmr10.ttf
1369     cmsy10.ttf
1370     esint10.ttf
1371     eufm10.ttf
1372     msam10.ttf
1373     msbm10.ttf
1374     wasy10.ttf
1375 ''')
1376
1377
1378
1379 lib_images_extra_files = Split('''
1380     README
1381     font-smallcaps.png
1382 ''')
1383
1384
1385 lib_images_math_extra_files = Split('''
1386     ams_arrows.png
1387     ams_misc.png
1388     ams_nrel.png
1389     ams_ops.png
1390     ams_rel.png
1391     arrows.png
1392     bop.png
1393     brel.png
1394     deco.png
1395     deco.png
1396     delim.png
1397     delim0.png
1398     delim1.png
1399     dots.png
1400     font.png
1401     functions.png
1402     greek.png
1403     misc.png
1404     varsz.png
1405 ''')
1406
1407
1408 lib_images_attic_extra_files = Split('''
1409     dialog-show_mathpanel.png
1410 ''')
1411
1412
1413 lib_tex_files = Split('''
1414     broadway.cls
1415     hollywood.cls
1416     lyxchess.sty
1417     lyxskak.sty
1418     revtex.cls
1419 ''')
1420
1421
1422 lib_doc_files = Split('''
1423     Customization.lyx
1424     DocStyle.lyx
1425     DummyDocument1.lyx
1426     DummyDocument2.lyx
1427     DummyTextDocument.txt
1428     EmbeddedObjects.lyx
1429     Extended.lyx
1430     FAQ.lyx
1431     Intro.lyx
1432     LaTeXConfig.lyx
1433     Reference.lyx
1434     Shortcuts.lyx
1435     Tutorial.lyx
1436     UserGuide.lyx
1437 ''')
1438
1439
1440 lib_doc_biblio_files = Split('''
1441     alphadin.bst
1442     LyXDocs.bib
1443 ''')
1444
1445
1446 lib_doc_clipart_files = Split('''
1447     Abstract.pdf
1448     BoxInsetDefaultQt4.png
1449     ChangesToolbar.png
1450     ChildDocumentQt4.png
1451     CommentNoteImageQt4.png
1452     ERT.png
1453     ExternalMaterialQt4.png
1454     ExtraToolbar.png
1455     FramedNoteImageQt4.png
1456     GreyedOutNoteImageQt4.png
1457     LaTeX.png
1458     LyXNoteImageQt4.png
1459     ShadedNoteImageQt4.png
1460     SpaceMarker.png
1461     StandardToolbar.png
1462     ToolbarEnvBox.png
1463     endnotes.pdf
1464     escher-lsd.eps
1465     floatQt4.png
1466     footnoteQt4.png
1467     labelQt4.png
1468     macrobox.png
1469     macrouse.png
1470     mbox.png
1471     mobius.eps
1472     platypus.eps
1473     referenceQt4.png
1474     ViewToolbar.png
1475     with_fntright.pdf
1476     without_fntright.pdf
1477 ''')
1478
1479
1480 lib_doc_extra_files = Split('''
1481     Makefile.am
1482     Makefile.depend
1483     README.Documentation
1484     depend.py
1485     doc_toc.py
1486 ''')
1487
1488
1489 lib_doc_cs_files = Split('''
1490     Tutorial.lyx
1491 ''')
1492
1493
1494 lib_doc_de_files = Split('''
1495     Customization.lyx
1496     DummyDocument1.lyx
1497     DummyDocument2.lyx
1498     DummyTextDocument.txt
1499     EmbeddedObjects.lyx
1500     Extended.lyx
1501     FAQ.lyx
1502     Intro.lyx
1503     Tutorial.lyx
1504     UserGuide.lyx
1505 ''')
1506
1507
1508 lib_doc_de_clipart_files = Split('''
1509     ExternesMaterialQt4.png
1510     FussnoteQt4.png
1511     GerahmteNotizQt4.png
1512     GleitobjektQt4.png
1513     GrauschriftNotizQt4.png
1514     KommentarQt4.png
1515     LyXNotizQt4.png
1516     Marke.png
1517     Querverweis.png
1518     SchattierteNotizQt4.png
1519     StandardBoxQt4.png
1520     UnterdokumentQt4.png
1521 ''')
1522
1523
1524 lib_doc_da_files = Split('''
1525     Intro.lyx
1526 ''')
1527
1528
1529 lib_doc_es_files = Split('''
1530     DocumentoPostizo1.lyx
1531     DocumentoPostizo2.lyx
1532     DocumentoTextoPostizo.txt
1533     EmbeddedObjects.lyx
1534     Extended.lyx
1535     Intro.lyx
1536     Tutorial.lyx
1537     UserGuide.lyx
1538 ''')
1539
1540
1541 lib_doc_es_biblio_files = Split('''
1542     alphadin.bst
1543     LyXDocs.bib
1544 ''')
1545
1546
1547 lib_doc_es_clipart_files = Split('''
1548     ComentNotaImagenQt4.png
1549     CuadroMinipagQt4.png
1550     DocumentoHijoQt4.png
1551     GrisNotaImagenQt4.png
1552     MaterialExternoQt4.png
1553     NotaEnmarcadaImg.png
1554     NotaLyXImagenQt4.png
1555     NotaSombreadaImg.png
1556     Resumen.pdf
1557     es_ERT.png
1558     etiquetaQt4.png
1559     flotanteQt4.png
1560     notapieQt4.png
1561     referenciaQt4.png
1562 ''')
1563
1564
1565 lib_doc_eu_files = Split('''
1566     Customization.lyx
1567     Extended.lyx
1568     FAQ.lyx
1569     Intro.lyx
1570     Tutorial.lyx
1571     UserGuide.lyx
1572 ''')
1573
1574
1575 lib_doc_fr_files = Split('''
1576     Customization.lyx
1577     Extended.lyx
1578     FAQ.lyx
1579     Intro.lyx
1580     Tutorial.lyx
1581     UserGuide.lyx
1582 ''')
1583
1584
1585 lib_doc_gl_extra_files = Split('''
1586     Intro.lyx
1587     Tutorial.lyx
1588 ''')
1589
1590
1591 lib_doc_he_files = Split('''
1592     Intro.lyx
1593     Tutorial.lyx
1594 ''')
1595
1596
1597 lib_doc_hu_files = Split('''
1598     Intro.lyx
1599     Tutorial.lyx
1600 ''')
1601
1602
1603 lib_doc_it_files = Split('''
1604     Customization.lyx
1605     Intro.lyx
1606     Tutorial.lyx
1607     UserGuide.lyx
1608 ''')
1609
1610
1611 lib_doc_nb_files = Split('''
1612     Intro.lyx
1613 ''')
1614
1615
1616 lib_doc_nl_files = Split('''
1617     Intro.lyx
1618     Tutorial.lyx
1619 ''')
1620
1621
1622 lib_doc_pl_files = Split('''
1623     Extended.lyx
1624     Intro.lyx
1625     Tutorial.lyx
1626 ''')
1627
1628
1629 lib_doc_pt_files = Split('''
1630     Intro.lyx
1631     Tutorial.lyx
1632 ''')
1633
1634
1635 lib_doc_ro_files = Split('''
1636     Intro.lyx
1637 ''')
1638
1639
1640 lib_doc_ru_files = Split('''
1641     FAQ.lyx
1642     Intro.lyx
1643     Tutorial.lyx
1644 ''')
1645
1646
1647 lib_doc_sl_files = Split('''
1648     Intro.lyx
1649     Tutorial.lyx
1650 ''')
1651
1652
1653 lib_doc_sk_files = Split('''
1654     Tutorial.lyx
1655     UserGuide.lyx
1656 ''')
1657
1658
1659 lib_doc_sv_files = Split('''
1660     Intro.lyx
1661     Tutorial.lyx
1662 ''')
1663
1664
1665 lib_examples_files = Split('''
1666     CV-image.eps
1667     CV-image.png
1668     Foils.lyx
1669     ItemizeBullets.lyx
1670     Literate.lyx
1671     Minipage.lyx
1672     aa_sample.lyx
1673     aas_sample.lyx
1674     amsart-test.lyx
1675     amsbook-test.lyx
1676     armenian-article.lyx
1677     beamer-g4-mask.jpg
1678     beamer-g4.jpg
1679     beamer-icsi-logo.pdf
1680     beamer-knight1-mask.png
1681     beamer-knight1.png
1682     beamer-knight2-mask.png
1683     beamer-knight2.png
1684     beamer-knight3-mask.png
1685     beamer-knight3.png
1686     beamer-knight4-mask.png
1687     beamer-knight4.png
1688     beamerlyxexample1.lyx
1689     biblioExample.bib
1690     chess-article.lyx
1691     chessgame.lyx
1692     currency.lyx
1693     docbook_article.lyx
1694     europeCV.lyx
1695     example_lyxified.lyx
1696     example_raw.lyx
1697     iecc05.fen
1698     iecc07.fen
1699     iecc12.fen
1700     landslide.lyx
1701     listerrors.lyx
1702     listings.lyx
1703     mathed.lyx
1704     modernCV.lyx
1705     multicol.lyx
1706     noweb2lyx.lyx
1707     powerdot-example.lyx
1708     script_form.lyx
1709     simplecv.lyx
1710     splash.lyx
1711 ''')
1712
1713
1714 lib_examples_ca_files = Split('''
1715     splash.lyx
1716 ''')
1717
1718
1719 lib_examples_cs_files = Split('''
1720     splash.lyx
1721 ''')
1722
1723
1724 lib_examples_da_files = Split('''
1725     splash.lyx
1726 ''')
1727
1728
1729 lib_examples_de_files = Split('''
1730     Dezimal.lyx
1731     ItemizeBullets.lyx
1732     Lebenslauf.lyx
1733     Minipage.lyx
1734     TabellenBeispiel.lyx
1735     Waehrungen.lyx
1736     beispiel_gelyxt.lyx
1737     beispiel_roh.lyx
1738     mathed.lyx
1739     multicol.lyx
1740     splash.lyx
1741 ''')
1742
1743
1744 lib_examples_fa_files = Split('''
1745     splash.lyx
1746 ''')
1747
1748
1749 lib_examples_fr_files = Split('''
1750     AlignementDecimal.lyx
1751     simplecv.lyx
1752     ExemplesTableaux.lyx
1753     Foils.lyx
1754     ListesPuces.lyx
1755     Minipage.lyx
1756     exemple_brut.lyx
1757     exemple_lyxifie.lyx
1758     mathed.lyx
1759     multicol.lyx
1760     splash.lyx
1761 ''')
1762
1763
1764 lib_examples_es_files = Split('''
1765     ejemplo_con_lyx.lyx
1766     ejemplo_sin_lyx.lyx
1767     splash.lyx
1768 ''')
1769
1770
1771 lib_examples_eu_files = Split('''
1772     adibide_gordina.lyx
1773     adibide_lyx-atua.lyx
1774     splash.lyx
1775 ''')
1776
1777
1778 lib_examples_gl_extra_files = Split('''
1779     exemplo_bruto.lyx
1780     exemplo_lyxificado.lyx
1781     splash.lyx
1782 ''')
1783
1784
1785 lib_examples_he_files = Split('''
1786     example_lyxified.lyx
1787     example_raw.lyx
1788     splash.lyx
1789 ''')
1790
1791
1792 lib_examples_hu_files = Split('''
1793     example_lyxified.lyx
1794     example_raw.lyx
1795     splash.lyx
1796 ''')
1797
1798
1799 lib_examples_it_files = Split('''
1800     ItemizeBullets.lyx
1801     splash.lyx
1802 ''')
1803
1804
1805 lib_examples_nl_files = Split('''
1806     multicol.lyx
1807     opsommingstekens.lyx
1808     splash.lyx
1809     voorbeeld_ruw.lyx
1810     voorbeeld_verlyxt.lyx
1811 ''')
1812
1813
1814 lib_examples_pl_files = Split('''
1815     splash.lyx
1816 ''')
1817
1818
1819 lib_examples_pt_files = Split('''
1820     splash.lyx
1821 ''')
1822
1823
1824 lib_examples_ro_files = Split('''
1825     splash.lyx
1826 ''')
1827
1828
1829 lib_examples_ru_files = Split('''
1830     splash.lyx
1831 ''')
1832
1833
1834 lib_examples_sl_files = Split('''
1835     primer_lyxan.lyx
1836     primer_surov.lyx
1837     splash.lyx
1838 ''')
1839
1840
1841 lib_lyx2lyx_files = Split('''
1842     LyX.py
1843     generate_encoding_info.py
1844     lyx2lyx
1845     lyx2lyx_lang.py
1846     lyx_0_06.py
1847     lyx_0_08.py
1848     lyx_0_10.py
1849     lyx_0_12.py
1850     lyx_1_0.py
1851     lyx_1_1.py
1852     lyx_1_1_5.py
1853     lyx_1_1_6_0.py
1854     lyx_1_1_6_3.py
1855     lyx_1_2.py
1856     lyx_1_3.py
1857     lyx_1_4.py
1858     lyx_1_5.py
1859     lyx_1_6.py
1860     parser_tools.py
1861     profiling.py
1862     test_parser_tools.py
1863 ''')
1864
1865
1866 lib_lyx2lyx_extra_files = Split('''
1867     Makefile.am
1868     lyx2lyx_version.py.in
1869 ''')
1870
1871
1872 lib_layouts_files = Split('''
1873     IEEEtran.layout
1874     aa.layout
1875     aapaper.layout
1876     aastex.layout
1877     agu-dtd.layout
1878     agums.layout
1879     amsart-plain.layout
1880     amsart-seq.layout
1881     amsart.layout
1882     amsbook.layout
1883     apa.layout
1884     arab-article.layout
1885     armenian-article.layout
1886     article.layout
1887     beamer.layout
1888     book.layout
1889     broadway.layout
1890     chess.layout
1891     cl2emult.layout
1892     dinbrief.layout
1893     docbook-book.layout
1894     docbook-chapter.layout
1895     docbook-section.layout
1896     docbook.layout
1897     dtk.layout
1898     egs.layout
1899     elsart.layout
1900     entcs.layout
1901     europecv.layout
1902     extarticle.layout
1903     extbook.layout
1904     extletter.layout
1905     extreport.layout
1906     foils.layout
1907     g-brief-de.layout
1908     g-brief-en.layout
1909     g-brief2.layout
1910     heb-article.layout
1911     heb-letter.layout
1912     hollywood.layout
1913     ijmpc.layout
1914     ijmpd.layout
1915     iopart.layout
1916     isprs.layout
1917     jarticle.layout
1918     jbook.layout
1919     jgrga.layout
1920     jreport.layout
1921     jsarticle.layout
1922     jsbook.layout
1923     kluwer.layout
1924     latex8.layout
1925     letter.layout
1926     literate-article.layout
1927     literate-book.layout
1928     literate-report.layout
1929     llncs.layout
1930     ltugboat.layout
1931     manpage.layout
1932     memoir.layout
1933     moderncv.layout
1934     mwart.layout
1935     mwbk.layout
1936     mwrep.layout
1937     paper.layout
1938     powerdot.layout
1939     report.layout
1940     revtex.layout
1941     revtex4.layout
1942     scrartcl.layout
1943     scrbook.layout
1944     scrlettr.layout
1945     scrlttr2.layout
1946     scrreprt.layout
1947     seminar.layout
1948     siamltex.layout
1949     simplecv.layout
1950     slides.layout
1951     spie.layout
1952     svglobal.layout
1953     svjog.layout
1954     svprobth.layout
1955     tarticle.layout
1956     tbook.layout
1957     treport.layout
1958 ''')
1959
1960
1961 lib_layouts_inc_files = Split('''
1962     aapaper.inc
1963     agu_stdclass.inc
1964     agu_stdcounters.inc
1965     agu_stdlists.inc
1966     agu_stdsections.inc
1967     agu_stdtitle.inc
1968     aguplus.inc
1969     amsdefs.inc
1970     amsmaths-plain.inc
1971     amsmaths-seq.inc
1972     amsmaths.inc
1973     db_lyxmacros.inc
1974     db_stdcharstyles.inc
1975     db_stdclass.inc
1976     db_stdcounters.inc
1977     db_stdlayouts.inc
1978     db_stdlists.inc
1979     db_stdsections.inc
1980     db_stdstarsections.inc
1981     db_stdstruct.inc
1982     db_stdtitle.inc
1983     literate-scrap.inc
1984     lyxmacros.inc
1985     numarticle.inc
1986     numreport.inc
1987     numrevtex.inc
1988     scrclass.inc
1989     stdclass.inc
1990     stdcounters.inc
1991     stdfloats.inc
1992     stdinsets.inc
1993     stdlayouts.inc
1994     stdletter.inc
1995     stdlists.inc
1996     stdsections.inc
1997     stdstarsections.inc
1998     stdstruct.inc
1999     stdtitle.inc
2000     svjour.inc
2001     theorems.inc
2002     theorems-ams.inc
2003 ''')
2004
2005
2006 lib_layouts_module_files = Split('''
2007     lib/layouts/endnotes.module
2008     lib/layouts/foottoend.module
2009     lib/layouts/hanging.module
2010     lib/layouts/logicalmkup.module
2011     lib/layouts/theorems-ams.module
2012     lib/layouts/theorems-ams-withinsec.module
2013     lib/layouts/theorems-std.module
2014     lib/layouts/theorems-withinsec.module
2015     lib/layouts/theorems-withinchap.module
2016     lib/layouts/url.module
2017 ''')
2018
2019 lib_scripts_files = Split('''
2020     TeXFiles.py
2021     clean_dvi.py
2022     convertDefault.py
2023     date.py
2024     ext_copy.py
2025     fen2ascii.py
2026     fig2pdftex.py
2027     fig2pstex.py
2028     fig_copy.py
2029     layout2layout.py
2030     legacy_lyxpreview2ppm.py
2031     listerrors
2032     lyxpreview2bitmap.py
2033     lyxpreview_tools.py
2034     tex_copy.py
2035 ''')
2036
2037
2038 lib_bind_files = Split('''
2039     aqua.bind
2040     broadway.bind
2041     cua.bind
2042     cyrkeys.bind
2043     emacs.bind
2044     greekkeys.bind
2045     hollywood.bind
2046     latinkeys.bind
2047     mac.bind
2048     math.bind
2049     menus.bind
2050     sciword.bind
2051     xemacs.bind
2052 ''')
2053
2054
2055 lib_bind_fi_files = Split('''
2056     menus.bind
2057 ''')
2058
2059
2060 lib_bind_sv_files = Split('''
2061     menus.bind
2062 ''')
2063
2064
2065 lib_bind_pt_files = Split('''
2066     menus.bind
2067 ''')
2068
2069
2070 lib_bind_de_files = Split('''
2071     menus.bind
2072 ''')
2073
2074
2075 boost_extra_files = Split('''
2076     LICENSE_1_0.txt
2077     Makefile.am
2078 ''')
2079
2080
2081 boost_libs_extra_files = Split('''
2082     Makefile.am
2083     README
2084 ''')
2085
2086
2087 boost_libs_signals_extra_files = Split('''
2088     Makefile.am
2089     signals.vcproj
2090 ''')
2091
2092
2093 boost_libs_signals_src_files = Split('''
2094     connection.cpp
2095     named_slot_map.cpp
2096     signal_base.cpp
2097     slot.cpp
2098     trackable.cpp
2099 ''')
2100
2101
2102 boost_libs_signals_src_extra_files = Split('''
2103     Makefile.am
2104     pch.h
2105 ''')
2106
2107
2108 boost_libs_regex_extra_files = Split('''
2109     Makefile.am
2110     regex.vcproj
2111 ''')
2112
2113
2114 boost_libs_regex_src_files = Split('''
2115     c_regex_traits.cpp
2116     cpp_regex_traits.cpp
2117     cregex.cpp
2118     fileiter.cpp
2119     instances.cpp
2120     posix_api.cpp
2121     regex.cpp
2122     regex_debug.cpp
2123     regex_raw_buffer.cpp
2124     regex_traits_defaults.cpp
2125     w32_regex_traits.cpp
2126     wide_posix_api.cpp
2127     winstances.cpp
2128 ''')
2129
2130
2131 boost_libs_regex_src_extra_files = Split('''
2132     Makefile.am
2133     pch.h
2134 ''')
2135
2136
2137 boost_libs_filesystem_extra_files = Split('''
2138     Makefile.am
2139     filesystem.vcproj
2140 ''')
2141
2142
2143 boost_libs_filesystem_src_files = Split('''
2144     exception.cpp
2145     operations.cpp
2146     path.cpp
2147     portability.cpp
2148 ''')
2149
2150
2151 boost_libs_filesystem_src_extra_files = Split('''
2152     Makefile.am
2153     pch.h
2154 ''')
2155
2156
2157 boost_libs_iostreams_extra_files = Split('''
2158     Makefile.am
2159 ''')
2160
2161
2162 boost_libs_iostreams_src_files = Split('''
2163     file_descriptor.cpp
2164     mapped_file.cpp
2165     zlib.cpp
2166 ''')
2167
2168
2169 boost_libs_iostreams_src_extra_files = Split('''
2170     Makefile.am
2171     pch.h
2172 ''')
2173
2174
2175 development_Win32_packaging_installer = Split('''
2176     license.rtf
2177     lyx.nsi
2178     settings.nsh
2179     settings.user.nsh
2180 ''')
2181
2182
2183 development_Win32_packaging_installer_components = Split('''
2184     configure.nsh
2185     core.nsh
2186     dicts.nsh
2187     external.nsh
2188     langselect.nsh
2189     reinstall.nsh
2190     uninstall.nsh
2191     user.nsh
2192     viewer.nsh
2193 ''')
2194
2195
2196 development_Win32_packaging_installer_dialogs = Split('''
2197     external.ini
2198     langselect.ini
2199     reinstall.ini
2200     user.ini
2201     viewer.ini
2202 ''')
2203
2204
2205 development_Win32_packaging_installer_graphics = Split('''
2206     header.bmp
2207     wizard.bmp
2208 ''')
2209
2210
2211 development_Win32_packaging_installer_include = Split('''
2212     declarations.nsh
2213     detection.nsh
2214     filelists.nsh
2215     gui.nsh
2216     init.nsh
2217     lang.nsh
2218     windows.nsh
2219 ''')
2220
2221
2222 development_Win32_packaging_installer_lang = Split('''
2223     english.nsh
2224     french.nsh
2225     german.nsh
2226     italian.nsh
2227 ''')
2228