]> git.lyx.org Git - features.git/blob - development/scons/scons_manifest.py
svjour3.lyx: move to springer folder (svmult_***-files will follow when they are...
[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     revtex4-1.lyx
1386     slides.lyx
1387     svmult_appendix.lyx
1388     svmult_author.lyx
1389     svmult_editor.lyx
1390 ''')
1391
1392
1393 lib_templates_springer_files = Split('''
1394     acknow.lyx
1395     acronym.lyx
1396     appendix.lyx
1397     chapter.lyx
1398     dedication.lyx
1399     foreword.lyx
1400     glossary.lyx
1401     part.lyx
1402     preface.lyx
1403     referenc.lyx
1404     solutions.lyx
1405     svjour3.lyx
1406     svmono_book.lyx
1407 ''')
1408
1409
1410 lib_templates_thesis_files = Split('''
1411     Acknowledgments.lyx
1412     Appendix.lyx
1413     alpha.bst
1414     chapter-1.lyx
1415     chapter-2.lyx
1416     Summary.lyx
1417     thesis.lyx
1418     thesisExample.bib
1419 ''')
1420
1421
1422 lib_ui_files = Split('''
1423     default.ui
1424     stdcontext.inc
1425     stdmenus.inc
1426     stdtoolbars.inc
1427 ''')
1428
1429
1430 lib_fonts_files = Split('''
1431     BaKoMaFontLicense.txt
1432     cmex10.ttf
1433     cmmi10.ttf
1434     cmr10.ttf
1435     cmsy10.ttf
1436     esint10.ttf
1437     eufm10.ttf
1438     msam10.ttf
1439     msbm10.ttf
1440     ReadmeBaKoMa4LyX.txt
1441     rsfs10.ttf
1442     wasy10.ttf
1443 ''')
1444
1445
1446 lib_images_files = Split('''
1447     all-changes-accept.png
1448     all-changes-reject.png
1449     amssymb.png
1450     banner.png
1451     bookmark-goto.png
1452     bookmark-goto_0.png
1453     bookmark-save.png
1454     box-insert.png
1455     break-line.png
1456     buffer-close.png
1457     buffer-export.png
1458     buffer-export_dvi.png
1459     buffer-export_dvi3.png
1460     buffer-export_latex.png
1461     buffer-export_pdf.png
1462     buffer-export_pdf2.png
1463     buffer-export_pdf3.png
1464     buffer-export_pdf4.png
1465     buffer-export_pdf5.png
1466     buffer-export_ps.png
1467     buffer-export_text.png
1468     buffer-new.png
1469     buffer-reload.png
1470     buffer-toggle-output-sync.png
1471     buffer-update.png
1472     buffer-update_dvi.png
1473     buffer-update_dvi3.png
1474     buffer-update_pdf.png
1475     buffer-update_pdf2.png
1476     buffer-update_pdf3.png
1477     buffer-update_pdf4.png
1478     buffer-update_pdf5.png
1479     buffer-update_ps.png
1480     buffer-view.png
1481     buffer-view_dvi.png
1482     buffer-view_dvi3.png
1483     buffer-view_pdf.png
1484     buffer-view_pdf2.png
1485     buffer-view_pdf3.png
1486     buffer-view_pdf4.png
1487     buffer-view_pdf5.png
1488     buffer-view_ps.png
1489     buffer-write-as.png
1490     buffer-write.png
1491     build-program.png
1492     busy.gif
1493     change-accept.png
1494     change-next.png
1495     change-reject.png
1496     changes-merge.png
1497     changes-output.png
1498     changes-track.png
1499     closetab.png
1500     close-tab-group.png
1501     copy.png
1502     cut.png
1503     demote.png
1504     depth-decrement.png
1505     depth-increment.png
1506     dialog-preferences.png
1507     dialog-show-new-inset_citation.png
1508     dialog-show-new-inset_graphics.png
1509     dialog-show-new-inset_include.png
1510     dialog-show-new-inset_ref.png
1511     dialog-show_character.png
1512     dialog-show_findreplace.png
1513     dialog-show_mathdelimiter.png
1514     dialog-show_mathmatrix.png
1515     dialog-show_print.png
1516     dialog-show_spellchecker.png
1517     dialog-show_vclog.png
1518     dialog-toggle_findreplaceadv.png
1519     dialog-toggle_toc.png
1520     down.png
1521     editclear.png
1522     ert-insert.png
1523     file-open.png
1524     float-insert_figure.png
1525     float-insert_table.png
1526     font-bold.png
1527     font-emph.png
1528     textstyle-apply.png
1529     font-noun.png
1530     font-sans.png
1531     footnote-insert.png
1532     href-insert.png
1533     hidetab.png
1534     index-insert.png
1535     info-insert_buffer_vcs-revision.png
1536     label-insert.png
1537     layout-document.png
1538     layout-paragraph.png
1539     layout.png
1540     layout_Description.png
1541     layout_Enumerate.png
1542     layout_Itemize.png
1543     layout_List.png
1544     layout_LyX-Code.png
1545     layout_Scrap.png
1546     layout_Section.png
1547     lyx-quit.png
1548     lyx.png
1549     marginalnote-insert.png
1550     master-buffer-update.png
1551     master-buffer-view.png
1552     math-display.png
1553     math-macro-add-greedy-optional-param.png
1554     math-macro-add-optional-param.png
1555     math-macro-add-param.png
1556     math-macro-append-greedy-param.png
1557     math-macro-make-nonoptional.png
1558     math-macro-make-optional.png
1559     math-macro-remove-greedy-param.png
1560     math-macro-remove-optional-param.png
1561     math-macro-remove-param.png
1562     math-macro_newmacroname_newcommand.png
1563     math-matrix.png
1564     math-mode.png
1565     math-subscript.png
1566     math-superscript.png
1567     nomencl-insert.png
1568     note-insert.png
1569     note-next.png
1570     paste.png
1571     promote.png
1572     psnfss1.png
1573     psnfss2.png
1574     psnfss3.png
1575     psnfss4.png
1576     redo.png
1577     reload.png
1578     script-insert_subscript.png
1579     script-insert_superscript.png
1580     split-view_horizontal.png
1581     split-view_vertical.png
1582     standard.png
1583     tabular-feature_align-decimal.png
1584     tabular-feature_append-column.png
1585     tabular-feature_append-row.png
1586     tabular-feature_delete-column.png
1587     tabular-feature_delete-row.png
1588     tabular-feature_m-align-center.png
1589     tabular-feature_m-align-left.png
1590     tabular-feature_m-align-right.png
1591     tabular-feature_m-valign-bottom.png
1592     tabular-feature_m-valign-middle.png
1593     tabular-feature_m-valign-top.png
1594     tabular-feature_multicolumn.png
1595     tabular-feature_multirow.png
1596     tabular-feature_set-all-lines.png
1597     tabular-feature_set-border-lines.png
1598     tabular-feature_set-longtabular.png
1599     tabular-feature_set-rotate-cell.png
1600     tabular-feature_set-rotate-tabular.png
1601     tabular-feature_toggle-line-bottom.png
1602     tabular-feature_toggle-line-left.png
1603     tabular-feature_toggle-line-right.png
1604     tabular-feature_toggle-line-top.png
1605     tabular-feature_toggle-rotate-cell.png
1606     tabular-feature_toggle-rotate-tabular.png
1607     tabular-feature_unset-all-lines.png
1608     tabular-insert.png
1609     thesaurus-entry.png
1610     toolbar-toggle_math.png
1611     toolbar-toggle_math_panels.png
1612     toolbar-toggle_table.png
1613     undo.png
1614     unknown.png
1615     up.png
1616     update-others.png
1617     url-insert.png
1618     vc-compare.png
1619     vc-compare_0.png
1620     vc-check-in.png
1621     vc-check-out.png
1622     vc-locking-toggle.png
1623     vc-register.png
1624     vc-repo-update.png
1625     vc-revert.png
1626     view-others.png
1627 ''')
1628
1629
1630 lib_images_extra_files = Split('''
1631     font-smallcaps.png
1632     README
1633 ''')
1634
1635
1636 lib_images_math_files = Split('''
1637     acute.png
1638     adots.png
1639     aleph.png
1640     alpha.png
1641     amalg.png
1642     angle.png
1643     approx.png
1644     approxeq.png
1645     asymp.png
1646     backepsilon.png
1647     backprime.png
1648     backsim.png
1649     backsimeq.png
1650     backslash.png
1651     bar.png
1652     bars.png
1653     barwedge.png
1654     Bbbk.png
1655     because.png
1656     beta.png
1657     beth.png
1658     between.png
1659     bigcap.png
1660     bigcirc.png
1661     bigcup.png
1662     bigodot.png
1663     bigoplus.png
1664     bigotimes.png
1665     bigsqcup.png
1666     bigstar.png
1667     bigtriangledown.png
1668     bigtriangleup.png
1669     biguplus.png
1670     bigvee.png
1671     bigwedge.png
1672     blacklozenge.png
1673     blacksquare.png
1674     blacktriangle.png
1675     blacktriangledown.png
1676     blacktriangleleft.png
1677     blacktriangleright.png
1678     bot.png
1679     bowtie.png
1680     boxdot.png
1681     boxminus.png
1682     boxplus.png
1683     boxtimes.png
1684     breve.png
1685     bullet.png
1686     bumpeq.png
1687     bumpeq2.png
1688     cap.png
1689     cap2.png
1690     cases.png
1691     cdot.png
1692     cdots.png
1693     centerdot.png
1694     check.png
1695     chi.png
1696     circ.png
1697     circeq.png
1698     circlearrowleft.png
1699     circlearrowright.png
1700     circledS.png
1701     circledast.png
1702     circledcirc.png
1703     circleddash.png
1704     clubsuit.png
1705     complement.png
1706     cong.png
1707     coprod.png
1708     cup.png
1709     cup2.png
1710     curlyeqprec.png
1711     curlyeqsucc.png
1712     curlyvee.png
1713     curlywedge.png
1714     curvearrowleft.png
1715     curvearrowright.png
1716     dagger.png
1717     daleth.png
1718     dashleftarrow.png
1719     dashrightarrow.png
1720     dashv.png
1721     ddagger.png
1722     ddddot.png
1723     dddot.png
1724     ddot.png
1725     ddots.png
1726     delim.png
1727     delta.png
1728     delta2.png
1729     diagdown.png
1730     diagup.png
1731     diamond.png
1732     diamond2.png
1733     diamondsuit.png
1734     digamma.png
1735     div.png
1736     divideontimes.png
1737     dot.png
1738     doteq.png
1739     doteqdot.png
1740     dotplus.png
1741     dotsint.png
1742     dotsintop.png
1743     doublebarwedge.png
1744     downarrow.png
1745     downarrow2.png
1746     downdownarrows.png
1747     downharpoonleft.png
1748     downharpoonright.png
1749     ell.png
1750     empty.png
1751     emptyset.png
1752     epsilon.png
1753     eqcirc.png
1754     eqslantgtr.png
1755     eqslantless.png
1756     equation.png
1757     equiv.png
1758     eta.png
1759     eth.png
1760     exists.png
1761     export-others.png
1762     fallingdotseq.png
1763     fint.png
1764     fintop.png
1765     Finv.png
1766     flat.png
1767     font.png
1768     forall.png
1769     frac-square.png
1770     frac.png
1771     frown.png
1772     functions.png
1773     Game.png
1774     gamma.png
1775     gamma2.png
1776     geq.png
1777     geqq.png
1778     geqslant.png
1779     gg.png
1780     ggg.png
1781     gimel.png
1782     gnapprox.png
1783     gneq.png
1784     gneqq.png
1785     gnsim.png
1786     grave.png
1787     gtrapprox.png
1788     gtrdot.png
1789     gtreqless.png
1790     gtreqqless.png
1791     gtrless.png
1792     gtrsim.png
1793     gvertneqq.png
1794     hat.png
1795     hbar.png
1796     heartsuit.png
1797     hookleftarrow.png
1798     hookrightarrow.png
1799     hphantom.png
1800     hslash.png
1801     iddots.png
1802     iiiint.png
1803     iiiintop.png
1804     iiint.png
1805     iiintop.png
1806     iint.png
1807     iintop.png
1808     Im.png
1809     imath.png
1810     in.png
1811     infty.png
1812     int.png
1813     intercal.png
1814     intop.png
1815     iota.png
1816     jmath.png
1817     kappa.png
1818     lambda.png
1819     lambda2.png
1820     landdownint.png
1821     landdownintop.png
1822     landupint.png
1823     landupintop.png
1824     langle.png
1825     lbrace.png
1826     lbrace_rbrace.png
1827     lbracket.png
1828     lbracket_rbracket.png
1829     lceil.png
1830     lceil_rceil.png
1831     ldots.png
1832     leftarrow.png
1833     leftarrow2.png
1834     leftarrowtail.png
1835     leftharpoondown.png
1836     leftharpoonup.png
1837     leftleftarrows.png
1838     leftrightarrow.png
1839     leftrightarrow2.png
1840     leftrightarrows.png
1841     leftrightharpoons.png
1842     leftrightsquigarrow.png
1843     leftthreetimes.png
1844     leq.png
1845     leqq.png
1846     leqslant.png
1847     lessapprox.png
1848     lessdot.png
1849     lesseqgtr.png
1850     lesseqqgtr.png
1851     lessgtr.png
1852     lesssim.png
1853     lfloor.png
1854     lfloor_rfloor.png
1855     ll.png
1856     llcorner.png
1857     Lleftarrow.png
1858     lll.png
1859     lnapprox.png
1860     lneq.png
1861     lneqq.png
1862     lnsim.png
1863     longleftarrow.png
1864     longleftarrow2.png
1865     longleftrightarrow.png
1866     longleftrightarrow2.png
1867     longmapsto.png
1868     longrightarrow.png
1869     longrightarrow2.png
1870     looparrowleft.png
1871     looparrowright.png
1872     lozenge.png
1873     lparen.png
1874     lparen_rparen.png
1875     lrcorner.png
1876     Lsh.png
1877     ltimes.png
1878     lvertneqq.png
1879     mapsto.png
1880     mathbb_C.png
1881     mathbb_H.png
1882     mathbb_N.png
1883     mathbb_Q.png
1884     mathbb_R.png
1885     mathbb_Z.png
1886     mathcal_F.png
1887     mathcal_H.png
1888     mathcal_L.png
1889     mathcal_O.png
1890     mathcircumflex.png
1891     mathrm_T.png
1892     matrix.png
1893     measuredangle.png
1894     mho.png
1895     mid.png
1896     models.png
1897     mp.png
1898     mu.png
1899     multimap.png
1900     nabla.png
1901     natural.png
1902     ncong.png
1903     nearrow.png
1904     neg.png
1905     neq.png
1906     nexists.png
1907     ngeq.png
1908     ngeqq.png
1909     ngeqslant.png
1910     ngtr.png
1911     ni.png
1912     nleftarrow.png
1913     nleftarrow2.png
1914     nleftrightarrow.png
1915     nleftrightarrow2.png
1916     nleq.png
1917     nleqq.png
1918     nleqslant.png
1919     nless.png
1920     nmid.png
1921     notin.png
1922     nparallel.png
1923     nprec.png
1924     npreceq.png
1925     nrightarrow.png
1926     nrightarrow2.png
1927     nshortmid.png
1928     nshortparallel.png
1929     nsim.png
1930     nsubseteq.png
1931     nsucc.png
1932     nsucceq.png
1933     nsupseteq.png
1934     nsupseteqq.png
1935     ntriangleleft.png
1936     ntrianglelefteq.png
1937     ntriangleright.png
1938     ntrianglerighteq.png
1939     nu.png
1940     nvdash.png
1941     nvdash2.png
1942     nvdash3.png
1943     nwarrow.png
1944     odot.png
1945     oiint.png
1946     oiintop.png
1947     oint.png
1948     ointclockwise.png
1949     ointclockwiseop.png
1950     ointctrclockwise.png
1951     ointctrclockwiseop.png
1952     ointop.png
1953     omega.png
1954     omega2.png
1955     ominus.png
1956     oplus.png
1957     oslash.png
1958     otimes.png
1959     overbrace.png
1960     overleftarrow.png
1961     overleftrightarrow.png
1962     overline.png
1963     overrightarrow.png
1964     overset.png
1965     parallel.png
1966     partial.png
1967     perp.png
1968     phantom.png
1969     phi.png
1970     phi2.png
1971     pi.png
1972     pi2.png
1973     pitchfork.png
1974     pm.png
1975     prec.png
1976     precapprox.png
1977     preccurlyeq.png
1978     preceq.png
1979     precnapprox.png
1980     precnsim.png
1981     precsim.png
1982     prime.png
1983     prod.png
1984     propto.png
1985     psi.png
1986     psi2.png
1987     rangle.png
1988     rbrace.png
1989     rbracket.png
1990     rceil.png
1991     Re.png
1992     rfloor.png
1993     rho.png
1994     rightarrow.png
1995     rightarrow2.png
1996     rightarrowtail.png
1997     rightharpoondown.png
1998     rightharpoonup.png
1999     rightleftarrows.png
2000     rightleftharpoons.png
2001     rightrightarrows.png
2002     rightsquigarrow.png
2003     rightthreetimes.png
2004     risingdotseq.png
2005     root.png
2006     rparen.png
2007     Rrightarrow.png
2008     Rsh.png
2009     rtimes.png
2010     searrow.png
2011     setminus.png
2012     sharp.png
2013     shortmid.png
2014     shortparallel.png
2015     sigma.png
2016     sigma2.png
2017     sim.png
2018     simeq.png
2019     slash.png
2020     smallfrown.png
2021     smallsetminus.png
2022     smallsmile.png
2023     smile.png
2024     space.png
2025     spadesuit.png
2026     sphericalangle.png
2027     sqcap.png
2028     sqcup.png
2029     sqiint.png
2030     sqiintop.png
2031     sqint.png
2032     sqintop.png
2033     sqrt-square.png
2034     sqrt.png
2035     sqsubset.png
2036     sqsubseteq.png
2037     sqsupset.png
2038     sqsupseteq.png
2039     square.png
2040     star.png
2041     style.png
2042     style.png
2043     sub.png
2044     subset.png
2045     subset2.png
2046     subseteq.png
2047     subseteqq.png
2048     subsetneq.png
2049     subsetneqq.png
2050     succ.png
2051     succapprox.png
2052     succcurlyeq.png
2053     succeq.png
2054     succnapprox.png
2055     succnsim.png
2056     succsim.png
2057     sum.png
2058     super.png
2059     supset.png
2060     supset2.png
2061     supseteq.png
2062     supseteqq.png
2063     supsetneq.png
2064     supsetneqq.png
2065     surd.png
2066     swarrow.png
2067     tau.png
2068     textrm_AA.png
2069     textrm_O.png
2070     therefore.png
2071     theta.png
2072     theta2.png
2073     thickapprox.png
2074     thicksim.png
2075     tilde.png
2076     times.png
2077     top.png
2078     triangle.png
2079     triangledown.png
2080     triangleleft.png
2081     trianglelefteq.png
2082     triangleq.png
2083     triangleright.png
2084     trianglerighteq.png
2085     twoheadleftarrow.png
2086     twoheadrightarrow.png
2087     ulcorner.png
2088     underbrace.png
2089     underleftarrow.png
2090     underleftrightarrow.png
2091     underline.png
2092     underrightarrow.png
2093     underscore.png
2094     underset.png
2095     undertilde.png
2096     uparrow.png
2097     uparrow2.png
2098     updownarrow.png
2099     updownarrow2.png
2100     upharpoonleft.png
2101     upharpoonright.png
2102     uplus.png
2103     upsilon.png
2104     upsilon2.png
2105     upuparrows.png
2106     urcorner.png
2107     utilde.png
2108     varepsilon.png
2109     varkappa.png
2110     varnothing.png
2111     varphi.png
2112     varpi.png
2113     varpropto.png
2114     varrho.png
2115     varsigma.png
2116     varsubsetneq.png
2117     varsubsetneqq.png
2118     varsupsetneq.png
2119     varsupsetneqq.png
2120     vartheta.png
2121     vartriangle.png
2122     vartriangleleft.png
2123     vartriangleright.png
2124     vdash.png
2125     vdash2.png
2126     vdash3.png
2127     vdots.png
2128     vec.png
2129     vee.png
2130     veebar.png
2131     vert.png
2132     vert2.png
2133     vphantom.png
2134     Vvdash.png
2135     wedge.png
2136     widehat.png
2137     widetilde.png
2138     wp.png
2139     wr.png
2140     xi.png
2141     xi2.png
2142     zeta.png
2143 ''')
2144
2145
2146 lib_images_math_extra_files = Split('''
2147     ams_arrows.png
2148     ams_misc.png
2149     ams_nrel.png
2150     ams_ops.png
2151     ams_rel.png
2152     arrows.png
2153     bop.png
2154     brel.png
2155     deco.png
2156     deco.png
2157     delim.png
2158     delim0.png
2159     delim1.png
2160     dots.png
2161     font.png
2162     functions.png
2163     greek.png
2164     misc.png
2165     varsz.png
2166 ''')
2167
2168
2169 lib_images_commands_files = Split('''
2170 ''')
2171
2172
2173 lib_images_attic_extra_files = Split('''
2174     dialog-show_mathpanel.png
2175 ''')
2176
2177
2178 # Do not add subscript.sty to lib_tex_files since we don't want to install it
2179 # (it is part of TeXLive). We include it in our source package only so that
2180 # packagers may decide to install it (e.g. for MikTeX).
2181 lib_tex_files = Split('''
2182     broadway.cls
2183     hollywood.cls
2184     lyxchess.sty
2185     lyxskak.sty
2186     revtex.cls
2187 ''')
2188
2189
2190 lib_doc_files = Split('''
2191     Customization.lyx
2192     DummyDocument1.lyx
2193     DummyDocument2.lyx
2194     DummyTextDocument.txt
2195     EmbeddedObjects.lyx
2196     Additional.lyx
2197     Formula-numbering.lyx
2198     Intro.lyx
2199     LaTeXConfig.lyx
2200     LFUNs.lyx
2201     Math.lyx
2202     Shortcuts.lyx
2203     Tutorial.lyx
2204     UserGuide.lyx
2205 ''')
2206
2207
2208 lib_doc_biblio_files = Split('''
2209     alphadin.bst
2210     LyXDocs.bib
2211 ''')
2212
2213
2214 lib_doc_clipart_files = Split('''
2215     Abstract.pdf
2216     BoxInsetDefaultQt4.png
2217     ChangesToolbar.png
2218     ChildDocumentQt4.png
2219     CommentNoteImageQt4.png
2220     endnotes.pdf
2221     ERT.png
2222     escher-lsd.eps
2223     ExternalMaterialQt4.png
2224     ExtraToolbar.png
2225     floatQt4.png
2226     footnoteQt4.png
2227     GreyedOutNoteImageQt4.png
2228     labelQt4.png
2229     LaTeX.png
2230     LyXNoteImageQt4.png
2231     macrobox.png
2232     MacroToolbar.png
2233     macrouse.png
2234     mobius.eps
2235     platypus.eps
2236     referenceQt4.png
2237     SpaceMarker.png
2238     StandardToolbar.png
2239     ToolbarEnvBox.png
2240     ViewToolbar.png
2241     with_fntright.pdf
2242     without_fntright.pdf
2243 ''')
2244
2245
2246 lib_doc_extra_files = Split('''
2247     Makefile.am
2248     README.Documentation
2249 ''')
2250
2251
2252 lib_doc_ca_files = Split('''
2253     Intro.lyx
2254 ''')
2255
2256
2257 lib_doc_cs_files = Split('''
2258     Tutorial.lyx
2259 ''')
2260
2261
2262 lib_doc_de_files = Split('''
2263     Customization.lyx
2264     DummyDocument1.lyx
2265     DummyDocument2.lyx
2266     DummyTextDocument.txt
2267     EmbeddedObjects.lyx
2268     Additional.lyx
2269     Formelnummerierung.lyx
2270     Intro.lyx
2271     Math.lyx
2272     Shortcuts.lyx
2273     Tutorial.lyx
2274     UserGuide.lyx
2275 ''')
2276
2277
2278 lib_doc_de_clipart_files = Split('''
2279     ERT.png
2280     ExternesMaterialQt4.png
2281     FussnoteQt4.png
2282     GleitobjektQt4.png
2283     GrauschriftNotizQt4.png
2284     KommentarQt4.png
2285     LyXNotizQt4.png
2286     Marke.png
2287     Querverweis.png
2288     StandardBoxQt4.png
2289     UnterdokumentQt4.png
2290 ''')
2291
2292
2293 lib_doc_da_files = Split('''
2294     Intro.lyx
2295 ''')
2296
2297
2298 lib_doc_el_files = Split('''
2299     Intro.lyx
2300 ''')
2301
2302
2303 lib_doc_es_files = Split('''
2304     Customization.lyx
2305     DocumentoPostizo1.lyx
2306     DocumentoPostizo2.lyx
2307     DocumentoTextoPostizo.txt
2308     EmbeddedObjects.lyx
2309     Additional.lyx
2310     Formula-numbering.lyx
2311     Intro.lyx
2312     Math.lyx
2313     Shortcuts.lyx
2314     Tutorial.lyx
2315     UserGuide.lyx
2316 ''')
2317
2318
2319 lib_doc_es_clipart_files = Split('''
2320     ComentNotaImagenQt4.png
2321     CuadroMinipagQt4.png
2322     DocumentoHijoQt4.png
2323     es_ERT.png
2324     es_ToolbarEnvBox.png
2325     etiquetaQt4.png
2326     flotanteQt4.png
2327     GrisNotaImagenQt4.png
2328     MaterialExternoQt4.png
2329     NotaLyXImagenQt4.png
2330     notapieQt4.png
2331     referenciaQt4.png
2332     Resumen.pdf
2333 ''')
2334
2335
2336 lib_doc_eu_files = Split('''
2337     Customization.lyx
2338     Additional.lyx
2339     Intro.lyx
2340     Tutorial.lyx
2341     UserGuide.lyx
2342 ''')
2343
2344
2345 lib_doc_fr_files = Split('''
2346     Customization.lyx
2347     DocumentBidon1.lyx
2348     DocumentBidon2.lyx
2349     DocumentTexteBidon.txt
2350     EmbeddedObjects.lyx
2351     Additional.lyx
2352     Formula-numbering.lyx
2353     Intro.lyx
2354     Math.lyx
2355     Shortcuts.lyx
2356     Tutorial.lyx
2357     UserGuide.lyx
2358 ''')
2359
2360
2361 lib_doc_fr_clipart_files = Split('''
2362     BoxInsetDefaultQt4.png
2363     ChildDocumentQt4.png
2364     CommentNoteImageQt4.png
2365     floatQt4.png
2366     footnoteQt4.png
2367     GreyedOutNoteImageQt4.png
2368     labelQt4.png
2369     LyXNoteImageQt4.png    
2370 ''')
2371
2372
2373 lib_doc_gl_files = Split('''
2374     Intro.lyx
2375     Tutorial.lyx
2376 ''')
2377
2378
2379 lib_doc_he_files = Split('''
2380     Intro.lyx
2381     Tutorial.lyx
2382 ''')
2383
2384
2385 lib_doc_hu_files = Split('''
2386     Intro.lyx
2387     Tutorial.lyx
2388 ''')
2389
2390
2391 lib_doc_id_files = Split('''
2392     Intro.lyx
2393     Shortcuts.lyx
2394     Tutorial.lyx
2395     UserGuide.lyx
2396 ''')
2397
2398
2399 lib_doc_id_clipart_files = Split('''
2400     id-contrib.png
2401     id-footnote.png
2402     id-lingkungan.png
2403 ''')
2404
2405
2406 lib_doc_it_files = Split('''
2407     Customization.lyx
2408     Intro.lyx
2409     Tutorial.lyx
2410     UserGuide.lyx
2411 ''')
2412
2413
2414 lib_doc_it_clipart_files = Split('''
2415     it_footnoteQt4.png
2416     it_referenceQt4.png
2417 ''')
2418
2419
2420 lib_doc_ja_files = Split('''
2421     Additional.lyx
2422     Customization.lyx
2423     DummyDocument1.lyx
2424     DummyDocument2.lyx
2425     EmbeddedObjects.lyx
2426     Formula-numbering.lyx
2427     Intro.lyx
2428     LaTeXConfig.lyx
2429     Math.lyx
2430     Shortcuts.lyx
2431     Tutorial.lyx
2432     UserGuide.lyx
2433 ''')
2434
2435
2436 lib_doc_ja_clipart_files = Split('''
2437     ChildDocumentQt4.png
2438     ERT.png
2439     ExternalMaterialQt4.png
2440     floatQt4.png
2441     footnoteQt4.png
2442     referenceQt4.png
2443     ToolbarEnvBox.png
2444 ''')
2445
2446
2447 lib_doc_nb_files = Split('''
2448     Intro.lyx
2449 ''')
2450
2451
2452 lib_doc_nl_files = Split('''
2453     Intro.lyx
2454     Tutorial.lyx
2455 ''')
2456
2457
2458 lib_doc_pl_files = Split('''
2459     Additional.lyx
2460     Intro.lyx
2461     Tutorial.lyx
2462 ''')
2463
2464
2465 lib_doc_pt_files = Split('''
2466     Intro.lyx
2467     Tutorial.lyx
2468 ''')
2469
2470
2471 lib_doc_ro_files = Split('''
2472     Intro.lyx
2473 ''')
2474
2475
2476 lib_doc_ru_files = Split('''
2477     Intro.lyx
2478     Tutorial.lyx
2479 ''')
2480
2481
2482 lib_doc_sl_files = Split('''
2483     Intro.lyx
2484     Tutorial.lyx
2485 ''')
2486
2487
2488 lib_doc_sk_files = Split('''
2489     Intro.lyx
2490     Tutorial.lyx
2491     UserGuide.lyx
2492 ''')
2493
2494
2495 lib_doc_sv_files = Split('''
2496     Intro.lyx
2497     Shortcuts.lyx
2498     Tutorial.lyx
2499 ''')
2500
2501
2502 lib_doc_uk_files = Split('''
2503     Intro.lyx
2504 ''')
2505
2506
2507 lib_doc_uk_clipart_files = Split('''
2508     FootnoteQT4.png
2509 ''')
2510
2511
2512 lib_doc_zhCN_files = Split('''
2513     Intro.lyx
2514     Tutorial.lyx
2515 ''')
2516
2517
2518 lib_examples_files = Split('''
2519     aa_sample.lyx
2520     aas_sample.lyx
2521     achemso.lyx
2522     addressExample.adr
2523     amsart-test.lyx
2524     amsbook-test.lyx
2525     armenian-article.lyx
2526     beamer-g4-mask.jpg
2527     beamer-g4.jpg
2528     beamer-icsi-logo.pdf
2529     beamer-knight1-mask.png
2530     beamer-knight1.png
2531     beamer-knight2-mask.png
2532     beamer-knight2.png
2533     beamer-knight3-mask.png
2534     beamer-knight3.png
2535     beamer-knight4-mask.png
2536     beamer-knight4.png
2537     beamerlyxexample1.lyx
2538     biblioExample.bib
2539     Braille.lyx
2540     chess-article.lyx
2541     chessgame.lyx
2542     CV-image.eps
2543     CV-image.png
2544     docbook_article.lyx
2545     enumitem.lyx
2546     europeCV.lyx
2547     example_lyxified.lyx
2548     example_raw.lyx
2549     FeynmanDiagrams.lyx
2550     Foils.lyx
2551     iecc05.fen
2552     iecc07.fen
2553     iecc12.fen
2554     ItemizeBullets.lyx
2555     landslide.lyx
2556     lilypond.lyx
2557     linguistics.lyx
2558     listerrors.lyx
2559     Literate.lyx
2560     localization_test.lyx
2561     modernCV.lyx
2562     multicol.lyx
2563     noweb2lyx.lyx
2564     powerdot-example.lyx
2565     recipebook.lyx
2566     script_form.lyx
2567     seminar.lyx
2568     serial_letter1.lyx
2569     serial_letter2.lyx
2570     serial_letter3.lyx
2571     simplecv.lyx
2572     splash.lyx
2573     sweave.lyx
2574     tufte-book.lyx
2575     tufte-handout.lyx
2576     xyfigure.png
2577     xypic.lyx
2578 ''')
2579
2580
2581 lib_examples_ca_files = Split('''
2582     ItemizeBullets.lyx
2583     mathed.lyx
2584     splash.lyx
2585 ''')
2586
2587
2588 lib_examples_cs_files = Split('''
2589     splash.lyx
2590     priklad_zLyXovany.lyx
2591     priklad_syrovy.lyx
2592 ''')
2593
2594
2595 lib_examples_da_files = Split('''
2596     splash.lyx
2597 ''')
2598
2599
2600 lib_examples_de_files = Split('''
2601     beispiel_gelyxt.lyx
2602     beispiel_roh.lyx
2603     Braille.lyx
2604     Dezimal.lyx
2605     ItemizeBullets.lyx
2606     Lebenslauf.lyx
2607     linguistics.lyx
2608     multicol.lyx
2609     serienbrief1.lyx
2610     serienbrief2.lyx
2611     serienbrief3.lyx
2612     splash.lyx
2613     tufte-handout.lyx
2614 ''')
2615
2616
2617 lib_examples_el_files = Split('''
2618     splash.lyx
2619 ''')
2620
2621
2622 lib_examples_es_files = Split('''
2623     Braille.lyx
2624     ejemplo_con_lyx.lyx
2625     ejemplo_sin_lyx.lyx
2626     ItemizeBullets.lyx
2627     linguistics.lyx
2628     multicol.lyx
2629     splash.lyx
2630     tufte-book.lyx
2631     tufte-handout.lyx
2632 ''')
2633
2634
2635 lib_examples_fa_files = Split('''
2636     splash.lyx
2637 ''')
2638
2639
2640 lib_examples_fr_files = Split('''
2641     AlignementDecimal.lyx
2642     Braille.lyx
2643     exemple_brut.lyx
2644     exemple_lyxifie.lyx
2645     exemple-powerdot.lyx
2646     FeynmanDiagrams.lyx
2647     Foils.lyx
2648     linguistics.lyx
2649     ListesPuces.lyx
2650     multicol.lyx
2651     seminar.lyx
2652     simplecv.lyx
2653     splash.lyx
2654     xyfigure.png
2655     xypic.lyx
2656 ''')
2657
2658
2659 lib_examples_eu_files = Split('''
2660     adibide_gordina.lyx
2661     adibide_lyx-atua.lyx
2662     splash.lyx
2663 ''')
2664
2665
2666 lib_examples_gl_files = Split('''
2667     exemplo_bruto.lyx
2668     exemplo_lyxificado.lyx
2669     splash.lyx
2670 ''')
2671
2672
2673 lib_examples_he_files = Split('''
2674     example_lyxified.lyx
2675     example_raw.lyx
2676     splash.lyx
2677 ''')
2678
2679
2680 lib_examples_hu_files = Split('''
2681     example_lyxified.lyx
2682     example_raw.lyx
2683     splash.lyx
2684 ''')
2685
2686
2687 lib_examples_id_files = Split('''
2688     splash.lyx
2689 ''')
2690
2691
2692 lib_examples_it_files = Split('''
2693     ItemizeBullets.lyx
2694     splash.lyx
2695 ''')
2696
2697
2698 lib_examples_ja_files = Split('''
2699     Braille.lyx
2700     FeynmanDiagrams.lyx
2701     linguistics.lyx
2702     multicol.lyx
2703     splash.lyx
2704     xyfigure.png
2705     xypic.lyx
2706 ''')
2707
2708
2709 lib_examples_nl_files = Split('''
2710     multicol.lyx
2711     opsommingstekens.lyx
2712     splash.lyx
2713     voorbeeld_ruw.lyx
2714     voorbeeld_verlyxt.lyx
2715 ''')
2716
2717
2718 lib_examples_pl_files = Split('''
2719     splash.lyx
2720 ''')
2721
2722
2723 lib_examples_pt_files = Split('''
2724     splash.lyx
2725 ''')
2726
2727
2728 lib_examples_ro_files = Split('''
2729     splash.lyx
2730 ''')
2731
2732
2733 lib_examples_ru_files = Split('''
2734     splash.lyx
2735 ''')
2736
2737
2738 lib_examples_sk_files = Split('''
2739     splash.lyx
2740 ''')
2741
2742
2743 lib_examples_sl_files = Split('''
2744     primer_lyxan.lyx
2745     primer_surov.lyx
2746     splash.lyx
2747 ''')
2748
2749
2750 lib_examples_sr_files = Split('''
2751     Braille.lyx
2752     splash.lyx
2753 ''')
2754
2755
2756 lib_examples_sv_files = Split('''
2757     splash.lyx
2758 ''')
2759
2760
2761 lib_examples_uk_files = Split('''
2762     splash.lyx
2763 ''')
2764
2765
2766 lib_lyx2lyx_files = Split('''
2767     generate_encoding_info.py
2768     LyX.py
2769     lyx2lyx
2770     lyx2lyx_lang.py
2771     lyx_0_06.py
2772     lyx_0_08.py
2773     lyx_0_10.py
2774     lyx_0_12.py
2775     lyx_1_0.py
2776     lyx_1_1.py
2777     lyx_1_1_5.py
2778     lyx_1_1_6_0.py
2779     lyx_1_1_6_3.py
2780     lyx_1_2.py
2781     lyx_1_3.py
2782     lyx_1_4.py
2783     lyx_1_5.py
2784     lyx_1_6.py
2785     lyx_2_0.py
2786     lyx_2_1.py
2787     lyx2lyx_tools.py
2788     parser_tools.py
2789     profiling.py
2790     test_parser_tools.py
2791     unicode_symbols.py
2792 ''')
2793
2794
2795 lib_lyx2lyx_extra_files = Split('''
2796     lyx2lyx_version.py.in
2797     Makefile.am
2798 ''')
2799
2800
2801 lib_layouts_files = Split('''
2802     aa.layout
2803     aapaper.layout
2804     aastex.layout
2805     achemso.layout
2806     acmsiggraph.layout
2807     AEA.layout
2808     agutex.layout
2809     agu-dtd.layout
2810     agums.layout
2811     amsart.layout
2812     amsbook.layout
2813     apa.layout
2814     arab-article.layout
2815     armenian-article.layout
2816     article.layout
2817     article-beamer.layout
2818     beamer.layout
2819     book.layout
2820     broadway.layout
2821     chess.layout
2822     cl2emult.layout
2823     customHeadersFooters.module
2824     dinbrief.layout
2825     docbook-book.layout
2826     docbook-chapter.layout
2827     docbook-section.layout
2828     docbook.layout
2829     doublecol-new.layout
2830     dtk.layout
2831     ectaart.layout
2832     egs.layout
2833     elsart.layout
2834     elsarticle.layout
2835     entcs.layout
2836     enumitem.module
2837     europecv.layout
2838     extarticle.layout
2839     extbook.layout
2840     extletter.layout
2841     extreport.layout
2842     foils.layout
2843     frletter.layout
2844     g-brief.layout
2845     g-brief2.layout
2846     heb-article.layout
2847     heb-letter.layout
2848     hollywood.layout
2849     IEEEtran.layout
2850     ijmpc.layout
2851     ijmpd.layout
2852     iopart.layout
2853     isprs.layout
2854     jarticle.layout
2855     jbook.layout
2856     jgrga.layout
2857     jreport.layout
2858     jsarticle.layout
2859     jsbook.layout
2860     jss.layout
2861     kluwer.layout
2862     latex8.layout
2863     letter.layout
2864     lettre.layout
2865     literate-article.layout
2866     literate-book.layout
2867     literate-report.layout
2868     llncs.layout
2869     ltugboat.layout
2870     memoir.layout
2871     moderncv.layout
2872     mwart.layout
2873     mwbk.layout
2874     mwrep.layout
2875     paper.layout
2876     powerdot.layout
2877     recipebook.layout
2878     report.layout
2879     revtex.layout
2880     revtex4.layout
2881     revtex4-1.layout
2882     scrartcl.layout
2883     scrarticle-beamer.layout
2884     scrbook.layout
2885     scrlettr.layout
2886     scrlttr2.layout
2887     scrreprt.layout
2888     seminar.layout
2889     siamltex.layout
2890     sigplanconf.layout
2891     simplecv.layout
2892     singlecol.layout
2893     singlecol-new.layout
2894     slides.layout
2895     spie.layout
2896     svglobal.layout
2897     svglobal3.layout
2898     svjog.layout
2899     svmono.layout
2900     svmult.layout
2901     svprobth.layout
2902     tarticle.layout
2903     tbook.layout
2904     treport.layout
2905     tufte-book.layout
2906     tufte-handout.layout
2907 ''')
2908
2909
2910 lib_layouts_inc_files = Split('''
2911     aapaper.inc
2912     agu_stdclass.inc
2913     agu_stdcounters.inc
2914     agu_stdlists.inc
2915     agu_stdsections.inc
2916     agu_stdtitle.inc
2917     aguplus.inc
2918     amsdefs.inc
2919     db_lyxmacros.inc
2920     db_stdcharstyles.inc
2921     db_stdclass.inc
2922     db_stdcounters.inc
2923     db_stdlayouts.inc
2924     db_stdlists.inc
2925     db_stdsections.inc
2926     db_stdstarsections.inc
2927     db_stdstruct.inc
2928     db_stdtitle.inc
2929     literate-scrap.inc
2930     lyxmacros.inc
2931     numarticle.inc
2932     numreport.inc
2933     numrevtex.inc
2934     scrclass.inc
2935     stdcharstyles.inc
2936     stdciteformats.inc
2937     stdclass.inc
2938     stdcounters.inc
2939     stdcustom.inc
2940     stdfloats.inc
2941     stdinsets.inc
2942     stdlayouts.inc
2943     stdletter.inc
2944     stdlists.inc
2945     stdlyxlist.inc 
2946     stdrefprefix.inc
2947     stdsections.inc
2948     stdstarsections.inc
2949     stdstruct.inc
2950     stdtitle.inc
2951     svcommon.inc
2952     theorems.inc
2953     theorems-ams.inc
2954     theorems-ams-bytype.inc
2955     theorems-bytype.inc
2956     theorems-order.inc
2957     theorems-proof.inc
2958     theorems-proof-std.inc
2959     theorems-refprefix.inc
2960     theorems-starred.inc
2961     theorems-starred-equivalents.inc
2962     theorems-without-preamble.inc
2963 ''')
2964
2965
2966 lib_layouts_module_files = Split('''
2967     braille.module
2968     endnotes.module
2969     eqs-within-sections.module
2970     figs-within-sections.module
2971     fixltx2e.module
2972     fix-cm.module
2973     foottoend.module
2974     hanging.module
2975     initials.module
2976     lilypond.module
2977     linguistics.module
2978     logicalmkup.module
2979     minimalistic.module
2980     noweb.module
2981     sweave.module
2982     tabs-within-sections.module
2983     theorems-ams-bytype.module
2984     theorems-ams-extended.module
2985     theorems-ams-extended-bytype.module
2986     theorems-ams.module
2987     theorems-bytype.module
2988     theorems-chap-bytype.module
2989     theorems-chap.module
2990     theorems-named.module
2991     theorems-sec-bytype.module
2992     theorems-sec.module
2993     theorems-starred.module
2994     theorems-std.module
2995 ''')
2996
2997 lib_scripts_files = Split('''
2998     bash_completion
2999     clean_dvi.py
3000     convertDefault.py
3001     csv2lyx.py
3002     date.py
3003     ext_copy.py
3004     fen2ascii.py
3005     fig2pdftex.py
3006     fig2pstex.py
3007     fig_copy.py
3008     include_bib.py
3009     layout2layout.py
3010     legacy_lyxpreview2ppm.py
3011     listerrors
3012     lyxpak.py
3013     lyxpreview2bitmap.py
3014     lyxpreview-lytex2bitmap.py
3015     lyxpreview-platex2bitmap.py
3016     lyxpreview_tools.py
3017     lyxsweave.R
3018     prefs2prefs.py
3019     prefs2prefs_lfuns.py
3020     prefs2prefs_prefs.py
3021     TeXFiles.py
3022     tex_copy.py
3023 ''')
3024
3025
3026 lib_bind_files = Split('''
3027     aqua.bind
3028     broadway.bind
3029     cua.bind
3030     cyrkeys.bind
3031     emacs.bind
3032     greekkeys.bind
3033     hollywood.bind
3034     latinkeys.bind
3035     mac.bind
3036     math.bind
3037     menus.bind
3038     sciword.bind
3039     site.bind
3040     xemacs.bind
3041 ''')
3042
3043
3044 lib_bind_de_files = Split('''
3045     menus.bind
3046 ''')
3047
3048
3049 lib_commands_files = Split('''
3050     default.def
3051 ''')
3052
3053
3054 boost_extra_files = Split('''
3055     LICENSE_1_0.txt
3056     Makefile.am
3057 ''')
3058
3059
3060 boost_libs_extra_files = Split('''
3061     Makefile.am
3062     README
3063 ''')
3064
3065
3066 boost_libs_signals_extra_files = Split('''
3067     Makefile.am
3068     signals.vcproj
3069 ''')
3070
3071
3072 boost_libs_signals_src_files = Split('''
3073     connection.cpp
3074     named_slot_map.cpp
3075     signal_base.cpp
3076     slot.cpp
3077     trackable.cpp
3078 ''')
3079
3080
3081 boost_libs_signals_src_extra_files = Split('''
3082     Makefile.am
3083     pch.h
3084 ''')
3085
3086
3087 boost_libs_regex_extra_files = Split('''
3088     Makefile.am
3089     regex.vcproj
3090 ''')
3091
3092
3093 boost_libs_regex_src_files = Split('''
3094     c_regex_traits.cpp
3095     cpp_regex_traits.cpp
3096     cregex.cpp
3097     fileiter.cpp
3098     instances.cpp
3099     posix_api.cpp
3100     regex.cpp
3101     regex_debug.cpp
3102     regex_raw_buffer.cpp
3103     regex_traits_defaults.cpp
3104     w32_regex_traits.cpp
3105     wide_posix_api.cpp
3106     winstances.cpp
3107 ''')
3108
3109
3110 boost_libs_regex_src_extra_files = Split('''
3111     Makefile.am
3112     pch.h
3113 ''')
3114
3115
3116
3117 development_Win32_packaging_installer = Split('''
3118     license.rtf
3119     lyx.nsi
3120     settings.nsh
3121 ''')
3122
3123
3124 development_Win32_packaging_installer_graphics = Split('''
3125     header.bmp
3126     wizard.bmp
3127 ''')
3128
3129
3130 development_Win32_packaging_installer_gui = Split('''
3131     external.nsh
3132     langselect.nsh
3133     reinstall.nsh
3134 ''')
3135
3136
3137 development_Win32_packaging_installer_include = Split('''
3138     declarations.nsh
3139     detection.nsh
3140     dictlist.nsh    
3141     filelist.nsh
3142     gui.nsh
3143     init.nsh
3144     langlist.nsh
3145     nsis.nsh
3146     variables.nsh
3147 ''')
3148
3149
3150 development_Win32_packaging_installer_lang = Split('''
3151     english.nsh
3152     french.nsh
3153     german.nsh
3154     italian.nsh
3155 ''')
3156
3157
3158 development_Win32_packaging_installer_setup = Split('''
3159     configure.nsh
3160     install.nsh
3161     reinstall.nsh
3162 ''')