]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
13233d1c18708d4ad171d5d15baf64f3275ed7dd
[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     uparrow.png
2078     uparrow2.png
2079     updownarrow.png
2080     updownarrow2.png
2081     upharpoonleft.png
2082     upharpoonright.png
2083     uplus.png
2084     upsilon.png
2085     upsilon2.png
2086     upuparrows.png
2087     urcorner.png
2088     utilde.png
2089     varepsilon.png
2090     varkappa.png
2091     varnothing.png
2092     varphi.png
2093     varpi.png
2094     varpropto.png
2095     varrho.png
2096     varsigma.png
2097     varsubsetneq.png
2098     varsubsetneqq.png
2099     varsupsetneq.png
2100     varsupsetneqq.png
2101     vartheta.png
2102     vartriangle.png
2103     vartriangleleft.png
2104     vartriangleright.png
2105     vdash.png
2106     vdash2.png
2107     vdash3.png
2108     vdots.png
2109     vec.png
2110     vee.png
2111     veebar.png
2112     vert.png
2113     vert2.png
2114     vphantom.png
2115     Vvdash.png
2116     wedge.png
2117     widehat.png
2118     widetilde.png
2119     wp.png
2120     wr.png
2121     xi.png
2122     xi2.png
2123     zeta.png
2124 ''')
2125
2126
2127 lib_images_math_extra_files = Split('''
2128     ams_arrows.png
2129     ams_misc.png
2130     ams_nrel.png
2131     ams_ops.png
2132     ams_rel.png
2133     arrows.png
2134     bop.png
2135     brel.png
2136     deco.png
2137     deco.png
2138     delim.png
2139     delim0.png
2140     delim1.png
2141     dots.png
2142     font.png
2143     functions.png
2144     greek.png
2145     misc.png
2146     varsz.png
2147 ''')
2148
2149
2150 lib_images_commands_files = Split('''
2151 ''')
2152
2153
2154 lib_images_attic_extra_files = Split('''
2155     dialog-show_mathpanel.png
2156 ''')
2157
2158
2159 # Do not add subscript.sty to lib_tex_files since we don't want to install it
2160 # (it is part of TeXLive). We include it in our source package only so that
2161 # packagers may decide to install it (e.g. for MikTeX).
2162 lib_tex_files = Split('''
2163     broadway.cls
2164     hollywood.cls
2165     lyxchess.sty
2166     lyxskak.sty
2167     revtex.cls
2168 ''')
2169
2170
2171 lib_doc_files = Split('''
2172     Customization.lyx
2173     DummyDocument1.lyx
2174     DummyDocument2.lyx
2175     DummyTextDocument.txt
2176     EmbeddedObjects.lyx
2177     Additional.lyx
2178     Formula-numbering.lyx
2179     Intro.lyx
2180     LaTeXConfig.lyx
2181     LFUNs.lyx
2182     Math.lyx
2183     Shortcuts.lyx
2184     Tutorial.lyx
2185     UserGuide.lyx
2186 ''')
2187
2188
2189 lib_doc_biblio_files = Split('''
2190     alphadin.bst
2191     LyXDocs.bib
2192 ''')
2193
2194
2195 lib_doc_clipart_files = Split('''
2196     Abstract.pdf
2197     BoxInsetDefaultQt4.png
2198     ChangesToolbar.png
2199     ChildDocumentQt4.png
2200     CommentNoteImageQt4.png
2201     endnotes.pdf
2202     ERT.png
2203     escher-lsd.eps
2204     ExternalMaterialQt4.png
2205     ExtraToolbar.png
2206     floatQt4.png
2207     footnoteQt4.png
2208     GreyedOutNoteImageQt4.png
2209     labelQt4.png
2210     LaTeX.png
2211     LyXNoteImageQt4.png
2212     macrobox.png
2213     MacroToolbar.png
2214     macrouse.png
2215     mobius.eps
2216     platypus.eps
2217     referenceQt4.png
2218     SpaceMarker.png
2219     StandardToolbar.png
2220     ToolbarEnvBox.png
2221     ViewToolbar.png
2222     with_fntright.pdf
2223     without_fntright.pdf
2224 ''')
2225
2226
2227 lib_doc_extra_files = Split('''
2228     Makefile.am
2229     README.Documentation
2230 ''')
2231
2232
2233 lib_doc_ca_files = Split('''
2234     Intro.lyx
2235 ''')
2236
2237
2238 lib_doc_cs_files = Split('''
2239     Tutorial.lyx
2240 ''')
2241
2242
2243 lib_doc_de_files = Split('''
2244     Customization.lyx
2245     DummyDocument1.lyx
2246     DummyDocument2.lyx
2247     DummyTextDocument.txt
2248     EmbeddedObjects.lyx
2249     Additional.lyx
2250     Formelnummerierung.lyx
2251     Intro.lyx
2252     Math.lyx
2253     Shortcuts.lyx
2254     Tutorial.lyx
2255     UserGuide.lyx
2256 ''')
2257
2258
2259 lib_doc_de_clipart_files = Split('''
2260     ERT.png
2261     ExternesMaterialQt4.png
2262     FussnoteQt4.png
2263     GleitobjektQt4.png
2264     GrauschriftNotizQt4.png
2265     KommentarQt4.png
2266     LyXNotizQt4.png
2267     Marke.png
2268     Querverweis.png
2269     StandardBoxQt4.png
2270     UnterdokumentQt4.png
2271 ''')
2272
2273
2274 lib_doc_da_files = Split('''
2275     Intro.lyx
2276 ''')
2277
2278
2279 lib_doc_el_files = Split('''
2280     Intro.lyx
2281 ''')
2282
2283
2284 lib_doc_es_files = Split('''
2285     Customization.lyx
2286     DocumentoPostizo1.lyx
2287     DocumentoPostizo2.lyx
2288     DocumentoTextoPostizo.txt
2289     EmbeddedObjects.lyx
2290     Additional.lyx
2291     Formula-numbering.lyx
2292     Intro.lyx
2293     Math.lyx
2294     Shortcuts.lyx
2295     Tutorial.lyx
2296     UserGuide.lyx
2297 ''')
2298
2299
2300 lib_doc_es_clipart_files = Split('''
2301     ComentNotaImagenQt4.png
2302     CuadroMinipagQt4.png
2303     DocumentoHijoQt4.png
2304     es_ERT.png
2305     es_ToolbarEnvBox.png
2306     etiquetaQt4.png
2307     flotanteQt4.png
2308     GrisNotaImagenQt4.png
2309     MaterialExternoQt4.png
2310     NotaLyXImagenQt4.png
2311     notapieQt4.png
2312     referenciaQt4.png
2313     Resumen.pdf
2314 ''')
2315
2316
2317 lib_doc_eu_files = Split('''
2318     Customization.lyx
2319     Additional.lyx
2320     Intro.lyx
2321     Tutorial.lyx
2322     UserGuide.lyx
2323 ''')
2324
2325
2326 lib_doc_fr_files = Split('''
2327     Customization.lyx
2328     DocumentBidon1.lyx
2329     DocumentBidon2.lyx
2330     DocumentTexteBidon.txt
2331     EmbeddedObjects.lyx
2332     Additional.lyx
2333     Formula-numbering.lyx
2334     Intro.lyx
2335     Math.lyx
2336     Shortcuts.lyx
2337     Tutorial.lyx
2338     UserGuide.lyx
2339 ''')
2340
2341
2342 lib_doc_fr_clipart_files = Split('''
2343     BoxInsetDefaultQt4.png
2344     ChildDocumentQt4.png
2345     CommentNoteImageQt4.png
2346     floatQt4.png
2347     footnoteQt4.png
2348     GreyedOutNoteImageQt4.png
2349     labelQt4.png
2350     LyXNoteImageQt4.png    
2351 ''')
2352
2353
2354 lib_doc_gl_files = Split('''
2355     Intro.lyx
2356     Tutorial.lyx
2357 ''')
2358
2359
2360 lib_doc_he_files = Split('''
2361     Intro.lyx
2362     Tutorial.lyx
2363 ''')
2364
2365
2366 lib_doc_hu_files = Split('''
2367     Intro.lyx
2368     Tutorial.lyx
2369 ''')
2370
2371
2372 lib_doc_id_files = Split('''
2373     Intro.lyx
2374     Shortcuts.lyx
2375     Tutorial.lyx
2376     UserGuide.lyx
2377 ''')
2378
2379
2380 lib_doc_id_clipart_files = Split('''
2381     id-contrib.png
2382     id-footnote.png
2383     id-lingkungan.png
2384 ''')
2385
2386
2387 lib_doc_it_files = Split('''
2388     Customization.lyx
2389     Intro.lyx
2390     Tutorial.lyx
2391     UserGuide.lyx
2392 ''')
2393
2394
2395 lib_doc_it_clipart_files = Split('''
2396     it_footnoteQt4.png
2397     it_referenceQt4.png
2398 ''')
2399
2400
2401 lib_doc_ja_files = Split('''
2402     Additional.lyx
2403     Customization.lyx
2404     DummyDocument1.lyx
2405     DummyDocument2.lyx
2406     EmbeddedObjects.lyx
2407     Formula-numbering.lyx
2408     Intro.lyx
2409     LaTeXConfig.lyx
2410     Math.lyx
2411     Shortcuts.lyx
2412     Tutorial.lyx
2413     UserGuide.lyx
2414 ''')
2415
2416
2417 lib_doc_ja_clipart_files = Split('''
2418     ChildDocumentQt4.png
2419     ERT.png
2420     ExternalMaterialQt4.png
2421     floatQt4.png
2422     footnoteQt4.png
2423     referenceQt4.png
2424     ToolbarEnvBox.png
2425 ''')
2426
2427
2428 lib_doc_nb_files = Split('''
2429     Intro.lyx
2430 ''')
2431
2432
2433 lib_doc_nl_files = Split('''
2434     Intro.lyx
2435     Tutorial.lyx
2436 ''')
2437
2438
2439 lib_doc_pl_files = Split('''
2440     Additional.lyx
2441     Intro.lyx
2442     Tutorial.lyx
2443 ''')
2444
2445
2446 lib_doc_pt_files = Split('''
2447     Intro.lyx
2448     Tutorial.lyx
2449 ''')
2450
2451
2452 lib_doc_ro_files = Split('''
2453     Intro.lyx
2454 ''')
2455
2456
2457 lib_doc_ru_files = Split('''
2458     Intro.lyx
2459     Tutorial.lyx
2460 ''')
2461
2462
2463 lib_doc_sl_files = Split('''
2464     Intro.lyx
2465     Tutorial.lyx
2466 ''')
2467
2468
2469 lib_doc_sk_files = Split('''
2470     Intro.lyx
2471     Tutorial.lyx
2472     UserGuide.lyx
2473 ''')
2474
2475
2476 lib_doc_sv_files = Split('''
2477     Intro.lyx
2478     Shortcuts.lyx
2479     Tutorial.lyx
2480 ''')
2481
2482
2483 lib_doc_uk_files = Split('''
2484     Intro.lyx
2485 ''')
2486
2487
2488 lib_doc_uk_clipart_files = Split('''
2489     FootnoteQT4.png
2490 ''')
2491
2492
2493 lib_doc_zhCN_files = Split('''
2494     Intro.lyx
2495     Tutorial.lyx
2496 ''')
2497
2498
2499 lib_examples_files = Split('''
2500     aa_sample.lyx
2501     aas_sample.lyx
2502     achemso.lyx
2503     addressExample.adr
2504     amsart-test.lyx
2505     amsbook-test.lyx
2506     armenian-article.lyx
2507     beamer-g4-mask.jpg
2508     beamer-g4.jpg
2509     beamer-icsi-logo.pdf
2510     beamer-knight1-mask.png
2511     beamer-knight1.png
2512     beamer-knight2-mask.png
2513     beamer-knight2.png
2514     beamer-knight3-mask.png
2515     beamer-knight3.png
2516     beamer-knight4-mask.png
2517     beamer-knight4.png
2518     beamerlyxexample1.lyx
2519     biblioExample.bib
2520     Braille.lyx
2521     chess-article.lyx
2522     chessgame.lyx
2523     CV-image.eps
2524     CV-image.png
2525     docbook_article.lyx
2526     enumitem.lyx
2527     europeCV.lyx
2528     example_lyxified.lyx
2529     example_raw.lyx
2530     FeynmanDiagrams.lyx
2531     Foils.lyx
2532     iecc05.fen
2533     iecc07.fen
2534     iecc12.fen
2535     ItemizeBullets.lyx
2536     landslide.lyx
2537     lilypond.lyx
2538     linguistics.lyx
2539     listerrors.lyx
2540     Literate.lyx
2541     localization_test.lyx
2542     modernCV.lyx
2543     multicol.lyx
2544     noweb2lyx.lyx
2545     powerdot-example.lyx
2546     recipebook.lyx
2547     script_form.lyx
2548     seminar.lyx
2549     serial_letter1.lyx
2550     serial_letter2.lyx
2551     serial_letter3.lyx
2552     simplecv.lyx
2553     splash.lyx
2554     sweave.lyx
2555     tufte-book.lyx
2556     tufte-handout.lyx
2557     xyfigure.png
2558     xypic.lyx
2559 ''')
2560
2561
2562 lib_examples_ca_files = Split('''
2563     ItemizeBullets.lyx
2564     mathed.lyx
2565     splash.lyx
2566 ''')
2567
2568
2569 lib_examples_cs_files = Split('''
2570     splash.lyx
2571     priklad_zLyXovany.lyx
2572     priklad_syrovy.lyx
2573 ''')
2574
2575
2576 lib_examples_da_files = Split('''
2577     splash.lyx
2578 ''')
2579
2580
2581 lib_examples_de_files = Split('''
2582     beispiel_gelyxt.lyx
2583     beispiel_roh.lyx
2584     Braille.lyx
2585     Dezimal.lyx
2586     ItemizeBullets.lyx
2587     Lebenslauf.lyx
2588     linguistics.lyx
2589     multicol.lyx
2590     serienbrief1.lyx
2591     serienbrief2.lyx
2592     serienbrief3.lyx
2593     splash.lyx
2594     tufte-handout.lyx
2595 ''')
2596
2597
2598 lib_examples_el_files = Split('''
2599     splash.lyx
2600 ''')
2601
2602
2603 lib_examples_es_files = Split('''
2604     Braille.lyx
2605     ejemplo_con_lyx.lyx
2606     ejemplo_sin_lyx.lyx
2607     ItemizeBullets.lyx
2608     linguistics.lyx
2609     multicol.lyx
2610     splash.lyx
2611     tufte-book.lyx
2612     tufte-handout.lyx
2613 ''')
2614
2615
2616 lib_examples_fa_files = Split('''
2617     splash.lyx
2618 ''')
2619
2620
2621 lib_examples_fr_files = Split('''
2622     AlignementDecimal.lyx
2623     Braille.lyx
2624     exemple_brut.lyx
2625     exemple_lyxifie.lyx
2626     exemple-powerdot.lyx
2627     FeynmanDiagrams.lyx
2628     Foils.lyx
2629     linguistics.lyx
2630     ListesPuces.lyx
2631     multicol.lyx
2632     seminar.lyx
2633     simplecv.lyx
2634     splash.lyx
2635     xyfigure.png
2636     xypic.lyx
2637 ''')
2638
2639
2640 lib_examples_eu_files = Split('''
2641     adibide_gordina.lyx
2642     adibide_lyx-atua.lyx
2643     splash.lyx
2644 ''')
2645
2646
2647 lib_examples_gl_files = Split('''
2648     exemplo_bruto.lyx
2649     exemplo_lyxificado.lyx
2650     splash.lyx
2651 ''')
2652
2653
2654 lib_examples_he_files = Split('''
2655     example_lyxified.lyx
2656     example_raw.lyx
2657     splash.lyx
2658 ''')
2659
2660
2661 lib_examples_hu_files = Split('''
2662     example_lyxified.lyx
2663     example_raw.lyx
2664     splash.lyx
2665 ''')
2666
2667
2668 lib_examples_id_files = Split('''
2669     splash.lyx
2670 ''')
2671
2672
2673 lib_examples_it_files = Split('''
2674     ItemizeBullets.lyx
2675     splash.lyx
2676 ''')
2677
2678
2679 lib_examples_ja_files = Split('''
2680     Braille.lyx
2681     FeynmanDiagrams.lyx
2682     linguistics.lyx
2683     multicol.lyx
2684     splash.lyx
2685     xyfigure.png
2686     xypic.lyx
2687 ''')
2688
2689
2690 lib_examples_nl_files = Split('''
2691     multicol.lyx
2692     opsommingstekens.lyx
2693     splash.lyx
2694     voorbeeld_ruw.lyx
2695     voorbeeld_verlyxt.lyx
2696 ''')
2697
2698
2699 lib_examples_pl_files = Split('''
2700     splash.lyx
2701 ''')
2702
2703
2704 lib_examples_pt_files = Split('''
2705     splash.lyx
2706 ''')
2707
2708
2709 lib_examples_ro_files = Split('''
2710     splash.lyx
2711 ''')
2712
2713
2714 lib_examples_ru_files = Split('''
2715     splash.lyx
2716 ''')
2717
2718
2719 lib_examples_sk_files = Split('''
2720     splash.lyx
2721 ''')
2722
2723
2724 lib_examples_sl_files = Split('''
2725     primer_lyxan.lyx
2726     primer_surov.lyx
2727     splash.lyx
2728 ''')
2729
2730
2731 lib_examples_sr_files = Split('''
2732     Braille.lyx
2733     splash.lyx
2734 ''')
2735
2736
2737 lib_examples_sv_files = Split('''
2738     splash.lyx
2739 ''')
2740
2741
2742 lib_examples_uk_files = Split('''
2743     splash.lyx
2744 ''')
2745
2746
2747 lib_lyx2lyx_files = Split('''
2748     generate_encoding_info.py
2749     LyX.py
2750     lyx2lyx
2751     lyx2lyx_lang.py
2752     lyx_0_06.py
2753     lyx_0_08.py
2754     lyx_0_10.py
2755     lyx_0_12.py
2756     lyx_1_0.py
2757     lyx_1_1.py
2758     lyx_1_1_5.py
2759     lyx_1_1_6_0.py
2760     lyx_1_1_6_3.py
2761     lyx_1_2.py
2762     lyx_1_3.py
2763     lyx_1_4.py
2764     lyx_1_5.py
2765     lyx_1_6.py
2766     lyx_2_0.py
2767     lyx2lyx_tools.py
2768     parser_tools.py
2769     profiling.py
2770     test_parser_tools.py
2771     unicode_symbols.py
2772 ''')
2773
2774
2775 lib_lyx2lyx_extra_files = Split('''
2776     lyx2lyx_version.py.in
2777     Makefile.am
2778 ''')
2779
2780
2781 lib_layouts_files = Split('''
2782     aa.layout
2783     aapaper.layout
2784     aastex.layout
2785     achemso.layout
2786     acmsiggraph.layout
2787     AEA.layout
2788     agutex.layout
2789     agu-dtd.layout
2790     agums.layout
2791     amsart.layout
2792     amsbook.layout
2793     apa.layout
2794     arab-article.layout
2795     armenian-article.layout
2796     article.layout
2797     article-beamer.layout
2798     beamer.layout
2799     book.layout
2800     broadway.layout
2801     chess.layout
2802     cl2emult.layout
2803     customHeadersFooters.module
2804     dinbrief.layout
2805     docbook-book.layout
2806     docbook-chapter.layout
2807     docbook-section.layout
2808     docbook.layout
2809     doublecol-new.layout
2810     dtk.layout
2811     ectaart.layout
2812     egs.layout
2813     elsart.layout
2814     elsarticle.layout
2815     entcs.layout
2816     enumitem.module
2817     europecv.layout
2818     extarticle.layout
2819     extbook.layout
2820     extletter.layout
2821     extreport.layout
2822     foils.layout
2823     frletter.layout
2824     g-brief.layout
2825     g-brief2.layout
2826     heb-article.layout
2827     heb-letter.layout
2828     hollywood.layout
2829     IEEEtran.layout
2830     ijmpc.layout
2831     ijmpd.layout
2832     iopart.layout
2833     isprs.layout
2834     jarticle.layout
2835     jbook.layout
2836     jgrga.layout
2837     jreport.layout
2838     jsarticle.layout
2839     jsbook.layout
2840     jss.layout
2841     kluwer.layout
2842     latex8.layout
2843     letter.layout
2844     lettre.layout
2845     literate-article.layout
2846     literate-book.layout
2847     literate-report.layout
2848     llncs.layout
2849     ltugboat.layout
2850     memoir.layout
2851     moderncv.layout
2852     mwart.layout
2853     mwbk.layout
2854     mwrep.layout
2855     paper.layout
2856     powerdot.layout
2857     recipebook.layout
2858     report.layout
2859     revtex.layout
2860     revtex4.layout
2861     scrartcl.layout
2862     scrarticle-beamer.layout
2863     scrbook.layout
2864     scrlettr.layout
2865     scrlttr2.layout
2866     scrreprt.layout
2867     seminar.layout
2868     siamltex.layout
2869     sigplanconf.layout
2870     simplecv.layout
2871     singlecol.layout
2872     singlecol-new.layout
2873     slides.layout
2874     spie.layout
2875     svglobal.layout
2876     svglobal3.layout
2877     svjog.layout
2878     svmono.layout
2879     svmult.layout
2880     svprobth.layout
2881     tarticle.layout
2882     tbook.layout
2883     treport.layout
2884     tufte-book.layout
2885     tufte-handout.layout
2886 ''')
2887
2888
2889 lib_layouts_inc_files = Split('''
2890     aapaper.inc
2891     agu_stdclass.inc
2892     agu_stdcounters.inc
2893     agu_stdlists.inc
2894     agu_stdsections.inc
2895     agu_stdtitle.inc
2896     aguplus.inc
2897     amsdefs.inc
2898     db_lyxmacros.inc
2899     db_stdcharstyles.inc
2900     db_stdclass.inc
2901     db_stdcounters.inc
2902     db_stdlayouts.inc
2903     db_stdlists.inc
2904     db_stdsections.inc
2905     db_stdstarsections.inc
2906     db_stdstruct.inc
2907     db_stdtitle.inc
2908     literate-scrap.inc
2909     lyxmacros.inc
2910     numarticle.inc
2911     numreport.inc
2912     numrevtex.inc
2913     scrclass.inc
2914     stdcharstyles.inc
2915     stdciteformats.inc
2916     stdclass.inc
2917     stdcounters.inc
2918     stdcustom.inc
2919     stdfloats.inc
2920     stdinsets.inc
2921     stdlayouts.inc
2922     stdletter.inc
2923     stdlists.inc
2924     stdlyxlist.inc 
2925     stdrefprefix.inc
2926     stdsections.inc
2927     stdstarsections.inc
2928     stdstruct.inc
2929     stdtitle.inc
2930     svjour.inc
2931     theorems.inc
2932     theorems-ams.inc
2933     theorems-ams-bytype.inc
2934     theorems-bytype.inc
2935     theorems-order.inc
2936     theorems-proof.inc
2937     theorems-proof-std.inc
2938     theorems-refprefix.inc
2939     theorems-starred.inc
2940     theorems-starred-equivalents.inc
2941 ''')
2942
2943
2944 lib_layouts_module_files = Split('''
2945     braille.module
2946     endnotes.module
2947     eqs-within-sections.module
2948     figs-within-sections.module
2949     fixltx2e.module
2950     fix-cm.module
2951     foottoend.module
2952     hanging.module
2953     initials.module
2954     lilypond.module
2955     linguistics.module
2956     logicalmkup.module
2957     minimalistic.module
2958     noweb.module
2959     sweave.module
2960     tabs-within-sections.module
2961     theorems-ams-bytype.module
2962     theorems-ams-extended.module
2963     theorems-ams-extended-bytype.module
2964     theorems-ams.module
2965     theorems-bytype.module
2966     theorems-chap-bytype.module
2967     theorems-chap.module
2968     theorems-named.module
2969     theorems-sec-bytype.module
2970     theorems-sec.module
2971     theorems-starred.module
2972     theorems-std.module
2973 ''')
2974
2975 lib_scripts_files = Split('''
2976     bash_completion
2977     clean_dvi.py
2978     convertDefault.py
2979     csv2lyx.py
2980     date.py
2981     ext_copy.py
2982     fen2ascii.py
2983     fig2pdftex.py
2984     fig2pstex.py
2985     fig_copy.py
2986     include_bib.py
2987     layout2layout.py
2988     legacy_lyxpreview2ppm.py
2989     listerrors
2990     lyxpak.py
2991     lyxpreview2bitmap.py
2992     lyxpreview-lytex2bitmap.py
2993     lyxpreview-platex2bitmap.py
2994     lyxpreview_tools.py
2995     lyxsweave.R
2996     prefs2prefs.py
2997     prefs2prefs_lfuns.py
2998     prefs2prefs_prefs.py
2999     TeXFiles.py
3000     tex_copy.py
3001 ''')
3002
3003
3004 lib_bind_files = Split('''
3005     aqua.bind
3006     broadway.bind
3007     cua.bind
3008     cyrkeys.bind
3009     emacs.bind
3010     greekkeys.bind
3011     hollywood.bind
3012     latinkeys.bind
3013     mac.bind
3014     math.bind
3015     menus.bind
3016     sciword.bind
3017     site.bind
3018     xemacs.bind
3019 ''')
3020
3021
3022 lib_bind_de_files = Split('''
3023     menus.bind
3024 ''')
3025
3026
3027 lib_commands_files = Split('''
3028     default.def
3029 ''')
3030
3031
3032 boost_extra_files = Split('''
3033     LICENSE_1_0.txt
3034     Makefile.am
3035 ''')
3036
3037
3038 boost_libs_extra_files = Split('''
3039     Makefile.am
3040     README
3041 ''')
3042
3043
3044 boost_libs_signals_extra_files = Split('''
3045     Makefile.am
3046     signals.vcproj
3047 ''')
3048
3049
3050 boost_libs_signals_src_files = Split('''
3051     connection.cpp
3052     named_slot_map.cpp
3053     signal_base.cpp
3054     slot.cpp
3055     trackable.cpp
3056 ''')
3057
3058
3059 boost_libs_signals_src_extra_files = Split('''
3060     Makefile.am
3061     pch.h
3062 ''')
3063
3064
3065 boost_libs_regex_extra_files = Split('''
3066     Makefile.am
3067     regex.vcproj
3068 ''')
3069
3070
3071 boost_libs_regex_src_files = Split('''
3072     c_regex_traits.cpp
3073     cpp_regex_traits.cpp
3074     cregex.cpp
3075     fileiter.cpp
3076     instances.cpp
3077     posix_api.cpp
3078     regex.cpp
3079     regex_debug.cpp
3080     regex_raw_buffer.cpp
3081     regex_traits_defaults.cpp
3082     w32_regex_traits.cpp
3083     wide_posix_api.cpp
3084     winstances.cpp
3085 ''')
3086
3087
3088 boost_libs_regex_src_extra_files = Split('''
3089     Makefile.am
3090     pch.h
3091 ''')
3092
3093
3094
3095 development_Win32_packaging_installer = Split('''
3096     license.rtf
3097     lyx.nsi
3098     settings.nsh
3099 ''')
3100
3101
3102 development_Win32_packaging_installer_graphics = Split('''
3103     header.bmp
3104     wizard.bmp
3105 ''')
3106
3107
3108 development_Win32_packaging_installer_gui = Split('''
3109     external.nsh
3110     langselect.nsh
3111     reinstall.nsh
3112 ''')
3113
3114
3115 development_Win32_packaging_installer_include = Split('''
3116     declarations.nsh
3117     detection.nsh
3118     dictlist.nsh    
3119     filelist.nsh
3120     gui.nsh
3121     init.nsh
3122     langlist.nsh
3123     nsis.nsh
3124     variables.nsh
3125 ''')
3126
3127
3128 development_Win32_packaging_installer_lang = Split('''
3129     english.nsh
3130     french.nsh
3131     german.nsh
3132     italian.nsh
3133 ''')
3134
3135
3136 development_Win32_packaging_installer_setup = Split('''
3137     configure.nsh
3138     install.nsh
3139     reinstall.nsh
3140 ''')