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