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