]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
tex2lyx : More descriptive --help message and implement --version (#6827).
[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-as.png
1498     buffer-write.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     textstyle-apply.png
1537     font-noun.png
1538     font-sans.png
1539     footnote-insert.png
1540     href-insert.png
1541     hidetab.png
1542     index-insert.png
1543     info-insert_buffer_vcs-revision.png
1544     label-insert.png
1545     layout-document.png
1546     layout-paragraph.png
1547     layout.png
1548     layout_Description.png
1549     layout_Enumerate.png
1550     layout_Itemize.png
1551     layout_List.png
1552     layout_LyX-Code.png
1553     layout_Scrap.png
1554     layout_Section.png
1555     lyx-quit.png
1556     lyx.png
1557     marginalnote-insert.png
1558     master-buffer-update.png
1559     master-buffer-view.png
1560     math-display.png
1561     math-macro-add-greedy-optional-param.png
1562     math-macro-add-optional-param.png
1563     math-macro-add-param.png
1564     math-macro-append-greedy-param.png
1565     math-macro-make-nonoptional.png
1566     math-macro-make-optional.png
1567     math-macro-remove-greedy-param.png
1568     math-macro-remove-optional-param.png
1569     math-macro-remove-param.png
1570     math-macro_newmacroname_newcommand.png
1571     math-matrix.png
1572     math-mode.png
1573     math-subscript.png
1574     math-superscript.png
1575     nomencl-insert.png
1576     note-insert.png
1577     note-next.png
1578     paste.png
1579     promote.png
1580     psnfss1.png
1581     psnfss2.png
1582     psnfss3.png
1583     psnfss4.png
1584     redo.png
1585     reload.png
1586     script-insert_subscript.png
1587     script-insert_superscript.png
1588     split-view_horizontal.png
1589     split-view_vertical.png
1590     standard.png
1591     tabular-feature_align-decimal.png
1592     tabular-feature_append-column.png
1593     tabular-feature_append-row.png
1594     tabular-feature_delete-column.png
1595     tabular-feature_delete-row.png
1596     tabular-feature_m-align-center.png
1597     tabular-feature_m-align-left.png
1598     tabular-feature_m-align-right.png
1599     tabular-feature_m-valign-bottom.png
1600     tabular-feature_m-valign-middle.png
1601     tabular-feature_m-valign-top.png
1602     tabular-feature_multicolumn.png
1603     tabular-feature_multirow.png
1604     tabular-feature_set-all-lines.png
1605     tabular-feature_set-border-lines.png
1606     tabular-feature_set-longtabular.png
1607     tabular-feature_set-rotate-cell.png
1608     tabular-feature_set-rotate-tabular.png
1609     tabular-feature_toggle-line-bottom.png
1610     tabular-feature_toggle-line-left.png
1611     tabular-feature_toggle-line-right.png
1612     tabular-feature_toggle-line-top.png
1613     tabular-feature_toggle-rotate-cell.png
1614     tabular-feature_toggle-rotate-tabular.png
1615     tabular-feature_unset-all-lines.png
1616     tabular-insert.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     style.png
2051     sub.png
2052     subset.png
2053     subset2.png
2054     subseteq.png
2055     subseteqq.png
2056     subsetneq.png
2057     subsetneqq.png
2058     succ.png
2059     succapprox.png
2060     succcurlyeq.png
2061     succeq.png
2062     succnapprox.png
2063     succnsim.png
2064     succsim.png
2065     sum.png
2066     super.png
2067     supset.png
2068     supset2.png
2069     supseteq.png
2070     supseteqq.png
2071     supsetneq.png
2072     supsetneqq.png
2073     surd.png
2074     swarrow.png
2075     tau.png
2076     textrm_AA.png
2077     textrm_O.png
2078     therefore.png
2079     theta.png
2080     theta2.png
2081     thickapprox.png
2082     thicksim.png
2083     tilde.png
2084     times.png
2085     top.png
2086     triangle.png
2087     triangledown.png
2088     triangleleft.png
2089     trianglelefteq.png
2090     triangleq.png
2091     triangleright.png
2092     trianglerighteq.png
2093     twoheadleftarrow.png
2094     twoheadrightarrow.png
2095     ulcorner.png
2096     underbrace.png
2097     underleftarrow.png
2098     underleftrightarrow.png
2099     underline.png
2100     underrightarrow.png
2101     underscore.png
2102     underset.png
2103     undertilde.png
2104     uparrow.png
2105     uparrow2.png
2106     updownarrow.png
2107     updownarrow2.png
2108     upharpoonleft.png
2109     upharpoonright.png
2110     uplus.png
2111     upsilon.png
2112     upsilon2.png
2113     upuparrows.png
2114     urcorner.png
2115     utilde.png
2116     varepsilon.png
2117     varkappa.png
2118     varnothing.png
2119     varphi.png
2120     varpi.png
2121     varpropto.png
2122     varrho.png
2123     varsigma.png
2124     varsubsetneq.png
2125     varsubsetneqq.png
2126     varsupsetneq.png
2127     varsupsetneqq.png
2128     vartheta.png
2129     vartriangle.png
2130     vartriangleleft.png
2131     vartriangleright.png
2132     vdash.png
2133     vdash2.png
2134     vdash3.png
2135     vdots.png
2136     vec.png
2137     vee.png
2138     veebar.png
2139     vert.png
2140     vert2.png
2141     vphantom.png
2142     Vvdash.png
2143     wedge.png
2144     widehat.png
2145     widetilde.png
2146     wp.png
2147     wr.png
2148     xi.png
2149     xi2.png
2150     zeta.png
2151 ''')
2152
2153
2154 lib_images_math_extra_files = Split('''
2155     ams_arrows.png
2156     ams_misc.png
2157     ams_nrel.png
2158     ams_ops.png
2159     ams_rel.png
2160     arrows.png
2161     bop.png
2162     brel.png
2163     deco.png
2164     deco.png
2165     delim.png
2166     delim0.png
2167     delim1.png
2168     dots.png
2169     font.png
2170     functions.png
2171     greek.png
2172     misc.png
2173     varsz.png
2174 ''')
2175
2176
2177 lib_images_commands_files = Split('''
2178 ''')
2179
2180
2181 lib_images_attic_extra_files = Split('''
2182     dialog-show_mathpanel.png
2183 ''')
2184
2185
2186 # Do not add subscript.sty to lib_tex_files since we don't want to install it
2187 # (it is part of TeXLive). We include it in our source package only so that
2188 # packagers may decide to install it (e.g. for MikTeX).
2189 lib_tex_files = Split('''
2190     broadway.cls
2191     hollywood.cls
2192     lyxchess.sty
2193     lyxskak.sty
2194     revtex.cls
2195 ''')
2196
2197
2198 lib_doc_files = Split('''
2199     Customization.lyx
2200     DummyDocument1.lyx
2201     DummyDocument2.lyx
2202     DummyTextDocument.txt
2203     EmbeddedObjects.lyx
2204     Additional.lyx
2205     Formula-numbering.lyx
2206     Intro.lyx
2207     LaTeXConfig.lyx
2208     LFUNs.lyx
2209     Math.lyx
2210     Shortcuts.lyx
2211     Tutorial.lyx
2212     UserGuide.lyx
2213 ''')
2214
2215
2216 lib_doc_biblio_files = Split('''
2217     alphadin.bst
2218     LyXDocs.bib
2219 ''')
2220
2221
2222 lib_doc_clipart_files = Split('''
2223     Abstract.pdf
2224     BoxInsetDefaultQt4.png
2225     ChangesToolbar.png
2226     ChildDocumentQt4.png
2227     CommentNoteImageQt4.png
2228     endnotes.pdf
2229     ERT.png
2230     escher-lsd.eps
2231     ExternalMaterialQt4.png
2232     ExtraToolbar.png
2233     floatQt4.png
2234     footnoteQt4.png
2235     GreyedOutNoteImageQt4.png
2236     labelQt4.png
2237     LaTeX.png
2238     LyXNoteImageQt4.png
2239     macrobox.png
2240     MacroToolbar.png
2241     macrouse.png
2242     mobius.eps
2243     platypus.eps
2244     referenceQt4.png
2245     SpaceMarker.png
2246     StandardToolbar.png
2247     ToolbarEnvBox.png
2248     ViewToolbar.png
2249     with_fntright.pdf
2250     without_fntright.pdf
2251 ''')
2252
2253
2254 lib_doc_extra_files = Split('''
2255     Makefile.am
2256     README.Documentation
2257 ''')
2258
2259
2260 lib_doc_ca_files = Split('''
2261     Intro.lyx
2262 ''')
2263
2264
2265 lib_doc_cs_files = Split('''
2266     Tutorial.lyx
2267 ''')
2268
2269
2270 lib_doc_de_files = Split('''
2271     Customization.lyx
2272     DummyDocument1.lyx
2273     DummyDocument2.lyx
2274     DummyTextDocument.txt
2275     EmbeddedObjects.lyx
2276     Additional.lyx
2277     Formelnummerierung.lyx
2278     Intro.lyx
2279     Math.lyx
2280     Shortcuts.lyx
2281     Tutorial.lyx
2282     UserGuide.lyx
2283 ''')
2284
2285
2286 lib_doc_de_clipart_files = Split('''
2287     ERT.png
2288     ExternesMaterialQt4.png
2289     FussnoteQt4.png
2290     GleitobjektQt4.png
2291     GrauschriftNotizQt4.png
2292     KommentarQt4.png
2293     LyXNotizQt4.png
2294     Marke.png
2295     Querverweis.png
2296     StandardBoxQt4.png
2297     UnterdokumentQt4.png
2298 ''')
2299
2300
2301 lib_doc_da_files = Split('''
2302     Intro.lyx
2303 ''')
2304
2305
2306 lib_doc_el_files = Split('''
2307     Intro.lyx
2308 ''')
2309
2310
2311 lib_doc_es_files = Split('''
2312     Customization.lyx
2313     DocumentoPostizo1.lyx
2314     DocumentoPostizo2.lyx
2315     DocumentoTextoPostizo.txt
2316     EmbeddedObjects.lyx
2317     Additional.lyx
2318     Formula-numbering.lyx
2319     Intro.lyx
2320     Math.lyx
2321     Shortcuts.lyx
2322     Tutorial.lyx
2323     UserGuide.lyx
2324 ''')
2325
2326
2327 lib_doc_es_clipart_files = Split('''
2328     ComentNotaImagenQt4.png
2329     CuadroMinipagQt4.png
2330     DocumentoHijoQt4.png
2331     es_ERT.png
2332     es_ToolbarEnvBox.png
2333     etiquetaQt4.png
2334     flotanteQt4.png
2335     GrisNotaImagenQt4.png
2336     MaterialExternoQt4.png
2337     NotaLyXImagenQt4.png
2338     notapieQt4.png
2339     referenciaQt4.png
2340     Resumen.pdf
2341 ''')
2342
2343
2344 lib_doc_eu_files = Split('''
2345     Customization.lyx
2346     Additional.lyx
2347     Intro.lyx
2348     Tutorial.lyx
2349     UserGuide.lyx
2350 ''')
2351
2352
2353 lib_doc_fr_files = Split('''
2354     Customization.lyx
2355     DocumentBidon1.lyx
2356     DocumentBidon2.lyx
2357     DocumentTexteBidon.txt
2358     EmbeddedObjects.lyx
2359     Additional.lyx
2360     Formula-numbering.lyx
2361     Intro.lyx
2362     Math.lyx
2363     Shortcuts.lyx
2364     Tutorial.lyx
2365     UserGuide.lyx
2366 ''')
2367
2368
2369 lib_doc_fr_clipart_files = Split('''
2370     BoxInsetDefaultQt4.png
2371     ChildDocumentQt4.png
2372     CommentNoteImageQt4.png
2373     floatQt4.png
2374     footnoteQt4.png
2375     GreyedOutNoteImageQt4.png
2376     labelQt4.png
2377     LyXNoteImageQt4.png    
2378 ''')
2379
2380
2381 lib_doc_gl_files = Split('''
2382     Intro.lyx
2383     Tutorial.lyx
2384 ''')
2385
2386
2387 lib_doc_he_files = Split('''
2388     Intro.lyx
2389     Tutorial.lyx
2390 ''')
2391
2392
2393 lib_doc_hu_files = Split('''
2394     Intro.lyx
2395     Tutorial.lyx
2396 ''')
2397
2398
2399 lib_doc_id_files = Split('''
2400     Intro.lyx
2401     Shortcuts.lyx
2402     Tutorial.lyx
2403     UserGuide.lyx
2404 ''')
2405
2406
2407 lib_doc_id_clipart_files = Split('''
2408     id-contrib.png
2409     id-footnote.png
2410     id-lingkungan.png
2411 ''')
2412
2413
2414 lib_doc_it_files = Split('''
2415     Customization.lyx
2416     Intro.lyx
2417     Tutorial.lyx
2418     UserGuide.lyx
2419 ''')
2420
2421
2422 lib_doc_it_clipart_files = Split('''
2423     it_footnoteQt4.png
2424     it_referenceQt4.png
2425 ''')
2426
2427
2428 lib_doc_ja_files = Split('''
2429     Additional.lyx
2430     Customization.lyx
2431     DummyDocument1.lyx
2432     DummyDocument2.lyx
2433     EmbeddedObjects.lyx
2434     Formula-numbering.lyx
2435     Intro.lyx
2436     LaTeXConfig.lyx
2437     Math.lyx
2438     Shortcuts.lyx
2439     Tutorial.lyx
2440     UserGuide.lyx
2441 ''')
2442
2443
2444 lib_doc_ja_clipart_files = Split('''
2445     ChildDocumentQt4.png
2446     ERT.png
2447     ExternalMaterialQt4.png
2448     floatQt4.png
2449     footnoteQt4.png
2450     referenceQt4.png
2451     ToolbarEnvBox.png
2452 ''')
2453
2454
2455 lib_doc_nb_files = Split('''
2456     Intro.lyx
2457 ''')
2458
2459
2460 lib_doc_nl_files = Split('''
2461     Intro.lyx
2462     Tutorial.lyx
2463 ''')
2464
2465
2466 lib_doc_pl_files = Split('''
2467     Additional.lyx
2468     Intro.lyx
2469     Tutorial.lyx
2470 ''')
2471
2472
2473 lib_doc_pt_files = Split('''
2474     Intro.lyx
2475     Tutorial.lyx
2476 ''')
2477
2478
2479 lib_doc_ro_files = Split('''
2480     Intro.lyx
2481 ''')
2482
2483
2484 lib_doc_ru_files = Split('''
2485     Intro.lyx
2486     Tutorial.lyx
2487 ''')
2488
2489
2490 lib_doc_sl_files = Split('''
2491     Intro.lyx
2492     Tutorial.lyx
2493 ''')
2494
2495
2496 lib_doc_sk_files = Split('''
2497     Intro.lyx
2498     Tutorial.lyx
2499     UserGuide.lyx
2500 ''')
2501
2502
2503 lib_doc_sv_files = Split('''
2504     Intro.lyx
2505     Shortcuts.lyx
2506     Tutorial.lyx
2507 ''')
2508
2509
2510 lib_doc_uk_files = Split('''
2511     Intro.lyx
2512 ''')
2513
2514
2515 lib_doc_uk_clipart_files = Split('''
2516     FootnoteQT4.png
2517 ''')
2518
2519
2520 lib_doc_zhCN_files = Split('''
2521     Intro.lyx
2522     Tutorial.lyx
2523 ''')
2524
2525
2526 lib_examples_files = Split('''
2527     aa_sample.lyx
2528     aas_sample.lyx
2529     achemso.lyx
2530     addressExample.adr
2531     amsart-test.lyx
2532     amsbook-test.lyx
2533     armenian-article.lyx
2534     beamer-g4-mask.jpg
2535     beamer-g4.jpg
2536     beamer-icsi-logo.pdf
2537     beamer-knight1-mask.png
2538     beamer-knight1.png
2539     beamer-knight2-mask.png
2540     beamer-knight2.png
2541     beamer-knight3-mask.png
2542     beamer-knight3.png
2543     beamer-knight4-mask.png
2544     beamer-knight4.png
2545     beamerlyxexample1.lyx
2546     biblioExample.bib
2547     Braille.lyx
2548     chess-article.lyx
2549     chessgame.lyx
2550     CV-image.eps
2551     CV-image.png
2552     docbook_article.lyx
2553     europeCV.lyx
2554     example_lyxified.lyx
2555     example_raw.lyx
2556     FeynmanDiagrams.lyx
2557     Foils.lyx
2558     iecc05.fen
2559     iecc07.fen
2560     iecc12.fen
2561     ItemizeBullets.lyx
2562     landslide.lyx
2563     lilypond.lyx
2564     linguistics.lyx
2565     listerrors.lyx
2566     Literate.lyx
2567     localization_test.lyx
2568     modernCV.lyx
2569     noweb2lyx.lyx
2570     powerdot-example.lyx
2571     recipebook.lyx
2572     R-S-statements.lyx
2573     script_form.lyx
2574     seminar.lyx
2575     serial_letter1.lyx
2576     serial_letter2.lyx
2577     serial_letter3.lyx
2578     simplecv.lyx
2579     splash.lyx
2580     sweave.lyx
2581     tufte-book.lyx
2582     tufte-handout.lyx
2583     xyfigure.png
2584     xypic.lyx
2585 ''')
2586
2587
2588 lib_examples_ca_files = Split('''
2589     ItemizeBullets.lyx
2590     mathed.lyx
2591     splash.lyx
2592 ''')
2593
2594
2595 lib_examples_cs_files = Split('''
2596     splash.lyx
2597     priklad_zLyXovany.lyx
2598     priklad_syrovy.lyx
2599 ''')
2600
2601
2602 lib_examples_da_files = Split('''
2603     splash.lyx
2604 ''')
2605
2606
2607 lib_examples_de_files = Split('''
2608     beispiel_gelyxt.lyx
2609     beispiel_roh.lyx
2610     Braille.lyx
2611     Dezimal.lyx
2612     ItemizeBullets.lyx
2613     Lebenslauf.lyx
2614     linguistics.lyx
2615     serienbrief1.lyx
2616     serienbrief2.lyx
2617     serienbrief3.lyx
2618     splash.lyx
2619     tufte-handout.lyx
2620 ''')
2621
2622
2623 lib_examples_el_files = Split('''
2624     splash.lyx
2625 ''')
2626
2627
2628 lib_examples_es_files = Split('''
2629     Braille.lyx
2630     ejemplo_con_lyx.lyx
2631     ejemplo_sin_lyx.lyx
2632     ItemizeBullets.lyx
2633     linguistics.lyx
2634     splash.lyx
2635     tufte-book.lyx
2636     tufte-handout.lyx
2637 ''')
2638
2639
2640 lib_examples_fa_files = Split('''
2641     splash.lyx
2642 ''')
2643
2644
2645 lib_examples_fr_files = Split('''
2646     AlignementDecimal.lyx
2647     Braille.lyx
2648     exemple_brut.lyx
2649     exemple_lyxifie.lyx
2650     exemple-powerdot.lyx
2651     FeynmanDiagrams.lyx
2652     Foils.lyx
2653     linguistics.lyx
2654     ListesPuces.lyx
2655     seminar.lyx
2656     simplecv.lyx
2657     splash.lyx
2658     xyfigure.png
2659     xypic.lyx
2660 ''')
2661
2662
2663 lib_examples_eu_files = Split('''
2664     adibide_gordina.lyx
2665     adibide_lyx-atua.lyx
2666     splash.lyx
2667 ''')
2668
2669
2670 lib_examples_gl_files = Split('''
2671     exemplo_bruto.lyx
2672     exemplo_lyxificado.lyx
2673     splash.lyx
2674 ''')
2675
2676
2677 lib_examples_he_files = Split('''
2678     example_lyxified.lyx
2679     example_raw.lyx
2680     splash.lyx
2681 ''')
2682
2683
2684 lib_examples_hu_files = Split('''
2685     example_lyxified.lyx
2686     example_raw.lyx
2687     splash.lyx
2688 ''')
2689
2690
2691 lib_examples_id_files = Split('''
2692     splash.lyx
2693 ''')
2694
2695
2696 lib_examples_it_files = Split('''
2697     ItemizeBullets.lyx
2698     splash.lyx
2699 ''')
2700
2701
2702 lib_examples_ja_files = Split('''
2703     Braille.lyx
2704     FeynmanDiagrams.lyx
2705     linguistics.lyx
2706     splash.lyx
2707     xyfigure.png
2708     xypic.lyx
2709 ''')
2710
2711
2712 lib_examples_nl_files = Split('''
2713     opsommingstekens.lyx
2714     splash.lyx
2715     voorbeeld_ruw.lyx
2716     voorbeeld_verlyxt.lyx
2717 ''')
2718
2719
2720 lib_examples_pl_files = Split('''
2721     splash.lyx
2722 ''')
2723
2724
2725 lib_examples_pt_files = Split('''
2726     splash.lyx
2727 ''')
2728
2729
2730 lib_examples_ro_files = Split('''
2731     splash.lyx
2732 ''')
2733
2734
2735 lib_examples_ru_files = Split('''
2736     splash.lyx
2737 ''')
2738
2739
2740 lib_examples_sk_files = Split('''
2741     splash.lyx
2742 ''')
2743
2744
2745 lib_examples_sl_files = Split('''
2746     primer_lyxan.lyx
2747     primer_surov.lyx
2748     splash.lyx
2749 ''')
2750
2751
2752 lib_examples_sr_files = Split('''
2753     Braille.lyx
2754     splash.lyx
2755 ''')
2756
2757
2758 lib_examples_sv_files = Split('''
2759     splash.lyx
2760 ''')
2761
2762
2763 lib_examples_uk_files = Split('''
2764     splash.lyx
2765 ''')
2766
2767
2768 lib_lyx2lyx_files = Split('''
2769     generate_encoding_info.py
2770     LyX.py
2771     lyx2lyx
2772     lyx2lyx_lang.py
2773     lyx_0_06.py
2774     lyx_0_08.py
2775     lyx_0_10.py
2776     lyx_0_12.py
2777     lyx_1_0.py
2778     lyx_1_1.py
2779     lyx_1_1_5.py
2780     lyx_1_1_6_0.py
2781     lyx_1_1_6_3.py
2782     lyx_1_2.py
2783     lyx_1_3.py
2784     lyx_1_4.py
2785     lyx_1_5.py
2786     lyx_1_6.py
2787     lyx_2_0.py
2788     lyx_2_1.py
2789     lyx2lyx_tools.py
2790     parser_tools.py
2791     profiling.py
2792     test_parser_tools.py
2793     unicode_symbols.py
2794 ''')
2795
2796
2797 lib_lyx2lyx_extra_files = Split('''
2798     lyx2lyx_version.py.in
2799     Makefile.am
2800 ''')
2801
2802
2803 lib_layouts_files = Split('''
2804     aa.layout
2805     aapaper.layout
2806     aastex.layout
2807     achemso.layout
2808     acmsiggraph.layout
2809     AEA.layout
2810     agutex.layout
2811     agu-dtd.layout
2812     agums.layout
2813     amsart.layout
2814     amsbook.layout
2815     apa.layout
2816     arab-article.layout
2817     armenian-article.layout
2818     article.layout
2819     article-beamer.layout
2820     beamer.layout
2821     book.layout
2822     broadway.layout
2823     chess.layout
2824     cl2emult.layout
2825     customHeadersFooters.module
2826     dinbrief.layout
2827     docbook-book.layout
2828     docbook-chapter.layout
2829     docbook-section.layout
2830     docbook.layout
2831     doublecol-new.layout
2832     dtk.layout
2833     ectaart.layout
2834     egs.layout
2835     elsart.layout
2836     elsarticle.layout
2837     entcs.layout
2838     enumitem.module
2839     europecv.layout
2840     extarticle.layout
2841     extbook.layout
2842     extletter.layout
2843     extreport.layout
2844     foils.layout
2845     frletter.layout
2846     g-brief.layout
2847     g-brief2.layout
2848     heb-article.layout
2849     heb-letter.layout
2850     hollywood.layout
2851     IEEEtran.layout
2852     ijmpc.layout
2853     ijmpd.layout
2854     iopart.layout
2855     isprs.layout
2856     jarticle.layout
2857     jbook.layout
2858     jgrga.layout
2859     jreport.layout
2860     jsarticle.layout
2861     jsbook.layout
2862     jss.layout
2863     kluwer.layout
2864     latex8.layout
2865     letter.layout
2866     lettre.layout
2867     literate-article.layout
2868     literate-book.layout
2869     literate-report.layout
2870     llncs.layout
2871     ltugboat.layout
2872     memoir.layout
2873     moderncv.layout
2874     mwart.layout
2875     mwbk.layout
2876     mwrep.layout
2877     paper.layout
2878     powerdot.layout
2879     recipebook.layout
2880     report.layout
2881     revtex.layout
2882     revtex4.layout
2883     revtex4-1.layout
2884     scrartcl.layout
2885     scrarticle-beamer.layout
2886     scrbook.layout
2887     scrlettr.layout
2888     scrlttr2.layout
2889     scrreprt.layout
2890     seminar.layout
2891     siamltex.layout
2892     sigplanconf.layout
2893     simplecv.layout
2894     singlecol.layout
2895     singlecol-new.layout
2896     slides.layout
2897     spie.layout
2898     svglobal.layout
2899     svglobal3.layout
2900     svjog.layout
2901     svmono.layout
2902     svmult.layout
2903     svprobth.layout
2904     tarticle.layout
2905     tbook.layout
2906     treport.layout
2907     tufte-book.layout
2908     tufte-handout.layout
2909 ''')
2910
2911
2912 lib_layouts_inc_files = Split('''
2913     aapaper.inc
2914     agu_stdclass.inc
2915     agu_stdcounters.inc
2916     agu_stdlists.inc
2917     agu_stdsections.inc
2918     agu_stdtitle.inc
2919     aguplus.inc
2920     amsdefs.inc
2921     db_lyxmacros.inc
2922     db_stdcharstyles.inc
2923     db_stdclass.inc
2924     db_stdcounters.inc
2925     db_stdlayouts.inc
2926     db_stdlists.inc
2927     db_stdsections.inc
2928     db_stdstarsections.inc
2929     db_stdstruct.inc
2930     db_stdtitle.inc
2931     literate-scrap.inc
2932     lyxmacros.inc
2933     numarticle.inc
2934     numreport.inc
2935     numrevtex.inc
2936     scrclass.inc
2937     stdcharstyles.inc
2938     stdciteformats.inc
2939     stdclass.inc
2940     stdcounters.inc
2941     stdcustom.inc
2942     stdfloats.inc
2943     stdinsets.inc
2944     stdlayouts.inc
2945     stdletter.inc
2946     stdlists.inc
2947     stdlyxlist.inc 
2948     stdrefprefix.inc
2949     stdsections.inc
2950     stdstarsections.inc
2951     stdstruct.inc
2952     stdtitle.inc
2953     svcommon.inc
2954     theorems.inc
2955     theorems-ams.inc
2956     theorems-ams-bytype.inc
2957     theorems-bytype.inc
2958     theorems-order.inc
2959     theorems-proof.inc
2960     theorems-proof-std.inc
2961     theorems-refprefix.inc
2962     theorems-starred.inc
2963     theorems-starred-equivalents.inc
2964     theorems-without-preamble.inc
2965 ''')
2966
2967
2968 lib_layouts_module_files = Split('''
2969     braille.module
2970     endnotes.module
2971     eqs-within-sections.module
2972     figs-within-sections.module
2973     fixltx2e.module
2974     fix-cm.module
2975     foottoend.module
2976     hanging.module
2977     initials.module
2978     lilypond.module
2979     linguistics.module
2980     logicalmkup.module
2981     minimalistic.module
2982     multicol.module
2983     noweb.module
2984     rsphrase.module
2985     sweave.module
2986     tabs-within-sections.module
2987     theorems-ams-bytype.module
2988     theorems-ams-extended.module
2989     theorems-ams-extended-bytype.module
2990     theorems-ams.module
2991     theorems-bytype.module
2992     theorems-chap-bytype.module
2993     theorems-chap.module
2994     theorems-named.module
2995     theorems-sec-bytype.module
2996     theorems-sec.module
2997     theorems-starred.module
2998     theorems-std.module
2999 ''')
3000
3001 lib_scripts_files = Split('''
3002     bash_completion
3003     clean_dvi.py
3004     convertDefault.py
3005     csv2lyx.py
3006     date.py
3007     ext_copy.py
3008     fen2ascii.py
3009     fig2pdftex.py
3010     fig2pstex.py
3011     fig_copy.py
3012     include_bib.py
3013     layout2layout.py
3014     legacy_lyxpreview2ppm.py
3015     listerrors
3016     libreoffice2eps.py
3017     lyxpak.py
3018     lyxpreview2bitmap.py
3019     lyxpreview_tools.py
3020     lyxstangle.R
3021     lyxsweave.R
3022     prefs2prefs.py
3023     prefs2prefs_lfuns.py
3024     prefs2prefs_prefs.py
3025     TeXFiles.py
3026     tex_copy.py
3027 ''')
3028
3029
3030 lib_bind_files = Split('''
3031     aqua.bind
3032     broadway.bind
3033     cua.bind
3034     cyrkeys.bind
3035     emacs.bind
3036     greekkeys.bind
3037     hollywood.bind
3038     latinkeys.bind
3039     mac.bind
3040     math.bind
3041     menus.bind
3042     sciword.bind
3043     site.bind
3044     xemacs.bind
3045 ''')
3046
3047
3048 lib_bind_de_files = Split('''
3049     menus.bind
3050 ''')
3051
3052
3053 lib_commands_files = Split('''
3054     default.def
3055 ''')
3056
3057
3058 boost_extra_files = Split('''
3059     LICENSE_1_0.txt
3060     Makefile.am
3061 ''')
3062
3063
3064 boost_libs_extra_files = Split('''
3065     Makefile.am
3066     README
3067 ''')
3068
3069
3070 boost_libs_signals_extra_files = Split('''
3071     Makefile.am
3072     signals.vcproj
3073 ''')
3074
3075
3076 boost_libs_signals_src_files = Split('''
3077     connection.cpp
3078     named_slot_map.cpp
3079     signal_base.cpp
3080     slot.cpp
3081     trackable.cpp
3082 ''')
3083
3084
3085 boost_libs_signals_src_extra_files = Split('''
3086     Makefile.am
3087     pch.h
3088 ''')
3089
3090
3091 boost_libs_regex_extra_files = Split('''
3092     Makefile.am
3093     regex.vcproj
3094 ''')
3095
3096
3097 boost_libs_regex_src_files = Split('''
3098     c_regex_traits.cpp
3099     cpp_regex_traits.cpp
3100     cregex.cpp
3101     fileiter.cpp
3102     instances.cpp
3103     posix_api.cpp
3104     regex.cpp
3105     regex_debug.cpp
3106     regex_raw_buffer.cpp
3107     regex_traits_defaults.cpp
3108     w32_regex_traits.cpp
3109     wide_posix_api.cpp
3110     winstances.cpp
3111 ''')
3112
3113
3114 boost_libs_regex_src_extra_files = Split('''
3115     Makefile.am
3116     pch.h
3117 ''')
3118
3119
3120
3121 development_Win32_packaging_installer = Split('''
3122     license.rtf
3123     lyx.nsi
3124     settings.nsh
3125 ''')
3126
3127
3128 development_Win32_packaging_installer_graphics = Split('''
3129     header.bmp
3130     wizard.bmp
3131 ''')
3132
3133
3134 development_Win32_packaging_installer_gui = Split('''
3135     external.nsh
3136     langselect.nsh
3137     reinstall.nsh
3138 ''')
3139
3140
3141 development_Win32_packaging_installer_include = Split('''
3142     declarations.nsh
3143     detection.nsh
3144     dictlist.nsh    
3145     filelist.nsh
3146     gui.nsh
3147     init.nsh
3148     langlist.nsh
3149     nsis.nsh
3150     variables.nsh
3151 ''')
3152
3153
3154 development_Win32_packaging_installer_lang = Split('''
3155     english.nsh
3156     french.nsh
3157     german.nsh
3158     italian.nsh
3159 ''')
3160
3161
3162 development_Win32_packaging_installer_setup = Split('''
3163     configure.nsh
3164     install.nsh
3165     reinstall.nsh
3166 ''')