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