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