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