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