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