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