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