]> git.lyx.org Git - features.git/blob - development/scons/scons_manifest.py
scons_manifest.py: add missing files, thanks Peter
[features.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-update.png
1420     buffer-update_dvi.png
1421     buffer-update_pdf.png
1422     buffer-update_pdf2.png
1423     buffer-update_pdf3.png
1424     buffer-update_pdf4.png
1425     buffer-update_ps.png
1426     buffer-view.png
1427     buffer-view_dvi.png
1428     buffer-view_pdf.png
1429     buffer-view_pdf2.png
1430     buffer-view_pdf3.png
1431     buffer-view_pdf4.png
1432     buffer-view_ps.png
1433     buffer-write-as.png
1434     buffer-write.png
1435     build-program.png
1436     change-accept.png
1437     change-next.png
1438     change-reject.png
1439     changes-merge.png
1440     changes-output.png
1441     changes-track.png
1442     closetab.png
1443     close-tab-group.png
1444     copy.png
1445     cut.png
1446     demote.png
1447     depth-decrement.png
1448     depth-increment.png
1449     dialog-preferences.png
1450     dialog-show-new-inset_citation.png
1451     dialog-show-new-inset_graphics.png
1452     dialog-show-new-inset_include.png
1453     dialog-show-new-inset_ref.png
1454     dialog-show_character.png
1455     dialog-show_findreplace.png
1456     dialog-show_mathdelimiter.png
1457     dialog-show_mathmatrix.png
1458     dialog-show_print.png
1459     dialog-show_spellchecker.png
1460     dialog-show_vclog.png
1461     dialog-toggle_findreplaceadv.png
1462     dialog-toggle_toc.png
1463     down.png
1464     ert-insert.png
1465     file-open.png
1466     float-insert_figure.png
1467     float-insert_table.png
1468     font-bold.png
1469     font-emph.png
1470     textstyle-apply.png
1471     font-noun.png
1472     font-sans.png
1473     footnote-insert.png
1474     href-insert.png
1475     hidetab.png
1476     index-insert.png
1477     info-insert_buffer_vcs-revision.png
1478     label-insert.png
1479     layout-document.png
1480     layout-paragraph.png
1481     layout.png
1482     layout_Description.png
1483     layout_Enumerate.png
1484     layout_Itemize.png
1485     layout_List.png
1486     layout_LyX-Code.png
1487     layout_Scrap.png
1488     layout_Section.png
1489     lyx-quit.png
1490     lyx.png
1491     marginalnote-insert.png
1492     master-buffer-update.png
1493     master-buffer-view.png
1494     math-display.png
1495     math-macro-add-greedy-optional-param.png
1496     math-macro-add-optional-param.png
1497     math-macro-add-param.png
1498     math-macro-append-greedy-param.png
1499     math-macro-make-nonoptional.png
1500     math-macro-make-optional.png
1501     math-macro-remove-greedy-param.png
1502     math-macro-remove-optional-param.png
1503     math-macro-remove-param.png
1504     math-macro_newmacroname_newcommand.png
1505     math-matrix.png
1506     math-mode.png
1507     math-subscript.png
1508     math-superscript.png
1509     nomencl-insert.png
1510     note-insert.png
1511     note-next.png
1512     paste.png
1513     promote.png
1514     psnfss1.png
1515     psnfss2.png
1516     psnfss3.png
1517     psnfss4.png
1518     redo.png
1519     reload.png
1520     split-view_horizontal.png
1521     split-view_vertical.png
1522     standard.png
1523     tabular-feature_m-align-center.png
1524     tabular-feature_m-align-left.png
1525     tabular-feature_m-align-right.png
1526     tabular-feature_append-column.png
1527     tabular-feature_append-row.png
1528     tabular-feature_delete-column.png
1529     tabular-feature_delete-row.png
1530     tabular-feature_multicolumn.png
1531     tabular-feature_multirow.png
1532     tabular-feature_set-all-lines.png
1533     tabular-feature_set-border-lines.png
1534     tabular-feature_set-longtabular.png
1535     tabular-feature_set-rotate-cell.png
1536     tabular-feature_set-rotate-tabular.png
1537     tabular-feature_toggle-line-bottom.png
1538     tabular-feature_toggle-line-left.png
1539     tabular-feature_toggle-line-right.png
1540     tabular-feature_toggle-line-top.png
1541     tabular-feature_toggle-rotate-cell.png
1542     tabular-feature_toggle-rotate-tabular.png
1543     tabular-feature_unset-all-lines.png
1544     tabular-feature_m-valign-bottom.png
1545     tabular-feature_m-valign-middle.png
1546     tabular-feature_m-valign-top.png
1547     tabular-insert.png
1548     thesaurus-entry.png
1549     toolbar-toggle_math.png
1550     toolbar-toggle_math_panels.png
1551     toolbar-toggle_table.png
1552     undo.png
1553     unknown.png
1554     up.png
1555     update-others.png
1556     url-insert.png
1557     vc-compare.png
1558     vc-compare_0.png
1559     vc-check-in.png
1560     vc-check-out.png
1561     vc-locking-toggle.png
1562     vc-register.png
1563     vc-repo-update.png
1564     vc-revert.png
1565     view-others.png
1566 ''')
1567
1568
1569 lib_images_extra_files = Split('''
1570     font-smallcaps.png
1571     README
1572 ''')
1573
1574
1575 lib_images_math_files = Split('''
1576     acute.png
1577     adots.png
1578     aleph.png
1579     alpha.png
1580     amalg.png
1581     angle.png
1582     approx.png
1583     approxeq.png
1584     asymp.png
1585     backepsilon.png
1586     backprime.png
1587     backsim.png
1588     backsimeq.png
1589     backslash.png
1590     bar.png
1591     bars.png
1592     barwedge.png
1593     Bbbk.png
1594     because.png
1595     beta.png
1596     beth.png
1597     between.png
1598     bigcap.png
1599     bigcirc.png
1600     bigcup.png
1601     bigodot.png
1602     bigoplus.png
1603     bigotimes.png
1604     bigsqcup.png
1605     bigstar.png
1606     bigtriangledown.png
1607     bigtriangleup.png
1608     biguplus.png
1609     bigvee.png
1610     bigwedge.png
1611     blacklozenge.png
1612     blacksquare.png
1613     blacktriangle.png
1614     blacktriangledown.png
1615     blacktriangleleft.png
1616     blacktriangleright.png
1617     bot.png
1618     bowtie.png
1619     boxdot.png
1620     boxminus.png
1621     boxplus.png
1622     boxtimes.png
1623     breve.png
1624     bullet.png
1625     bumpeq.png
1626     bumpeq2.png
1627     cap.png
1628     cap2.png
1629     cases.png
1630     cdot.png
1631     cdots.png
1632     centerdot.png
1633     check.png
1634     chi.png
1635     circ.png
1636     circeq.png
1637     circlearrowleft.png
1638     circlearrowright.png
1639     circledS.png
1640     circledast.png
1641     circledcirc.png
1642     circleddash.png
1643     clubsuit.png
1644     complement.png
1645     cong.png
1646     coprod.png
1647     cup.png
1648     cup2.png
1649     curlyeqprec.png
1650     curlyeqsucc.png
1651     curlyvee.png
1652     curlywedge.png
1653     curvearrowleft.png
1654     curvearrowright.png
1655     dagger.png
1656     daleth.png
1657     dashleftarrow.png
1658     dashrightarrow.png
1659     dashv.png
1660     ddagger.png
1661     ddddot.png
1662     dddot.png
1663     ddot.png
1664     ddots.png
1665     delim.png
1666     delta.png
1667     delta2.png
1668     diagdown.png
1669     diagup.png
1670     diamond.png
1671     diamond2.png
1672     diamondsuit.png
1673     digamma.png
1674     div.png
1675     divideontimes.png
1676     dot.png
1677     doteq.png
1678     doteqdot.png
1679     dotplus.png
1680     dotsint.png
1681     dotsintop.png
1682     doublebarwedge.png
1683     downarrow.png
1684     downarrow2.png
1685     downdownarrows.png
1686     downharpoonleft.png
1687     downharpoonright.png
1688     ell.png
1689     empty.png
1690     emptyset.png
1691     epsilon.png
1692     eqcirc.png
1693     eqslantgtr.png
1694     eqslantless.png
1695     equation.png
1696     equiv.png
1697     eta.png
1698     eth.png
1699     exists.png
1700     export-others.png
1701     fallingdotseq.png
1702     fint.png
1703     fintop.png
1704     Finv.png
1705     flat.png
1706     font.png
1707     forall.png
1708     frac-square.png
1709     frac.png
1710     frown.png
1711     functions.png
1712     Game.png
1713     gamma.png
1714     gamma2.png
1715     geq.png
1716     geqq.png
1717     geqslant.png
1718     gg.png
1719     ggg.png
1720     gimel.png
1721     gnapprox.png
1722     gneq.png
1723     gneqq.png
1724     gnsim.png
1725     grave.png
1726     gtrapprox.png
1727     gtrdot.png
1728     gtreqless.png
1729     gtreqqless.png
1730     gtrless.png
1731     gtrsim.png
1732     gvertneqq.png
1733     hat.png
1734     hbar.png
1735     heartsuit.png
1736     hookleftarrow.png
1737     hookrightarrow.png
1738     hphantom.png
1739     hslash.png
1740     iddots.png
1741     iiiint.png
1742     iiiintop.png
1743     iiint.png
1744     iiintop.png
1745     iint.png
1746     iintop.png
1747     Im.png
1748     imath.png
1749     in.png
1750     infty.png
1751     int.png
1752     intercal.png
1753     intop.png
1754     iota.png
1755     jmath.png
1756     kappa.png
1757     lambda.png
1758     lambda2.png
1759     landdownint.png
1760     landdownintop.png
1761     landupint.png
1762     landupintop.png
1763     langle.png
1764     lbrace.png
1765     lbrace_rbrace.png
1766     lbracket.png
1767     lbracket_rbracket.png
1768     lceil.png
1769     lceil_rceil.png
1770     ldots.png
1771     leftarrow.png
1772     leftarrow2.png
1773     leftarrowtail.png
1774     leftharpoondown.png
1775     leftharpoonup.png
1776     leftleftarrows.png
1777     leftrightarrow.png
1778     leftrightarrow2.png
1779     leftrightarrows.png
1780     leftrightharpoons.png
1781     leftrightsquigarrow.png
1782     leftthreetimes.png
1783     leq.png
1784     leqq.png
1785     leqslant.png
1786     lessapprox.png
1787     lessdot.png
1788     lesseqgtr.png
1789     lesseqqgtr.png
1790     lessgtr.png
1791     lesssim.png
1792     lfloor.png
1793     lfloor_rfloor.png
1794     ll.png
1795     llcorner.png
1796     Lleftarrow.png
1797     lll.png
1798     lnapprox.png
1799     lneq.png
1800     lneqq.png
1801     lnsim.png
1802     longleftarrow.png
1803     longleftarrow2.png
1804     longleftrightarrow.png
1805     longleftrightarrow2.png
1806     longmapsto.png
1807     longrightarrow.png
1808     longrightarrow2.png
1809     looparrowleft.png
1810     looparrowright.png
1811     lozenge.png
1812     lparen.png
1813     lparen_rparen.png
1814     lrcorner.png
1815     Lsh.png
1816     ltimes.png
1817     lvertneqq.png
1818     mapsto.png
1819     mathbb_C.png
1820     mathbb_H.png
1821     mathbb_N.png
1822     mathbb_Q.png
1823     mathbb_R.png
1824     mathbb_Z.png
1825     mathcal_F.png
1826     mathcal_H.png
1827     mathcal_L.png
1828     mathcal_O.png
1829     mathcircumflex.png
1830     mathrm_T.png
1831     matrix.png
1832     measuredangle.png
1833     mho.png
1834     mid.png
1835     models.png
1836     mp.png
1837     mu.png
1838     multimap.png
1839     nabla.png
1840     natural.png
1841     ncong.png
1842     nearrow.png
1843     neg.png
1844     neq.png
1845     nexists.png
1846     ngeq.png
1847     ngeqq.png
1848     ngeqslant.png
1849     ngtr.png
1850     ni.png
1851     nleftarrow.png
1852     nleftarrow2.png
1853     nleftrightarrow.png
1854     nleftrightarrow2.png
1855     nleq.png
1856     nleqq.png
1857     nleqslant.png
1858     nless.png
1859     nmid.png
1860     notin.png
1861     nparallel.png
1862     nprec.png
1863     npreceq.png
1864     nrightarrow.png
1865     nrightarrow2.png
1866     nshortmid.png
1867     nshortparallel.png
1868     nsim.png
1869     nsubseteq.png
1870     nsucc.png
1871     nsucceq.png
1872     nsupseteq.png
1873     nsupseteqq.png
1874     ntriangleleft.png
1875     ntrianglelefteq.png
1876     ntriangleright.png
1877     ntrianglerighteq.png
1878     nu.png
1879     nvdash.png
1880     nvdash2.png
1881     nvdash3.png
1882     nwarrow.png
1883     odot.png
1884     oiint.png
1885     oiintop.png
1886     oint.png
1887     ointclockwise.png
1888     ointclockwiseop.png
1889     ointctrclockwise.png
1890     ointctrclockwiseop.png
1891     ointop.png
1892     omega.png
1893     omega2.png
1894     ominus.png
1895     oplus.png
1896     oslash.png
1897     otimes.png
1898     overbrace.png
1899     overleftarrow.png
1900     overleftrightarrow.png
1901     overline.png
1902     overrightarrow.png
1903     overset.png
1904     parallel.png
1905     partial.png
1906     perp.png
1907     phantom.png
1908     phi.png
1909     phi2.png
1910     pi.png
1911     pi2.png
1912     pitchfork.png
1913     pm.png
1914     prec.png
1915     precapprox.png
1916     preccurlyeq.png
1917     preceq.png
1918     precnapprox.png
1919     precnsim.png
1920     precsim.png
1921     prime.png
1922     prod.png
1923     propto.png
1924     psi.png
1925     psi2.png
1926     rangle.png
1927     rbrace.png
1928     rbracket.png
1929     rceil.png
1930     Re.png
1931     rfloor.png
1932     rho.png
1933     rightarrow.png
1934     rightarrow2.png
1935     rightarrowtail.png
1936     rightharpoondown.png
1937     rightharpoonup.png
1938     rightleftarrows.png
1939     rightleftharpoons.png
1940     rightrightarrows.png
1941     rightsquigarrow.png
1942     rightthreetimes.png
1943     risingdotseq.png
1944     root.png
1945     rparen.png
1946     Rrightarrow.png
1947     Rsh.png
1948     rtimes.png
1949     searrow.png
1950     setminus.png
1951     sharp.png
1952     shortmid.png
1953     shortparallel.png
1954     sigma.png
1955     sigma2.png
1956     sim.png
1957     simeq.png
1958     slash.png
1959     smallfrown.png
1960     smallsetminus.png
1961     smallsmile.png
1962     smile.png
1963     space.png
1964     spadesuit.png
1965     sphericalangle.png
1966     sqcap.png
1967     sqcup.png
1968     sqiint.png
1969     sqiintop.png
1970     sqint.png
1971     sqintop.png
1972     sqrt-square.png
1973     sqrt.png
1974     sqsubset.png
1975     sqsubseteq.png
1976     sqsupset.png
1977     sqsupseteq.png
1978     square.png
1979     star.png
1980     style.png
1981     style.png
1982     sub.png
1983     subset.png
1984     subset2.png
1985     subseteq.png
1986     subseteqq.png
1987     subsetneq.png
1988     subsetneqq.png
1989     succ.png
1990     succapprox.png
1991     succcurlyeq.png
1992     succeq.png
1993     succnapprox.png
1994     succnsim.png
1995     succsim.png
1996     sum.png
1997     super.png
1998     supset.png
1999     supset2.png
2000     supseteq.png
2001     supseteqq.png
2002     supsetneq.png
2003     supsetneqq.png
2004     surd.png
2005     swarrow.png
2006     tau.png
2007     textrm_AA.png
2008     textrm_O.png
2009     therefore.png
2010     theta.png
2011     theta2.png
2012     thickapprox.png
2013     thicksim.png
2014     tilde.png
2015     times.png
2016     top.png
2017     triangle.png
2018     triangledown.png
2019     triangleleft.png
2020     trianglelefteq.png
2021     triangleq.png
2022     triangleright.png
2023     trianglerighteq.png
2024     twoheadleftarrow.png
2025     twoheadrightarrow.png
2026     ulcorner.png
2027     underbrace.png
2028     underleftarrow.png
2029     underleftrightarrow.png
2030     underline.png
2031     underrightarrow.png
2032     underscore.png
2033     underset.png
2034     uparrow.png
2035     uparrow2.png
2036     updownarrow.png
2037     updownarrow2.png
2038     upharpoonleft.png
2039     upharpoonright.png
2040     uplus.png
2041     upsilon.png
2042     upsilon2.png
2043     upuparrows.png
2044     urcorner.png
2045     varepsilon.png
2046     varkappa.png
2047     varnothing.png
2048     varphi.png
2049     varpi.png
2050     varpropto.png
2051     varrho.png
2052     varsigma.png
2053     varsubsetneq.png
2054     varsubsetneqq.png
2055     varsupsetneq.png
2056     varsupsetneqq.png
2057     vartheta.png
2058     vartriangle.png
2059     vartriangleleft.png
2060     vartriangleright.png
2061     vdash.png
2062     vdash2.png
2063     vdash3.png
2064     vdots.png
2065     vec.png
2066     vee.png
2067     veebar.png
2068     vert.png
2069     vert2.png
2070     vphantom.png
2071     Vvdash.png
2072     wedge.png
2073     widehat.png
2074     widetilde.png
2075     wp.png
2076     wr.png
2077     xi.png
2078     xi2.png
2079     zeta.png
2080 ''')
2081
2082
2083 lib_images_math_extra_files = Split('''
2084     ams_arrows.png
2085     ams_misc.png
2086     ams_nrel.png
2087     ams_ops.png
2088     ams_rel.png
2089     arrows.png
2090     bop.png
2091     brel.png
2092     deco.png
2093     deco.png
2094     delim.png
2095     delim0.png
2096     delim1.png
2097     dots.png
2098     font.png
2099     functions.png
2100     greek.png
2101     misc.png
2102     varsz.png
2103 ''')
2104
2105
2106 lib_images_commands_files = Split('''
2107 ''')
2108
2109
2110 lib_images_attic_extra_files = Split('''
2111     dialog-show_mathpanel.png
2112 ''')
2113
2114
2115 lib_tex_files = Split('''
2116     broadway.cls
2117     hollywood.cls
2118     lyxchess.sty
2119     lyxskak.sty
2120     revtex.cls
2121 ''')
2122
2123
2124 lib_doc_files = Split('''
2125     Customization.lyx
2126     DummyDocument1.lyx
2127     DummyDocument2.lyx
2128     DummyTextDocument.txt
2129     EmbeddedObjects.lyx
2130     Additional.lyx
2131     Formula-numbering.lyx
2132     Intro.lyx
2133     LaTeXConfig.lyx
2134     LFUNs.lyx
2135     Math.lyx
2136     Shortcuts.lyx
2137     Tutorial.lyx
2138     UserGuide.lyx
2139 ''')
2140
2141
2142 lib_doc_biblio_files = Split('''
2143     alphadin.bst
2144     LyXDocs.bib
2145 ''')
2146
2147
2148 lib_doc_clipart_files = Split('''
2149     Abstract.pdf
2150     BoxInsetDefaultQt4.png
2151     ChangesToolbar.png
2152     ChildDocumentQt4.png
2153     CommentNoteImageQt4.png
2154     endnotes.pdf
2155     ERT.png
2156     escher-lsd.eps
2157     ExternalMaterialQt4.png
2158     ExtraToolbar.png
2159     floatQt4.png
2160     footnoteQt4.png
2161     GreyedOutNoteImageQt4.png
2162     labelQt4.png
2163     LaTeX.png
2164     LyXNoteImageQt4.png
2165     macrobox.png
2166     MacroToolbar.png
2167     macrouse.png
2168     mbox.png
2169     mobius.eps
2170     platypus.eps
2171     referenceQt4.png
2172     SpaceMarker.png
2173     StandardToolbar.png
2174     ToolbarEnvBox.png
2175     ViewToolbar.png
2176     with_fntright.pdf
2177     without_fntright.pdf
2178 ''')
2179
2180
2181 lib_doc_extra_files = Split('''
2182     Makefile.am
2183     README.Documentation
2184 ''')
2185
2186
2187 lib_doc_ca_files = Split('''
2188     Intro.lyx
2189 ''')
2190
2191
2192 lib_doc_cs_files = Split('''
2193     Tutorial.lyx
2194 ''')
2195
2196
2197 lib_doc_de_files = Split('''
2198     Customization.lyx
2199     DummyDocument1.lyx
2200     DummyDocument2.lyx
2201     DummyTextDocument.txt
2202     EmbeddedObjects.lyx
2203     Additional.lyx
2204     Formelnummerierung.lyx
2205     Intro.lyx
2206     Math.lyx
2207     Shortcuts.lyx
2208     Tutorial.lyx
2209     UserGuide.lyx
2210 ''')
2211
2212
2213 lib_doc_de_clipart_files = Split('''
2214     ERT.png
2215     ExternesMaterialQt4.png
2216     FussnoteQt4.png
2217     GleitobjektQt4.png
2218     GrauschriftNotizQt4.png
2219     KommentarQt4.png
2220     LyXNotizQt4.png
2221     Marke.png
2222     Querverweis.png
2223     StandardBoxQt4.png
2224     UnterdokumentQt4.png
2225 ''')
2226
2227
2228 lib_doc_da_files = Split('''
2229     Intro.lyx
2230 ''')
2231
2232
2233 lib_doc_es_files = Split('''
2234     Customization.lyx
2235     DocumentoPostizo1.lyx
2236     DocumentoPostizo2.lyx
2237     DocumentoTextoPostizo.txt
2238     EmbeddedObjects.lyx
2239     Additional.lyx
2240     Formula-numbering.lyx
2241     Intro.lyx
2242     Math.lyx
2243     Shortcuts.lyx
2244     Tutorial.lyx
2245     UserGuide.lyx
2246 ''')
2247
2248
2249 lib_doc_es_clipart_files = Split('''
2250     ComentNotaImagenQt4.png
2251     CuadroMinipagQt4.png
2252     DocumentoHijoQt4.png
2253     es_ERT.png
2254     es_ToolbarEnvBox.png
2255     etiquetaQt4.png
2256     flotanteQt4.png
2257     GrisNotaImagenQt4.png
2258     MaterialExternoQt4.png
2259     NotaLyXImagenQt4.png
2260     notapieQt4.png
2261     referenciaQt4.png
2262     Resumen.pdf
2263 ''')
2264
2265
2266 lib_doc_eu_files = Split('''
2267     Customization.lyx
2268     Additional.lyx
2269     Intro.lyx
2270     Tutorial.lyx
2271     UserGuide.lyx
2272 ''')
2273
2274
2275 lib_doc_fr_files = Split('''
2276     Customization.lyx
2277     DocumentBidon1.lyx
2278     DocumentBidon2.lyx
2279     DocumentTexteBidon.txt
2280     EmbeddedObjects.lyx
2281     Additional.lyx
2282     Formula-numbering.lyx
2283     Intro.lyx
2284     Math.lyx
2285     Shortcuts.lyx
2286     Tutorial.lyx
2287     UserGuide.lyx
2288 ''')
2289
2290
2291 lib_doc_fr_clipart_files = Split('''
2292     BoxInsetDefaultQt4.png
2293     ChildDocumentQt4.png
2294     CommentNoteImageQt4.png
2295     floatQt4.png
2296     footnoteQt4.png
2297     GreyedOutNoteImageQt4.png
2298     labelQt4.png
2299     LyXNoteImageQt4.png    
2300 ''')
2301
2302
2303 lib_doc_gl_files = Split('''
2304     Intro.lyx
2305     Tutorial.lyx
2306 ''')
2307
2308
2309 lib_doc_he_files = Split('''
2310     Intro.lyx
2311     Tutorial.lyx
2312 ''')
2313
2314
2315 lib_doc_hu_files = Split('''
2316     Intro.lyx
2317     Tutorial.lyx
2318 ''')
2319
2320
2321 lib_doc_id_files = Split('''
2322     Intro.lyx
2323     Tutorial.lyx
2324 ''')
2325
2326
2327 lib_doc_id_clipart_files = Split('''
2328     id-contrib.png
2329     id-footnote.png
2330     id-lingkungan.png
2331 ''')
2332
2333
2334 lib_doc_it_files = Split('''
2335     Customization.lyx
2336     Intro.lyx
2337     Tutorial.lyx
2338     UserGuide.lyx
2339 ''')
2340
2341
2342 lib_doc_it_clipart_files = Split('''
2343     it_footnoteQt4.png
2344     it_referenceQt4.png
2345 ''')
2346
2347
2348 lib_doc_ja_files = Split('''
2349     Additional.lyx
2350     Customization.lyx
2351     DummyDocument1.lyx
2352     DummyDocument2.lyx
2353     EmbeddedObjects.lyx
2354     Formula-numbering.lyx
2355     Intro.lyx
2356     LaTeXConfig.lyx
2357     Math.lyx
2358     Shortcuts.lyx
2359     Tutorial.lyx
2360     UserGuide.lyx
2361 ''')
2362
2363
2364 lib_doc_ja_clipart_files = Split('''
2365     ChildDocumentQt4.png
2366     ERT.png
2367     ExternalMaterialQt4.png
2368     floatQt4.png
2369     footnoteQt4.png
2370     referenceQt4.png
2371     ToolbarEnvBox.png
2372 ''')
2373
2374
2375 lib_doc_nb_files = Split('''
2376     Intro.lyx
2377 ''')
2378
2379
2380 lib_doc_nl_files = Split('''
2381     Intro.lyx
2382     Tutorial.lyx
2383 ''')
2384
2385
2386 lib_doc_pl_files = Split('''
2387     Additional.lyx
2388     Intro.lyx
2389     Tutorial.lyx
2390 ''')
2391
2392
2393 lib_doc_pt_files = Split('''
2394     Intro.lyx
2395     Tutorial.lyx
2396 ''')
2397
2398
2399 lib_doc_ro_files = Split('''
2400     Intro.lyx
2401 ''')
2402
2403
2404 lib_doc_ru_files = Split('''
2405     Intro.lyx
2406     Tutorial.lyx
2407 ''')
2408
2409
2410 lib_doc_sl_files = Split('''
2411     Intro.lyx
2412     Tutorial.lyx
2413 ''')
2414
2415
2416 lib_doc_sk_files = Split('''
2417     Intro.lyx
2418     Tutorial.lyx
2419     UserGuide.lyx
2420 ''')
2421
2422
2423 lib_doc_sv_files = Split('''
2424     Intro.lyx
2425     Tutorial.lyx
2426 ''')
2427
2428
2429 lib_doc_uk_files = Split('''
2430     Intro.lyx
2431 ''')
2432
2433
2434 lib_doc_uk_clipart_files = Split('''
2435     FootnoteQT4.png
2436 ''')
2437
2438
2439 lib_doc_zhCN_files = Split('''
2440     Intro.lyx
2441     Tutorial.lyx
2442 ''')
2443
2444
2445 lib_examples_files = Split('''
2446     aa_sample.lyx
2447     aas_sample.lyx
2448     achemso.lyx
2449     addressExample.adr
2450     amsart-test.lyx
2451     amsbook-test.lyx
2452     armenian-article.lyx
2453     beamer-g4-mask.jpg
2454     beamer-g4.jpg
2455     beamer-icsi-logo.pdf
2456     beamer-knight1-mask.png
2457     beamer-knight1.png
2458     beamer-knight2-mask.png
2459     beamer-knight2.png
2460     beamer-knight3-mask.png
2461     beamer-knight3.png
2462     beamer-knight4-mask.png
2463     beamer-knight4.png
2464     beamerlyxexample1.lyx
2465     biblioExample.bib
2466     Braille.lyx
2467     chess-article.lyx
2468     chessgame.lyx
2469     CV-image.eps
2470     CV-image.png
2471     docbook_article.lyx
2472     europeCV.lyx
2473     example_lyxified.lyx
2474     example_raw.lyx
2475     Foils.lyx
2476     iecc05.fen
2477     iecc07.fen
2478     iecc12.fen
2479     ItemizeBullets.lyx
2480     landslide.lyx
2481     linguistics.lyx
2482     listerrors.lyx
2483     Literate.lyx
2484     modernCV.lyx
2485     multicol.lyx
2486     noweb2lyx.lyx
2487     powerdot-example.lyx
2488     recipebook.lyx
2489     script_form.lyx
2490     seminar.lyx
2491     serial_letter1.lyx
2492     serial_letter2.lyx
2493     serial_letter3.lyx
2494     simplecv.lyx
2495     splash.lyx
2496     sweave.lyx
2497     tufte-book.lyx
2498     tufte-handout.lyx
2499     xyfigure.png
2500     xypic.lyx
2501 ''')
2502
2503
2504 lib_examples_ca_files = Split('''
2505     ItemizeBullets.lyx
2506     mathed.lyx
2507     splash.lyx
2508 ''')
2509
2510
2511 lib_examples_cs_files = Split('''
2512     splash.lyx
2513 ''')
2514
2515
2516 lib_examples_da_files = Split('''
2517     splash.lyx
2518 ''')
2519
2520
2521 lib_examples_de_files = Split('''
2522     beispiel_gelyxt.lyx
2523     beispiel_roh.lyx
2524     Braille.lyx
2525     Dezimal.lyx
2526     ItemizeBullets.lyx
2527     Lebenslauf.lyx
2528     linguistics.lyx
2529     multicol.lyx
2530     serienbrief1.lyx
2531     serienbrief2.lyx
2532     serienbrief3.lyx
2533     splash.lyx
2534     tufte-handout.lyx
2535 ''')
2536
2537
2538 lib_examples_fa_files = Split('''
2539     splash.lyx
2540 ''')
2541
2542
2543 lib_examples_fr_files = Split('''
2544     AlignementDecimal.lyx
2545     Braille.lyx
2546     exemple_brut.lyx
2547     exemple_lyxifie.lyx
2548     exemple-powerdot.lyx
2549     Foils.lyx
2550     linguistics.lyx
2551     ListesPuces.lyx
2552     multicol.lyx
2553     seminar.lyx
2554     simplecv.lyx
2555     splash.lyx
2556     xyfigure.png
2557     xypic.lyx
2558 ''')
2559
2560
2561 lib_examples_es_files = Split('''
2562     beamer-conference-ornate20min.lyx
2563     Braille.lyx
2564     ejemplo_con_lyx.lyx
2565     ejemplo_sin_lyx.lyx
2566     ItemizeBullets.lyx
2567     linguistics.lyx
2568     multicol.lyx
2569     splash.lyx
2570     tufte-book.lyx
2571     tufte-handout.lyx
2572 ''')
2573
2574
2575 lib_examples_eu_files = Split('''
2576     adibide_gordina.lyx
2577     adibide_lyx-atua.lyx
2578     splash.lyx
2579 ''')
2580
2581
2582 lib_examples_gl_files = Split('''
2583     exemplo_bruto.lyx
2584     exemplo_lyxificado.lyx
2585     splash.lyx
2586 ''')
2587
2588
2589 lib_examples_he_files = Split('''
2590     example_lyxified.lyx
2591     example_raw.lyx
2592     splash.lyx
2593 ''')
2594
2595
2596 lib_examples_hu_files = Split('''
2597     example_lyxified.lyx
2598     example_raw.lyx
2599     splash.lyx
2600 ''')
2601
2602
2603 lib_examples_id_files = Split('''
2604     splash.lyx
2605 ''')
2606
2607
2608 lib_examples_it_files = Split('''
2609     ItemizeBullets.lyx
2610     splash.lyx
2611 ''')
2612
2613
2614 lib_examples_ja_files = Split('''
2615     Braille.lyx
2616     linguistics.lyx
2617     multicol.lyx
2618     splash.lyx
2619     xyfigure.png
2620     xypic.lyx
2621 ''')
2622
2623
2624 lib_examples_nl_files = Split('''
2625     multicol.lyx
2626     opsommingstekens.lyx
2627     splash.lyx
2628     voorbeeld_ruw.lyx
2629     voorbeeld_verlyxt.lyx
2630 ''')
2631
2632
2633 lib_examples_pl_files = Split('''
2634     splash.lyx
2635 ''')
2636
2637
2638 lib_examples_pt_files = Split('''
2639     splash.lyx
2640 ''')
2641
2642
2643 lib_examples_ro_files = Split('''
2644     splash.lyx
2645 ''')
2646
2647
2648 lib_examples_ru_files = Split('''
2649     splash.lyx
2650 ''')
2651
2652
2653 lib_examples_sl_files = Split('''
2654     primer_lyxan.lyx
2655     primer_surov.lyx
2656     splash.lyx
2657 ''')
2658
2659
2660 lib_examples_sk_files = Split('''
2661     splash.lyx
2662 ''')
2663
2664
2665 lib_examples_uk_files = Split('''
2666     splash.lyx
2667 ''')
2668
2669
2670 lib_lyx2lyx_files = Split('''
2671     generate_encoding_info.py
2672     LyX.py
2673     lyx2lyx
2674     lyx2lyx_lang.py
2675     lyx_0_06.py
2676     lyx_0_08.py
2677     lyx_0_10.py
2678     lyx_0_12.py
2679     lyx_1_0.py
2680     lyx_1_1.py
2681     lyx_1_1_5.py
2682     lyx_1_1_6_0.py
2683     lyx_1_1_6_3.py
2684     lyx_1_2.py
2685     lyx_1_3.py
2686     lyx_1_4.py
2687     lyx_1_5.py
2688     lyx_1_6.py
2689     lyx_2_0.py
2690     parser_tools.py
2691     profiling.py
2692     test_parser_tools.py
2693 ''')
2694
2695
2696 lib_lyx2lyx_extra_files = Split('''
2697     lyx2lyx_version.py.in
2698     Makefile.am
2699 ''')
2700
2701
2702 lib_layouts_files = Split('''
2703     aa.layout
2704     aapaper.layout
2705     aastex.layout
2706     achemso.layout
2707     acmsiggraph.layout
2708     agu-dtd.layout
2709     agums.layout
2710     amsart.layout
2711     amsbook.layout
2712     apa.layout
2713     arab-article.layout
2714     armenian-article.layout
2715     article.layout
2716     article-beamer.layout
2717     beamer.layout
2718     book.layout
2719     broadway.layout
2720     chess.layout
2721     cl2emult.layout
2722     dinbrief.layout
2723     docbook-book.layout
2724     docbook-chapter.layout
2725     docbook-section.layout
2726     docbook.layout
2727     doublecol-new.layout
2728     dtk.layout
2729     egs.layout
2730     elsart.layout
2731     elsarticle.layout
2732     entcs.layout
2733     europecv.layout
2734     extarticle.layout
2735     extbook.layout
2736     extletter.layout
2737     extreport.layout
2738     foils.layout
2739     g-brief.layout
2740     g-brief2.layout
2741     heb-article.layout
2742     heb-letter.layout
2743     hollywood.layout
2744     IEEEtran.layout
2745     ijmpc.layout
2746     ijmpd.layout
2747     iopart.layout
2748     isprs.layout
2749     jarticle.layout
2750     jbook.layout
2751     jgrga.layout
2752     jreport.layout
2753     jsarticle.layout
2754     jsbook.layout
2755     jss.layout
2756     kluwer.layout
2757     latex8.layout
2758     letter.layout
2759     literate-article.layout
2760     literate-book.layout
2761     literate-report.layout
2762     llncs.layout
2763     ltugboat.layout
2764     memoir.layout
2765     moderncv.layout
2766     mwart.layout
2767     mwbk.layout
2768     mwrep.layout
2769     paper.layout
2770     powerdot.layout
2771     recipebook.layout
2772     report.layout
2773     revtex.layout
2774     revtex4.layout
2775     scrartcl.layout
2776     scrarticle-beamer.layout
2777     scrbook.layout
2778     scrlettr.layout
2779     scrlttr2.layout
2780     scrreprt.layout
2781     seminar.layout
2782     siamltex.layout
2783     sigplanconf.layout
2784     simplecv.layout
2785     singlecol.layout
2786     singlecol-new.layout
2787     slides.layout
2788     spie.layout
2789     svglobal.layout
2790     svglobal3.layout
2791     svjog.layout
2792     svmono.layout
2793     svmult.layout
2794     svprobth.layout
2795     tarticle.layout
2796     tbook.layout
2797     treport.layout
2798     tufte-book.layout
2799     tufte-handout.layout
2800 ''')
2801
2802
2803 lib_layouts_inc_files = Split('''
2804     aapaper.inc
2805     agu_stdclass.inc
2806     agu_stdcounters.inc
2807     agu_stdlists.inc
2808     agu_stdsections.inc
2809     agu_stdtitle.inc
2810     aguplus.inc
2811     amsdefs.inc
2812     db_lyxmacros.inc
2813     db_stdcharstyles.inc
2814     db_stdclass.inc
2815     db_stdcounters.inc
2816     db_stdlayouts.inc
2817     db_stdlists.inc
2818     db_stdsections.inc
2819     db_stdstarsections.inc
2820     db_stdstruct.inc
2821     db_stdtitle.inc
2822     literate-scrap.inc
2823     lyxmacros.inc
2824     numarticle.inc
2825     numreport.inc
2826     numrevtex.inc
2827     scrclass.inc
2828     stdcharstyles.inc
2829     stdciteformats.inc
2830     stdclass.inc
2831     stdcounters.inc
2832     stdcustom.inc
2833     stdfloats.inc
2834     stdinsets.inc
2835     stdlayouts.inc
2836     stdletter.inc
2837     stdlists.inc
2838     stdrefprefix.inc
2839     stdsections.inc
2840     stdstarsections.inc
2841     stdstruct.inc
2842     stdtitle.inc
2843     svjour.inc
2844     theorems.inc
2845     theorems-ams.inc
2846     theorems-ams-bytype.inc
2847     theorems-bytype.inc
2848     theorems-order.inc
2849     theorems-proof.inc
2850     theorems-proof-std.inc
2851     theorems-starred.inc
2852     theorems-starred-equivalents.inc
2853 ''')
2854
2855
2856 lib_layouts_module_files = Split('''
2857     braille.module
2858     endnotes.module
2859     eqs-within-sections.module
2860     figs-within-sections.module
2861     foottoend.module
2862     hanging.module
2863     initials.module
2864     linguistics.module
2865     logicalmkup.module
2866     minimalistic.module
2867     noweb.module
2868     sweave.module
2869     tabs-within-sections.module
2870     theorems-ams-bytype.module
2871     theorems-ams-extended.module
2872     theorems-ams-extended-bytype.module
2873     theorems-ams.module
2874     theorems-bytype.module
2875     theorems-chap-bytype.module
2876     theorems-chap.module
2877     theorems-sec-bytype.module
2878     theorems-sec.module
2879     theorems-starred.module
2880     theorems-std.module
2881 ''')
2882
2883 lib_scripts_files = Split('''
2884     bash_completion
2885     clean_dvi.py
2886     convertDefault.py
2887     csv2lyx.py
2888     date.py
2889     ext_copy.py
2890     fen2ascii.py
2891     fig2pdftex.py
2892     fig2pstex.py
2893     fig_copy.py
2894     layout2layout.py
2895     legacy_lyxpreview2ppm.py
2896     listerrors
2897     lyxpreview2bitmap.py
2898     lyxpreview-platex2bitmap.py
2899     lyxpreview_tools.py
2900     TeXFiles.py
2901     tex_copy.py
2902 ''')
2903
2904
2905 lib_bind_files = Split('''
2906     aqua.bind
2907     broadway.bind
2908     cua.bind
2909     cyrkeys.bind
2910     emacs.bind
2911     greekkeys.bind
2912     hollywood.bind
2913     latinkeys.bind
2914     mac.bind
2915     math.bind
2916     menus.bind
2917     sciword.bind
2918     site.bind
2919     xemacs.bind
2920 ''')
2921
2922
2923 lib_bind_fi_files = Split('''
2924     menus.bind
2925 ''')
2926
2927
2928 lib_bind_sv_files = Split('''
2929     menus.bind
2930 ''')
2931
2932
2933 lib_bind_pt_files = Split('''
2934     menus.bind
2935 ''')
2936
2937
2938 lib_bind_de_files = Split('''
2939     menus.bind
2940 ''')
2941
2942
2943 lib_commands_files = Split('''
2944     default.def
2945 ''')
2946
2947
2948 boost_extra_files = Split('''
2949     LICENSE_1_0.txt
2950     Makefile.am
2951 ''')
2952
2953
2954 boost_libs_extra_files = Split('''
2955     Makefile.am
2956     README
2957 ''')
2958
2959
2960 boost_libs_signals_extra_files = Split('''
2961     Makefile.am
2962     signals.vcproj
2963 ''')
2964
2965
2966 boost_libs_signals_src_files = Split('''
2967     connection.cpp
2968     named_slot_map.cpp
2969     signal_base.cpp
2970     slot.cpp
2971     trackable.cpp
2972 ''')
2973
2974
2975 boost_libs_signals_src_extra_files = Split('''
2976     Makefile.am
2977     pch.h
2978 ''')
2979
2980
2981 boost_libs_regex_extra_files = Split('''
2982     Makefile.am
2983     regex.vcproj
2984 ''')
2985
2986
2987 boost_libs_regex_src_files = Split('''
2988     c_regex_traits.cpp
2989     cpp_regex_traits.cpp
2990     cregex.cpp
2991     fileiter.cpp
2992     instances.cpp
2993     posix_api.cpp
2994     regex.cpp
2995     regex_debug.cpp
2996     regex_raw_buffer.cpp
2997     regex_traits_defaults.cpp
2998     w32_regex_traits.cpp
2999     wide_posix_api.cpp
3000     winstances.cpp
3001 ''')
3002
3003
3004 boost_libs_regex_src_extra_files = Split('''
3005     Makefile.am
3006     pch.h
3007 ''')
3008
3009
3010
3011 development_Win32_packaging_installer = Split('''
3012     license.rtf
3013     lyx.nsi
3014     settings.nsh
3015 ''')
3016
3017
3018 development_Win32_packaging_installer_graphics = Split('''
3019     header.bmp
3020     wizard.bmp
3021 ''')
3022
3023
3024 development_Win32_packaging_installer_gui = Split('''
3025     external.nsh
3026     langselect.nsh
3027     reinstall.nsh
3028 ''')
3029
3030
3031 development_Win32_packaging_installer_include = Split('''
3032     declarations.nsh
3033     detection.nsh
3034     dictlist.nsh    
3035     filelist.nsh
3036     gui.nsh
3037     init.nsh
3038     langlist.nsh
3039     nsis.nsh
3040     variables.nsh
3041 ''')
3042
3043
3044 development_Win32_packaging_installer_lang = Split('''
3045     english.nsh
3046     french.nsh
3047     german.nsh
3048     italian.nsh
3049 ''')
3050
3051
3052 development_Win32_packaging_installer_setup = Split('''
3053     configure.nsh
3054     install.nsh
3055     reinstall.nsh
3056 ''')