Date: Mon, 5 May 2014 17:30:01 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353034 - in head/print/lyx: . files Message-ID: <201405051730.s45HU1Pq005939@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Mon May 5 17:30:01 2014 New Revision: 353034 URL: http://svnweb.freebsd.org/changeset/ports/353034 QAT: https://qat.redports.org/buildarchive/r353034/ Log: Update to 2.1.0. This allows us to remove many patches that made it into the 2.1 series. For a list of changes, see http://wiki.lyx.org/LyX/NewInLyX21 Deleted: head/print/lyx/files/lyx.desktop head/print/lyx/files/patch-src__frontends__qt4__InGuiThread.h head/print/lyx/files/patch-src__support__debug.h head/print/lyx/files/patch-src__support__strfwd.h Modified: head/print/lyx/Makefile head/print/lyx/distinfo head/print/lyx/files/patch-config.h.in head/print/lyx/pkg-plist Modified: head/print/lyx/Makefile ============================================================================== --- head/print/lyx/Makefile Mon May 5 17:23:02 2014 (r353033) +++ head/print/lyx/Makefile Mon May 5 17:30:01 2014 (r353034) @@ -19,8 +19,8 @@ LICENSE= GPLv2 LIB_DEPENDS= libboost_regex.so:${PORTSDIR}/devel/boost-libs \ libmythes-1.2.so:${PORTSDIR}/textproc/mythes -MAJOR_VERSION= 2.0 -MINOR_VERSION= 8 +MAJOR_VERSION= 2.1 +MINOR_VERSION= 0 USES= desktop-file-utils gmake iconv pkgconfig perl5 USE_PYTHON= 2 @@ -46,13 +46,4 @@ HUNSPELL_LIB_DEPENDS= libhunspell-1.3.so NLS_CONFIGURE_OFF= --disable-nls NLS_USES= gettext -.include <bsd.port.options.mk> - -post-install: -# Manually install the 48x48 icon and .desktop file. -# Will not be needed in the 2.1 series, see LyX tickets 2820 and 7919. - ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps - ${INSTALL_DATA} ${WRKSRC}/lib/images/lyx.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps - ${INSTALL_DATA} ${FILESDIR}/lyx.desktop ${STAGEDIR}${PREFIX}/share/applications - .include <bsd.port.mk> Modified: head/print/lyx/distinfo ============================================================================== --- head/print/lyx/distinfo Mon May 5 17:23:02 2014 (r353033) +++ head/print/lyx/distinfo Mon May 5 17:30:01 2014 (r353034) @@ -1,2 +1,2 @@ -SHA256 (lyx-2.0.8.tar.xz) = b4bd32cf5f2c374b1ff88b69b53db0a2ba840942df0c3886b295fb2020683b5e -SIZE (lyx-2.0.8.tar.xz) = 10480012 +SHA256 (lyx-2.1.0.tar.xz) = f1c9a4f2387e38efee43c0684b4f6fc0972f68d6cb2ad06a1b30c58a81f22d48 +SIZE (lyx-2.1.0.tar.xz) = 10600316 Modified: head/print/lyx/files/patch-config.h.in ============================================================================== --- head/print/lyx/files/patch-config.h.in Mon May 5 17:23:02 2014 (r353033) +++ head/print/lyx/files/patch-config.h.in Mon May 5 17:30:01 2014 (r353034) @@ -1,25 +1,8 @@ -The first change is required to use the C++ tr1 headers only with libstdc++, as -they are not in C++11. - -The second change is required to build with libc++, and is commit -ca7214b410d80c2108dfb43b89cf3c8fc5073882 upstream: - -commit ca7214b410d80c2108dfb43b89cf3c8fc5073882 -Author: Raphael Kubo da Costa <rakuco@FreeBSD.org> -Date: Thu Oct 17 23:39:36 2013 +0300 - - Remove FreeBSD checks when defining USE_WCHAR_T. - - The problems the comments in the build systems refer to seem to have been - fixed for years. [1] says the checks in libstdc++ have been improved, and - all supported FreeBSD versions enable wchar_t support unconditionally in - libstdc++. Additionally, this needlessly impacts FreeBSD when libc++ is used - instead of libstdc++. - - [1] http://gcc.gnu.org/onlinedocs/libstdc++/faq.html#faq.freebsd_wchar +This change is required to use the C++ tr1 headers only with libstdc++, as they +are not in C++11. --- config.h.in.orig 2013-10-20 20:37:35.000000000 +0300 +++ config.h.in 2013-10-20 20:38:41.000000000 +0300 -@@ -633,7 +633,8 @@ +@@ -353,7 +353,8 @@ // TR1 regex not supported in GCC <= 4.5 #ifndef LYX_USE_TR1 @@ -29,22 +12,3 @@ Date: Thu Oct 17 23:39:36 2013 +0300 # define LYX_USE_TR1 # endif #endif -@@ -645,17 +646,7 @@ - # define BOOST_POSIX_PATH 1 - #endif - --/* -- * the FreeBSD libc uses UCS4, but libstdc++ has no proper wchar_t -- * support compiled in: -- * http://gcc.gnu.org/onlinedocs/libstdc++/faq/index.html#3_9 -- * And we are not interested at all what libc -- * does: What we need is a 32bit wide wchar_t, and a libstdc++ that -- * has the needed wchar_t support and uses UCS4. Whether it -- * implements this with the help of libc, or whether it has own code -- * does not matter for us, because we do not use libc directly (Georg) --*/ --#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) -+#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 - # define USE_WCHAR_T - #endif - Modified: head/print/lyx/pkg-plist ============================================================================== --- head/print/lyx/pkg-plist Mon May 5 17:23:02 2014 (r353033) +++ head/print/lyx/pkg-plist Mon May 5 17:30:01 2014 (r353034) @@ -38,6 +38,7 @@ man/man1/tex2lyx.1.gz %%NLS%%share/locale/zh_TW/LC_MESSAGES/lyx.mo share/applications/lyx.desktop share/icons/hicolor/48x48/apps/lyx.png +share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/CREDITS %%DATADIR%%/autocorrect %%DATADIR%%/bind/aqua.bind @@ -60,6 +61,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/configure.py %%DATADIR%%/doc/Additional.lyx %%DATADIR%%/doc/Customization.lyx +%%DATADIR%%/doc/Development.lyx %%DATADIR%%/doc/DummyDocument1.lyx %%DATADIR%%/doc/DummyDocument2.lyx %%DATADIR%%/doc/DummyTextDocument.txt @@ -70,6 +72,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/LaTeXConfig.lyx %%DATADIR%%/doc/Math.lyx %%DATADIR%%/doc/Shortcuts.lyx +%%DATADIR%%/doc/SpecialParagraphShape.tex %%DATADIR%%/doc/Tutorial.lyx %%DATADIR%%/doc/UserGuide.lyx %%DATADIR%%/doc/biblio/LyXDocs.bib @@ -128,6 +131,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/de/clipart/Querverweis.png %%DATADIR%%/doc/de/clipart/StandardBoxQt4.png %%DATADIR%%/doc/de/clipart/UnterdokumentQt4.png +%%DATADIR%%/doc/de/clipart/Zusammenfassung.pdf %%DATADIR%%/doc/el/Intro.lyx %%DATADIR%%/doc/es/Additional.lyx %%DATADIR%%/doc/es/Customization.lyx @@ -154,11 +158,8 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/es/clipart/flotanteQt4.png %%DATADIR%%/doc/es/clipart/notapieQt4.png %%DATADIR%%/doc/es/clipart/referenciaQt4.png -%%DATADIR%%/doc/eu/Additional.lyx -%%DATADIR%%/doc/eu/Customization.lyx %%DATADIR%%/doc/eu/Intro.lyx %%DATADIR%%/doc/eu/Tutorial.lyx -%%DATADIR%%/doc/eu/UserGuide.lyx %%DATADIR%%/doc/fr/Additional.lyx %%DATADIR%%/doc/fr/Customization.lyx %%DATADIR%%/doc/fr/DocumentBidon1.lyx @@ -193,10 +194,8 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/id/clipart/id-contrib.png %%DATADIR%%/doc/id/clipart/id-footnote.png %%DATADIR%%/doc/id/clipart/id-lingkungan.png -%%DATADIR%%/doc/it/Customization.lyx %%DATADIR%%/doc/it/Intro.lyx %%DATADIR%%/doc/it/Tutorial.lyx -%%DATADIR%%/doc/it/UserGuide.lyx %%DATADIR%%/doc/it/clipart/it_footnoteQt4.png %%DATADIR%%/doc/it/clipart/it_referenceQt4.png %%DATADIR%%/doc/ja/Additional.lyx @@ -211,17 +210,23 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/ja/Shortcuts.lyx %%DATADIR%%/doc/ja/Tutorial.lyx %%DATADIR%%/doc/ja/UserGuide.lyx +%%DATADIR%%/doc/ja/clipart/BoxInsetDefaultQt4.png %%DATADIR%%/doc/ja/clipart/ChildDocumentQt4.png +%%DATADIR%%/doc/ja/clipart/CommentNoteImageQt4.png %%DATADIR%%/doc/ja/clipart/ERT.png %%DATADIR%%/doc/ja/clipart/ExternalMaterialQt4.png +%%DATADIR%%/doc/ja/clipart/GreyedOutNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/LyXNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/StandardToolbar.png %%DATADIR%%/doc/ja/clipart/ToolbarEnvBox.png %%DATADIR%%/doc/ja/clipart/floatQt4.png %%DATADIR%%/doc/ja/clipart/footnoteQt4.png +%%DATADIR%%/doc/ja/clipart/labelQt4.png +%%DATADIR%%/doc/ja/clipart/macrobox.png %%DATADIR%%/doc/ja/clipart/referenceQt4.png %%DATADIR%%/doc/nb/Intro.lyx %%DATADIR%%/doc/nl/Intro.lyx %%DATADIR%%/doc/nl/Tutorial.lyx -%%DATADIR%%/doc/pl/Additional.lyx %%DATADIR%%/doc/pl/Intro.lyx %%DATADIR%%/doc/pl/Tutorial.lyx %%DATADIR%%/doc/pt/Intro.lyx @@ -231,7 +236,6 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/doc/ru/Tutorial.lyx %%DATADIR%%/doc/sk/Intro.lyx %%DATADIR%%/doc/sk/Tutorial.lyx -%%DATADIR%%/doc/sk/UserGuide.lyx %%DATADIR%%/doc/sl/Intro.lyx %%DATADIR%%/doc/sl/Tutorial.lyx %%DATADIR%%/doc/sv/Intro.lyx @@ -249,13 +253,15 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/Foils.lyx %%DATADIR%%/examples/ItemizeBullets.lyx %%DATADIR%%/examples/Literate.lyx +%%DATADIR%%/examples/MultilingualCaptions.lyx +%%DATADIR%%/examples/R-S-statements.lyx %%DATADIR%%/examples/aa_sample.lyx %%DATADIR%%/examples/aas_sample.lyx %%DATADIR%%/examples/achemso.lyx %%DATADIR%%/examples/addressExample.adr %%DATADIR%%/examples/amsart-test.lyx %%DATADIR%%/examples/amsbook-test.lyx -%%DATADIR%%/examples/armenian-article.lyx +%%DATADIR%%/examples/beamer-article.lyx %%DATADIR%%/examples/beamer-g4-mask.jpg %%DATADIR%%/examples/beamer-g4.jpg %%DATADIR%%/examples/beamer-icsi-logo.pdf @@ -267,7 +273,9 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/beamer-knight3.png %%DATADIR%%/examples/beamer-knight4-mask.png %%DATADIR%%/examples/beamer-knight4.png +%%DATADIR%%/examples/beamer.lyx %%DATADIR%%/examples/beamerlyxexample1.lyx +%%DATADIR%%/examples/beamerposter.lyx %%DATADIR%%/examples/biblioExample.bib %%DATADIR%%/examples/ca/ItemizeBullets.lyx %%DATADIR%%/examples/ca/mathed.lyx @@ -282,10 +290,11 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/de/Dezimal.lyx %%DATADIR%%/examples/de/ItemizeBullets.lyx %%DATADIR%%/examples/de/Lebenslauf.lyx +%%DATADIR%%/examples/de/beamer-article.lyx +%%DATADIR%%/examples/de/beamer.lyx %%DATADIR%%/examples/de/beispiel_gelyxt.lyx %%DATADIR%%/examples/de/beispiel_roh.lyx %%DATADIR%%/examples/de/linguistics.lyx -%%DATADIR%%/examples/de/multicol.lyx %%DATADIR%%/examples/de/serienbrief1.lyx %%DATADIR%%/examples/de/serienbrief2.lyx %%DATADIR%%/examples/de/serienbrief3.lyx @@ -300,7 +309,6 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/es/europeCV.lyx %%DATADIR%%/examples/es/linguistics.lyx %%DATADIR%%/examples/es/modernCV.lyx -%%DATADIR%%/examples/es/multicol.lyx %%DATADIR%%/examples/es/splash.lyx %%DATADIR%%/examples/es/tufte-book.lyx %%DATADIR%%/examples/es/tufte-handout.lyx @@ -320,7 +328,6 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/fr/exemple_brut.lyx %%DATADIR%%/examples/fr/exemple_lyxifie.lyx %%DATADIR%%/examples/fr/linguistics.lyx -%%DATADIR%%/examples/fr/multicol.lyx %%DATADIR%%/examples/fr/seminar.lyx %%DATADIR%%/examples/fr/simplecv.lyx %%DATADIR%%/examples/fr/splash.lyx @@ -344,12 +351,18 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/it/splash.lyx %%DATADIR%%/examples/ja/Braille.lyx %%DATADIR%%/examples/ja/FeynmanDiagrams.lyx +%%DATADIR%%/examples/ja/MultilingualCaptions.lyx +%%DATADIR%%/examples/ja/R-S-statements.lyx +%%DATADIR%%/examples/ja/beamer.lyx +%%DATADIR%%/examples/ja/knitr.lyx +%%DATADIR%%/examples/ja/lilypond.lyx %%DATADIR%%/examples/ja/linguistics.lyx -%%DATADIR%%/examples/ja/multicol.lyx %%DATADIR%%/examples/ja/splash.lyx +%%DATADIR%%/examples/ja/sweave.lyx %%DATADIR%%/examples/ja/xyfigure.png %%DATADIR%%/examples/ja/xypic.lyx %%DATADIR%%/examples/knitr.lyx +%%DATADIR%%/examples/ko/splash.lyx %%DATADIR%%/examples/landslide.lyx %%DATADIR%%/examples/lilypond.lyx %%DATADIR%%/examples/linguistics.lyx @@ -357,8 +370,6 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/localization_test.lyx %%DATADIR%%/examples/longsheet.gnumeric %%DATADIR%%/examples/modernCV.lyx -%%DATADIR%%/examples/multicol.lyx -%%DATADIR%%/examples/nl/multicol.lyx %%DATADIR%%/examples/nl/opsommingstekens.lyx %%DATADIR%%/examples/nl/splash.lyx %%DATADIR%%/examples/nl/voorbeeld_ruw.lyx @@ -385,10 +396,42 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/examples/sl/splash.lyx %%DATADIR%%/examples/splash.lyx %%DATADIR%%/examples/spreadsheet.lyx +%%DATADIR%%/examples/springer/svmono_acknow.lyx +%%DATADIR%%/examples/springer/svmono_acronym.lyx +%%DATADIR%%/examples/springer/svmono_appendix.lyx +%%DATADIR%%/examples/springer/svmono_book-master.lyx +%%DATADIR%%/examples/springer/svmono_chapter.lyx +%%DATADIR%%/examples/springer/svmono_dedication.lyx +%%DATADIR%%/examples/springer/svmono_foreword.lyx +%%DATADIR%%/examples/springer/svmono_glossary.lyx +%%DATADIR%%/examples/springer/svmono_part.lyx +%%DATADIR%%/examples/springer/svmono_preface.lyx +%%DATADIR%%/examples/springer/svmono_referenc.lyx +%%DATADIR%%/examples/springer/svmono_solutions.lyx +%%DATADIR%%/examples/springer/svmult_acknow.lyx +%%DATADIR%%/examples/springer/svmult_acronym.lyx +%%DATADIR%%/examples/springer/svmult_appendix.lyx +%%DATADIR%%/examples/springer/svmult_author.lyx +%%DATADIR%%/examples/springer/svmult_cblist.lyx +%%DATADIR%%/examples/springer/svmult_dedication.lyx +%%DATADIR%%/examples/springer/svmult_editor-master.lyx +%%DATADIR%%/examples/springer/svmult_foreword.lyx +%%DATADIR%%/examples/springer/svmult_glossary.lyx +%%DATADIR%%/examples/springer/svmult_part.lyx +%%DATADIR%%/examples/springer/svmult_preface.lyx +%%DATADIR%%/examples/springer/svmult_referenc.lyx %%DATADIR%%/examples/sr/Braille.lyx %%DATADIR%%/examples/sr/splash.lyx %%DATADIR%%/examples/sv/splash.lyx %%DATADIR%%/examples/sweave.lyx +%%DATADIR%%/examples/thesis/Acknowledgments.lyx +%%DATADIR%%/examples/thesis/Appendix.lyx +%%DATADIR%%/examples/thesis/Summary.lyx +%%DATADIR%%/examples/thesis/alpha.bst +%%DATADIR%%/examples/thesis/chapter-1.lyx +%%DATADIR%%/examples/thesis/chapter-2.lyx +%%DATADIR%%/examples/thesis/thesis.lyx +%%DATADIR%%/examples/thesis/thesisExample.bib %%DATADIR%%/examples/tufte-book.lyx %%DATADIR%%/examples/tufte-handout.lyx %%DATADIR%%/examples/uk/splash.lyx @@ -406,6 +449,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/fonts/msam10.ttf %%DATADIR%%/fonts/msbm10.ttf %%DATADIR%%/fonts/rsfs10.ttf +%%DATADIR%%/fonts/stmary10.ttf %%DATADIR%%/fonts/wasy10.ttf %%DATADIR%%/images/all-changes-accept.png %%DATADIR%%/images/all-changes-reject.png @@ -508,7 +552,6 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/classic/changes-merge.png %%DATADIR%%/images/classic/changes-output.png %%DATADIR%%/images/classic/changes-track.png -%%DATADIR%%/images/classic/close-tab-group.png %%DATADIR%%/images/classic/copy.png %%DATADIR%%/images/classic/cut.png %%DATADIR%%/images/classic/demote.png @@ -547,12 +590,12 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/classic/layout-document.png %%DATADIR%%/images/classic/layout-paragraph.png %%DATADIR%%/images/classic/layout.png +%%DATADIR%%/images/classic/layout_Chunk.png %%DATADIR%%/images/classic/layout_Description.png %%DATADIR%%/images/classic/layout_Enumerate.png %%DATADIR%%/images/classic/layout_Itemize.png %%DATADIR%%/images/classic/layout_List.png %%DATADIR%%/images/classic/layout_LyX-Code.png -%%DATADIR%%/images/classic/layout_Scrap.png %%DATADIR%%/images/classic/layout_Section.png %%DATADIR%%/images/classic/marginalnote-insert.png %%DATADIR%%/images/classic/master-buffer-update.png @@ -581,8 +624,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/classic/reload.png %%DATADIR%%/images/classic/script-insert_subscript.png %%DATADIR%%/images/classic/script-insert_superscript.png -%%DATADIR%%/images/classic/split-view_horizontal.png -%%DATADIR%%/images/classic/split-view_vertical.png +%%DATADIR%%/images/classic/tab-group-close.png %%DATADIR%%/images/classic/tabular-feature_align-decimal.png %%DATADIR%%/images/classic/tabular-feature_append-column.png %%DATADIR%%/images/classic/tabular-feature_append-row.png @@ -628,7 +670,8 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/classic/vc-repo-update.png %%DATADIR%%/images/classic/vc-revert.png %%DATADIR%%/images/classic/view-others.png -%%DATADIR%%/images/close-tab-group.png +%%DATADIR%%/images/classic/view-split_horizontal.png +%%DATADIR%%/images/classic/view-split_vertical.png %%DATADIR%%/images/closetab.png %%DATADIR%%/images/copy.png %%DATADIR%%/images/cut.png @@ -650,6 +693,7 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/dialog-toggle_findreplaceadv.png %%DATADIR%%/images/dialog-toggle_toc.png %%DATADIR%%/images/down.png +%%DATADIR%%/images/editclear.png %%DATADIR%%/images/ert-insert.png %%DATADIR%%/images/file-open.png %%DATADIR%%/images/float-insert_figure.png @@ -663,20 +707,192 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/href-insert.png %%DATADIR%%/images/index-insert.png %%DATADIR%%/images/info-insert_buffer_vcs-revision.png +%%DATADIR%%/images/ipa/ipamacro-insert_deco_bottomtiebar.png +%%DATADIR%%/images/ipa/ipamacro-insert_deco_toptiebar.png +%%DATADIR%%/images/ipa/ipamacro-insert_tone-falling.png +%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising-falling.png +%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising.png +%%DATADIR%%/images/ipa/ipamacro-insert_tone-low-rising.png +%%DATADIR%%/images/ipa/ipamacro-insert_tone-rising.png +%%DATADIR%%/images/ipa/unicode-insert_0x002e.png +%%DATADIR%%/images/ipa/unicode-insert_0x0061.png +%%DATADIR%%/images/ipa/unicode-insert_0x0062.png +%%DATADIR%%/images/ipa/unicode-insert_0x0063.png +%%DATADIR%%/images/ipa/unicode-insert_0x0064.png +%%DATADIR%%/images/ipa/unicode-insert_0x0065.png +%%DATADIR%%/images/ipa/unicode-insert_0x0066.png +%%DATADIR%%/images/ipa/unicode-insert_0x0068.png +%%DATADIR%%/images/ipa/unicode-insert_0x0069.png +%%DATADIR%%/images/ipa/unicode-insert_0x006b.png +%%DATADIR%%/images/ipa/unicode-insert_0x006c.png +%%DATADIR%%/images/ipa/unicode-insert_0x006d.png +%%DATADIR%%/images/ipa/unicode-insert_0x006e.png +%%DATADIR%%/images/ipa/unicode-insert_0x006f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0070.png +%%DATADIR%%/images/ipa/unicode-insert_0x0071.png +%%DATADIR%%/images/ipa/unicode-insert_0x0072.png +%%DATADIR%%/images/ipa/unicode-insert_0x0073.png +%%DATADIR%%/images/ipa/unicode-insert_0x0074.png +%%DATADIR%%/images/ipa/unicode-insert_0x0075.png +%%DATADIR%%/images/ipa/unicode-insert_0x0076.png +%%DATADIR%%/images/ipa/unicode-insert_0x0077.png +%%DATADIR%%/images/ipa/unicode-insert_0x0078.png +%%DATADIR%%/images/ipa/unicode-insert_0x0079.png +%%DATADIR%%/images/ipa/unicode-insert_0x007a.png +%%DATADIR%%/images/ipa/unicode-insert_0x007c.png +%%DATADIR%%/images/ipa/unicode-insert_0x00e6.png +%%DATADIR%%/images/ipa/unicode-insert_0x00e7.png +%%DATADIR%%/images/ipa/unicode-insert_0x00f0.png +%%DATADIR%%/images/ipa/unicode-insert_0x00f8.png +%%DATADIR%%/images/ipa/unicode-insert_0x0127.png +%%DATADIR%%/images/ipa/unicode-insert_0x014b.png +%%DATADIR%%/images/ipa/unicode-insert_0x0153.png +%%DATADIR%%/images/ipa/unicode-insert_0x01c0.png +%%DATADIR%%/images/ipa/unicode-insert_0x01c1.png +%%DATADIR%%/images/ipa/unicode-insert_0x01c2.png +%%DATADIR%%/images/ipa/unicode-insert_0x01c3.png +%%DATADIR%%/images/ipa/unicode-insert_0x0250.png +%%DATADIR%%/images/ipa/unicode-insert_0x0251.png +%%DATADIR%%/images/ipa/unicode-insert_0x0252.png +%%DATADIR%%/images/ipa/unicode-insert_0x0253.png +%%DATADIR%%/images/ipa/unicode-insert_0x0254.png +%%DATADIR%%/images/ipa/unicode-insert_0x0255.png +%%DATADIR%%/images/ipa/unicode-insert_0x0256.png +%%DATADIR%%/images/ipa/unicode-insert_0x0257.png +%%DATADIR%%/images/ipa/unicode-insert_0x0258.png +%%DATADIR%%/images/ipa/unicode-insert_0x0259.png +%%DATADIR%%/images/ipa/unicode-insert_0x025b.png +%%DATADIR%%/images/ipa/unicode-insert_0x025c.png +%%DATADIR%%/images/ipa/unicode-insert_0x025e.png +%%DATADIR%%/images/ipa/unicode-insert_0x025f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0260.png +%%DATADIR%%/images/ipa/unicode-insert_0x0261.png +%%DATADIR%%/images/ipa/unicode-insert_0x0262.png +%%DATADIR%%/images/ipa/unicode-insert_0x0263.png +%%DATADIR%%/images/ipa/unicode-insert_0x0264.png +%%DATADIR%%/images/ipa/unicode-insert_0x0265.png +%%DATADIR%%/images/ipa/unicode-insert_0x0266.png +%%DATADIR%%/images/ipa/unicode-insert_0x0267.png +%%DATADIR%%/images/ipa/unicode-insert_0x0268.png +%%DATADIR%%/images/ipa/unicode-insert_0x026a.png +%%DATADIR%%/images/ipa/unicode-insert_0x026c.png +%%DATADIR%%/images/ipa/unicode-insert_0x026d.png +%%DATADIR%%/images/ipa/unicode-insert_0x026e.png +%%DATADIR%%/images/ipa/unicode-insert_0x026f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0270.png +%%DATADIR%%/images/ipa/unicode-insert_0x0271.png +%%DATADIR%%/images/ipa/unicode-insert_0x0272.png +%%DATADIR%%/images/ipa/unicode-insert_0x0273.png +%%DATADIR%%/images/ipa/unicode-insert_0x0274.png +%%DATADIR%%/images/ipa/unicode-insert_0x0275.png +%%DATADIR%%/images/ipa/unicode-insert_0x0276.png +%%DATADIR%%/images/ipa/unicode-insert_0x0278.png +%%DATADIR%%/images/ipa/unicode-insert_0x0279.png +%%DATADIR%%/images/ipa/unicode-insert_0x027a.png +%%DATADIR%%/images/ipa/unicode-insert_0x027b.png +%%DATADIR%%/images/ipa/unicode-insert_0x027d.png +%%DATADIR%%/images/ipa/unicode-insert_0x027e.png +%%DATADIR%%/images/ipa/unicode-insert_0x0280.png +%%DATADIR%%/images/ipa/unicode-insert_0x0281.png +%%DATADIR%%/images/ipa/unicode-insert_0x0282.png +%%DATADIR%%/images/ipa/unicode-insert_0x0283.png +%%DATADIR%%/images/ipa/unicode-insert_0x0284.png +%%DATADIR%%/images/ipa/unicode-insert_0x0288.png +%%DATADIR%%/images/ipa/unicode-insert_0x0289.png +%%DATADIR%%/images/ipa/unicode-insert_0x028a.png +%%DATADIR%%/images/ipa/unicode-insert_0x028b.png +%%DATADIR%%/images/ipa/unicode-insert_0x028c.png +%%DATADIR%%/images/ipa/unicode-insert_0x028d.png +%%DATADIR%%/images/ipa/unicode-insert_0x028e.png +%%DATADIR%%/images/ipa/unicode-insert_0x028f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0290.png +%%DATADIR%%/images/ipa/unicode-insert_0x0291.png +%%DATADIR%%/images/ipa/unicode-insert_0x0292.png +%%DATADIR%%/images/ipa/unicode-insert_0x0294.png +%%DATADIR%%/images/ipa/unicode-insert_0x0295.png +%%DATADIR%%/images/ipa/unicode-insert_0x0298.png +%%DATADIR%%/images/ipa/unicode-insert_0x0299.png +%%DATADIR%%/images/ipa/unicode-insert_0x029b.png +%%DATADIR%%/images/ipa/unicode-insert_0x029c.png +%%DATADIR%%/images/ipa/unicode-insert_0x029d.png +%%DATADIR%%/images/ipa/unicode-insert_0x029f.png +%%DATADIR%%/images/ipa/unicode-insert_0x02a1.png +%%DATADIR%%/images/ipa/unicode-insert_0x02a2.png +%%DATADIR%%/images/ipa/unicode-insert_0x02b0.png +%%DATADIR%%/images/ipa/unicode-insert_0x02b2.png +%%DATADIR%%/images/ipa/unicode-insert_0x02b7.png +%%DATADIR%%/images/ipa/unicode-insert_0x02bc.png +%%DATADIR%%/images/ipa/unicode-insert_0x02c8.png +%%DATADIR%%/images/ipa/unicode-insert_0x02cc.png +%%DATADIR%%/images/ipa/unicode-insert_0x02d0.png +%%DATADIR%%/images/ipa/unicode-insert_0x02d1.png +%%DATADIR%%/images/ipa/unicode-insert_0x02de.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e0.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e1.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e4.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e5.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e6.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e7.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e8.png +%%DATADIR%%/images/ipa/unicode-insert_0x02e9.png +%%DATADIR%%/images/ipa/unicode-insert_0x02fa.png +%%DATADIR%%/images/ipa/unicode-insert_0x0300.png +%%DATADIR%%/images/ipa/unicode-insert_0x0301.png +%%DATADIR%%/images/ipa/unicode-insert_0x0302.png +%%DATADIR%%/images/ipa/unicode-insert_0x0303.png +%%DATADIR%%/images/ipa/unicode-insert_0x0304.png +%%DATADIR%%/images/ipa/unicode-insert_0x0306.png +%%DATADIR%%/images/ipa/unicode-insert_0x0308.png +%%DATADIR%%/images/ipa/unicode-insert_0x030a.png +%%DATADIR%%/images/ipa/unicode-insert_0x030b.png +%%DATADIR%%/images/ipa/unicode-insert_0x030c.png +%%DATADIR%%/images/ipa/unicode-insert_0x030f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0318.png +%%DATADIR%%/images/ipa/unicode-insert_0x0319.png +%%DATADIR%%/images/ipa/unicode-insert_0x031c.png +%%DATADIR%%/images/ipa/unicode-insert_0x031d.png +%%DATADIR%%/images/ipa/unicode-insert_0x031e.png +%%DATADIR%%/images/ipa/unicode-insert_0x031f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0320.png +%%DATADIR%%/images/ipa/unicode-insert_0x0324.png +%%DATADIR%%/images/ipa/unicode-insert_0x0325.png +%%DATADIR%%/images/ipa/unicode-insert_0x0329.png +%%DATADIR%%/images/ipa/unicode-insert_0x032a.png +%%DATADIR%%/images/ipa/unicode-insert_0x032c.png +%%DATADIR%%/images/ipa/unicode-insert_0x032f.png +%%DATADIR%%/images/ipa/unicode-insert_0x0330.png +%%DATADIR%%/images/ipa/unicode-insert_0x0334.png +%%DATADIR%%/images/ipa/unicode-insert_0x0339.png +%%DATADIR%%/images/ipa/unicode-insert_0x033a.png +%%DATADIR%%/images/ipa/unicode-insert_0x033b.png +%%DATADIR%%/images/ipa/unicode-insert_0x033c.png +%%DATADIR%%/images/ipa/unicode-insert_0x033d.png +%%DATADIR%%/images/ipa/unicode-insert_0x03b2.png +%%DATADIR%%/images/ipa/unicode-insert_0x03b8.png +%%DATADIR%%/images/ipa/unicode-insert_0x03c7.png +%%DATADIR%%/images/ipa/unicode-insert_0x1dc4.png +%%DATADIR%%/images/ipa/unicode-insert_0x1dc5.png +%%DATADIR%%/images/ipa/unicode-insert_0x1dc8.png +%%DATADIR%%/images/ipa/unicode-insert_0x2016.png +%%DATADIR%%/images/ipa/unicode-insert_0x203f.png +%%DATADIR%%/images/ipa/unicode-insert_0x207f.png +%%DATADIR%%/images/ipa/unicode-insert_0x2197.png +%%DATADIR%%/images/ipa/unicode-insert_0x2198.png +%%DATADIR%%/images/ipa/unicode-insert_0x2c71.png +%%DATADIR%%/images/ipa/unicode-insert_0xa71b.png +%%DATADIR%%/images/ipa/unicode-insert_0xa71c.png %%DATADIR%%/images/label-insert.png %%DATADIR%%/images/layout-document.png %%DATADIR%%/images/layout-paragraph.png %%DATADIR%%/images/layout.png +%%DATADIR%%/images/layout_Chunk.png %%DATADIR%%/images/layout_Description.png %%DATADIR%%/images/layout_Enumerate.png %%DATADIR%%/images/layout_Itemize.png %%DATADIR%%/images/layout_List.png %%DATADIR%%/images/layout_LyX-Code.png -%%DATADIR%%/images/layout_Scrap.png %%DATADIR%%/images/layout_Section.png %%DATADIR%%/images/lyx-quit.png -%%DATADIR%%/images/lyx.png -%%DATADIR%%/images/lyx.svg %%DATADIR%%/images/marginalnote-insert.png %%DATADIR%%/images/master-buffer-update.png %%DATADIR%%/images/master-buffer-view.png @@ -695,43 +911,86 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math-mode.png %%DATADIR%%/images/math-subscript.png %%DATADIR%%/images/math-superscript.png +%%DATADIR%%/images/math/AC.png +%%DATADIR%%/images/math/APLbox.png +%%DATADIR%%/images/math/APLcomment.png +%%DATADIR%%/images/math/APLdown.png +%%DATADIR%%/images/math/APLdownarrowbox.png +%%DATADIR%%/images/math/APLinput.png +%%DATADIR%%/images/math/APLinv.png +%%DATADIR%%/images/math/APLleftarrowbox.png +%%DATADIR%%/images/math/APLlog.png +%%DATADIR%%/images/math/APLrightarrowbox.png +%%DATADIR%%/images/math/APLstar.png +%%DATADIR%%/images/math/APLup.png +%%DATADIR%%/images/math/APLuparrowbox.png %%DATADIR%%/images/math/Bbbk.png %%DATADIR%%/images/math/Finv.png %%DATADIR%%/images/math/Game.png +%%DATADIR%%/images/math/HF.png %%DATADIR%%/images/math/Im.png %%DATADIR%%/images/math/Lleftarrow.png %%DATADIR%%/images/math/Lsh.png %%DATADIR%%/images/math/Re.png %%DATADIR%%/images/math/Rrightarrow.png %%DATADIR%%/images/math/Rsh.png +%%DATADIR%%/images/math/VHF.png %%DATADIR%%/images/math/Vvdash.png +%%DATADIR%%/images/math/Ydown.png +%%DATADIR%%/images/math/Yleft.png +%%DATADIR%%/images/math/Yright.png +%%DATADIR%%/images/math/Yup.png %%DATADIR%%/images/math/acute.png %%DATADIR%%/images/math/adots.png +%%DATADIR%%/images/math/agemO.png %%DATADIR%%/images/math/aleph.png %%DATADIR%%/images/math/alpha.png %%DATADIR%%/images/math/amalg.png %%DATADIR%%/images/math/angle.png +%%DATADIR%%/images/math/apprge.png +%%DATADIR%%/images/math/apprle.png %%DATADIR%%/images/math/approx.png %%DATADIR%%/images/math/approxeq.png +%%DATADIR%%/images/math/aquarius.png +%%DATADIR%%/images/math/aries.png +%%DATADIR%%/images/math/arrownot.png +%%DATADIR%%/images/math/arrownot2.png +%%DATADIR%%/images/math/arrowvert.png +%%DATADIR%%/images/math/arrowvert2.png +%%DATADIR%%/images/math/ascnode.png +%%DATADIR%%/images/math/ast.png +%%DATADIR%%/images/math/astrosun.png %%DATADIR%%/images/math/asymp.png +%%DATADIR%%/images/math/ataribox.png %%DATADIR%%/images/math/backepsilon.png %%DATADIR%%/images/math/backprime.png %%DATADIR%%/images/math/backsim.png %%DATADIR%%/images/math/backsimeq.png %%DATADIR%%/images/math/backslash.png %%DATADIR%%/images/math/bar.png +%%DATADIR%%/images/math/baro.png %%DATADIR%%/images/math/bars.png %%DATADIR%%/images/math/barwedge.png +%%DATADIR%%/images/math/bbslash.png +%%DATADIR%%/images/math/bcancel.png %%DATADIR%%/images/math/because.png +%%DATADIR%%/images/math/bell.png %%DATADIR%%/images/math/beta.png %%DATADIR%%/images/math/beth.png %%DATADIR%%/images/math/between.png +%%DATADIR%%/images/math/bigbox.png %%DATADIR%%/images/math/bigcap.png %%DATADIR%%/images/math/bigcirc.png %%DATADIR%%/images/math/bigcup.png +%%DATADIR%%/images/math/bigcurlyvee.png +%%DATADIR%%/images/math/bigcurlywedge.png +%%DATADIR%%/images/math/biginterleave.png +%%DATADIR%%/images/math/bignplus.png %%DATADIR%%/images/math/bigodot.png %%DATADIR%%/images/math/bigoplus.png %%DATADIR%%/images/math/bigotimes.png +%%DATADIR%%/images/math/bigparallel.png +%%DATADIR%%/images/math/bigsqcap.png %%DATADIR%%/images/math/bigsqcup.png %%DATADIR%%/images/math/bigstar.png %%DATADIR%%/images/math/bigtriangledown.png @@ -739,7 +998,10 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/biguplus.png %%DATADIR%%/images/math/bigvee.png %%DATADIR%%/images/math/bigwedge.png +%%DATADIR%%/images/math/binampersand.png +%%DATADIR%%/images/math/bindnasrepma.png %%DATADIR%%/images/math/blacklozenge.png +%%DATADIR%%/images/math/blacksmiley.png %%DATADIR%%/images/math/blacksquare.png %%DATADIR%%/images/math/blacktriangle.png %%DATADIR%%/images/math/blacktriangledown.png @@ -747,47 +1009,88 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/blacktriangleright.png %%DATADIR%%/images/math/bot.png %%DATADIR%%/images/math/bowtie.png +%%DATADIR%%/images/math/bowtie2.png +%%DATADIR%%/images/math/box2.png +%%DATADIR%%/images/math/boxast.png +%%DATADIR%%/images/math/boxbar.png +%%DATADIR%%/images/math/boxbox.png +%%DATADIR%%/images/math/boxbslash.png +%%DATADIR%%/images/math/boxcircle.png %%DATADIR%%/images/math/boxdot.png +%%DATADIR%%/images/math/boxempty.png %%DATADIR%%/images/math/boxminus.png %%DATADIR%%/images/math/boxplus.png +%%DATADIR%%/images/math/boxslash.png %%DATADIR%%/images/math/boxtimes.png %%DATADIR%%/images/math/breve.png +%%DATADIR%%/images/math/brokenvert.png %%DATADIR%%/images/math/bullet.png %%DATADIR%%/images/math/bumpeq.png %%DATADIR%%/images/math/bumpeq2.png +%%DATADIR%%/images/math/cancel.png +%%DATADIR%%/images/math/cancelto.png +%%DATADIR%%/images/math/cancer.png %%DATADIR%%/images/math/cap.png %%DATADIR%%/images/math/cap2.png +%%DATADIR%%/images/math/capricornus.png %%DATADIR%%/images/math/cases.png %%DATADIR%%/images/math/cdot.png +%%DATADIR%%/images/math/cdotp.png %%DATADIR%%/images/math/cdots.png +%%DATADIR%%/images/math/cent.png %%DATADIR%%/images/math/centerdot.png %%DATADIR%%/images/math/check.png +%%DATADIR%%/images/math/checked.png +%%DATADIR%%/images/math/checkedbox2.png +%%DATADIR%%/images/math/checkmark.png %%DATADIR%%/images/math/chi.png %%DATADIR%%/images/math/circ.png %%DATADIR%%/images/math/circeq.png +%%DATADIR%%/images/math/circle2.png +%%DATADIR%%/images/math/circle3.png %%DATADIR%%/images/math/circlearrowleft.png %%DATADIR%%/images/math/circlearrowright.png +%%DATADIR%%/images/math/circledR.png %%DATADIR%%/images/math/circledS.png %%DATADIR%%/images/math/circledast.png %%DATADIR%%/images/math/circledcirc.png %%DATADIR%%/images/math/circleddash.png +%%DATADIR%%/images/math/clock.png %%DATADIR%%/images/math/clubsuit.png +%%DATADIR%%/images/math/colon.png +%%DATADIR%%/images/math/colonapprox.png +%%DATADIR%%/images/math/colonapprox2.png +%%DATADIR%%/images/math/coloneq.png +%%DATADIR%%/images/math/coloneq2.png +%%DATADIR%%/images/math/coloneqq.png +%%DATADIR%%/images/math/coloneqq2.png +%%DATADIR%%/images/math/colonsim.png +%%DATADIR%%/images/math/colonsim2.png %%DATADIR%%/images/math/complement.png %%DATADIR%%/images/math/cong.png +%%DATADIR%%/images/math/conjunction.png %%DATADIR%%/images/math/coprod.png %%DATADIR%%/images/math/cup.png %%DATADIR%%/images/math/cup2.png %%DATADIR%%/images/math/curlyeqprec.png %%DATADIR%%/images/math/curlyeqsucc.png %%DATADIR%%/images/math/curlyvee.png +%%DATADIR%%/images/math/curlyveedownarrow.png +%%DATADIR%%/images/math/curlyveeuparrow.png %%DATADIR%%/images/math/curlywedge.png +%%DATADIR%%/images/math/curlywedgedownarrow.png +%%DATADIR%%/images/math/curlywedgeuparrow.png +%%DATADIR%%/images/math/currency.png %%DATADIR%%/images/math/curvearrowleft.png %%DATADIR%%/images/math/curvearrowright.png %%DATADIR%%/images/math/dagger.png %%DATADIR%%/images/math/daleth.png +%%DATADIR%%/images/math/dasharrow.png %%DATADIR%%/images/math/dashleftarrow.png %%DATADIR%%/images/math/dashrightarrow.png %%DATADIR%%/images/math/dashv.png +%%DATADIR%%/images/math/davidsstar.png +%%DATADIR%%/images/math/dblcolon.png %%DATADIR%%/images/math/ddagger.png %%DATADIR%%/images/math/ddddot.png %%DATADIR%%/images/math/dddot.png @@ -796,8 +1099,10 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/delim.png %%DATADIR%%/images/math/delta.png %%DATADIR%%/images/math/delta2.png +%%DATADIR%%/images/math/descnode.png %%DATADIR%%/images/math/diagdown.png %%DATADIR%%/images/math/diagup.png +%%DATADIR%%/images/math/diameter.png %%DATADIR%%/images/math/diamond.png %%DATADIR%%/images/math/diamond2.png %%DATADIR%%/images/math/diamondsuit.png @@ -806,21 +1111,38 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/divideontimes.png %%DATADIR%%/images/math/dot.png %%DATADIR%%/images/math/doteq.png +%%DATADIR%%/images/math/doteq2.png %%DATADIR%%/images/math/doteqdot.png %%DATADIR%%/images/math/dotplus.png +%%DATADIR%%/images/math/dots.png +%%DATADIR%%/images/math/dotsb.png +%%DATADIR%%/images/math/dotsc.png +%%DATADIR%%/images/math/dotsi.png %%DATADIR%%/images/math/dotsint.png %%DATADIR%%/images/math/dotsintop.png +%%DATADIR%%/images/math/dotsm.png +%%DATADIR%%/images/math/dotso.png %%DATADIR%%/images/math/doublebarwedge.png +%%DATADIR%%/images/math/doublecap.png +%%DATADIR%%/images/math/doublecup.png %%DATADIR%%/images/math/downarrow.png %%DATADIR%%/images/math/downarrow2.png +%%DATADIR%%/images/math/downarrow3.png %%DATADIR%%/images/math/downdownarrows.png %%DATADIR%%/images/math/downharpoonleft.png %%DATADIR%%/images/math/downharpoonright.png +%%DATADIR%%/images/math/earth.png +%%DATADIR%%/images/math/eighthnote.png %%DATADIR%%/images/math/ell.png %%DATADIR%%/images/math/empty.png %%DATADIR%%/images/math/emptyset.png %%DATADIR%%/images/math/epsilon.png %%DATADIR%%/images/math/eqcirc.png +%%DATADIR%%/images/math/eqcolon.png +%%DATADIR%%/images/math/eqcolon2.png +%%DATADIR%%/images/math/eqqcolon.png +%%DATADIR%%/images/math/eqqcolon2.png +%%DATADIR%%/images/math/eqsim.png %%DATADIR%%/images/math/eqslantgtr.png %%DATADIR%%/images/math/eqslantless.png %%DATADIR%%/images/math/equation.png @@ -830,6 +1152,10 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/exists.png %%DATADIR%%/images/math/export-others.png %%DATADIR%%/images/math/fallingdotseq.png +%%DATADIR%%/images/math/fatbslash.png +%%DATADIR%%/images/math/fatsemi.png +%%DATADIR%%/images/math/fatslash.png +%%DATADIR%%/images/math/female.png %%DATADIR%%/images/math/fint.png %%DATADIR%%/images/math/fintop.png %%DATADIR%%/images/math/flat.png @@ -838,15 +1164,23 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/frac-square.png %%DATADIR%%/images/math/frac.png %%DATADIR%%/images/math/frown.png +%%DATADIR%%/images/math/frownie.png +%%DATADIR%%/images/math/fullmoon.png +%%DATADIR%%/images/math/fullnote.png %%DATADIR%%/images/math/functions.png %%DATADIR%%/images/math/gamma.png %%DATADIR%%/images/math/gamma2.png +%%DATADIR%%/images/math/ge.png +%%DATADIR%%/images/math/gemini.png %%DATADIR%%/images/math/geq.png %%DATADIR%%/images/math/geqq.png %%DATADIR%%/images/math/geqslant.png +%%DATADIR%%/images/math/gets.png %%DATADIR%%/images/math/gg.png %%DATADIR%%/images/math/ggg.png +%%DATADIR%%/images/math/gggtr.png %%DATADIR%%/images/math/gimel.png +%%DATADIR%%/images/math/gluon.png %%DATADIR%%/images/math/gnapprox.png %%DATADIR%%/images/math/gneq.png %%DATADIR%%/images/math/gneqq.png @@ -859,14 +1193,19 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/gtrless.png %%DATADIR%%/images/math/gtrsim.png %%DATADIR%%/images/math/gvertneqq.png +%%DATADIR%%/images/math/halfnote.png %%DATADIR%%/images/math/hat.png %%DATADIR%%/images/math/hbar.png %%DATADIR%%/images/math/heartsuit.png +%%DATADIR%%/images/math/hexagon.png +%%DATADIR%%/images/math/hexstar.png %%DATADIR%%/images/math/hookleftarrow.png %%DATADIR%%/images/math/hookrightarrow.png %%DATADIR%%/images/math/hphantom.png %%DATADIR%%/images/math/hslash.png %%DATADIR%%/images/math/iddots.png +%%DATADIR%%/images/math/idotsint.png +%%DATADIR%%/images/math/iff.png %%DATADIR%%/images/math/iiiint.png %%DATADIR%%/images/math/iiiintop.png %%DATADIR%%/images/math/iiint.png @@ -874,40 +1213,67 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/iint.png %%DATADIR%%/images/math/iintop.png %%DATADIR%%/images/math/imath.png +%%DATADIR%%/images/math/impliedby.png +%%DATADIR%%/images/math/implies.png %%DATADIR%%/images/math/in.png %%DATADIR%%/images/math/infty.png +%%DATADIR%%/images/math/inplus.png %%DATADIR%%/images/math/int.png %%DATADIR%%/images/math/intercal.png +%%DATADIR%%/images/math/interleave.png %%DATADIR%%/images/math/intop.png +%%DATADIR%%/images/math/invdiameter.png +%%DATADIR%%/images/math/inve.png +%%DATADIR%%/images/math/invneg.png %%DATADIR%%/images/math/iota.png %%DATADIR%%/images/math/jmath.png +%%DATADIR%%/images/math/join2.png +%%DATADIR%%/images/math/jupiter.png %%DATADIR%%/images/math/kappa.png +%%DATADIR%%/images/math/kreuz.png %%DATADIR%%/images/math/lambda.png %%DATADIR%%/images/math/lambda2.png +%%DATADIR%%/images/math/land.png %%DATADIR%%/images/math/landdownint.png %%DATADIR%%/images/math/landdownintop.png %%DATADIR%%/images/math/landupint.png %%DATADIR%%/images/math/landupintop.png %%DATADIR%%/images/math/langle.png +%%DATADIR%%/images/math/lbag.png +%%DATADIR%%/images/math/lbag2.png %%DATADIR%%/images/math/lbrace.png %%DATADIR%%/images/math/lbrace_rbrace.png %%DATADIR%%/images/math/lbracket.png %%DATADIR%%/images/math/lbracket_rbracket.png %%DATADIR%%/images/math/lceil.png %%DATADIR%%/images/math/lceil_rceil.png +%%DATADIR%%/images/math/ldotp.png %%DATADIR%%/images/math/ldots.png +%%DATADIR%%/images/math/le.png +%%DATADIR%%/images/math/leadsto.png %%DATADIR%%/images/math/leftarrow.png %%DATADIR%%/images/math/leftarrow2.png +%%DATADIR%%/images/math/leftarrow3.png %%DATADIR%%/images/math/leftarrowtail.png +%%DATADIR%%/images/math/leftarrowtriangle.png +%%DATADIR%%/images/math/leftcircle2.png +%%DATADIR%%/images/math/leftcircle3.png +%%DATADIR%%/images/math/leftcircle4.png %%DATADIR%%/images/math/leftharpoondown.png %%DATADIR%%/images/math/leftharpoonup.png %%DATADIR%%/images/math/leftleftarrows.png +%%DATADIR%%/images/math/leftmoon.png %%DATADIR%%/images/math/leftrightarrow.png %%DATADIR%%/images/math/leftrightarrow2.png +%%DATADIR%%/images/math/leftrightarroweq.png %%DATADIR%%/images/math/leftrightarrows.png +%%DATADIR%%/images/math/leftrightarrowtriangle.png %%DATADIR%%/images/math/leftrightharpoons.png %%DATADIR%%/images/math/leftrightsquigarrow.png +%%DATADIR%%/images/math/leftslice.png %%DATADIR%%/images/math/leftthreetimes.png +%%DATADIR%%/images/math/leftturn.png +%%DATADIR%%/images/math/leo.png %%DATADIR%%/images/math/leq.png %%DATADIR%%/images/math/leqq.png %%DATADIR%%/images/math/leqslant.png @@ -919,29 +1285,57 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/lesssim.png %%DATADIR%%/images/math/lfloor.png %%DATADIR%%/images/math/lfloor_rfloor.png +%%DATADIR%%/images/math/lhd.png +%%DATADIR%%/images/math/lhd2.png +%%DATADIR%%/images/math/lhook.png +%%DATADIR%%/images/math/libra.png +%%DATADIR%%/images/math/lightning.png %%DATADIR%%/images/math/ll.png +%%DATADIR%%/images/math/llbracket.png +%%DATADIR%%/images/math/llceil.png %%DATADIR%%/images/math/llcorner.png +%%DATADIR%%/images/math/llfloor.png %%DATADIR%%/images/math/lll.png +%%DATADIR%%/images/math/llless.png +%%DATADIR%%/images/math/llparenthesis.png %%DATADIR%%/images/math/lnapprox.png %%DATADIR%%/images/math/lneq.png %%DATADIR%%/images/math/lneqq.png +%%DATADIR%%/images/math/lnot.png %%DATADIR%%/images/math/lnsim.png +%%DATADIR%%/images/math/logof.png +%%DATADIR%%/images/math/longarrownot.png +%%DATADIR%%/images/math/longarrownot2.png %%DATADIR%%/images/math/longleftarrow.png %%DATADIR%%/images/math/longleftarrow2.png %%DATADIR%%/images/math/longleftrightarrow.png %%DATADIR%%/images/math/longleftrightarrow2.png +%%DATADIR%%/images/math/longmapsfrom.png +%%DATADIR%%/images/math/longmapsfrom2.png %%DATADIR%%/images/math/longmapsto.png +%%DATADIR%%/images/math/longmapsto2.png %%DATADIR%%/images/math/longrightarrow.png %%DATADIR%%/images/math/longrightarrow2.png %%DATADIR%%/images/math/looparrowleft.png %%DATADIR%%/images/math/looparrowright.png +%%DATADIR%%/images/math/lor.png %%DATADIR%%/images/math/lozenge.png %%DATADIR%%/images/math/lparen.png %%DATADIR%%/images/math/lparen_rparen.png %%DATADIR%%/images/math/lrcorner.png %%DATADIR%%/images/math/ltimes.png %%DATADIR%%/images/math/lvertneqq.png +%%DATADIR%%/images/math/male.png +%%DATADIR%%/images/math/maltese.png +%%DATADIR%%/images/math/mapsfrom.png +%%DATADIR%%/images/math/mapsfrom2.png +%%DATADIR%%/images/math/mapsfromchar.png +%%DATADIR%%/images/math/mapsfromchar2.png %%DATADIR%%/images/math/mapsto.png +%%DATADIR%%/images/math/mapsto2.png +%%DATADIR%%/images/math/mapstochar.png +%%DATADIR%%/images/math/mapstochar2.png +%%DATADIR%%/images/math/mars.png %%DATADIR%%/images/math/mathbb_C.png %%DATADIR%%/images/math/mathbb_H.png %%DATADIR%%/images/math/mathbb_N.png @@ -953,27 +1347,42 @@ share/icons/hicolor/48x48/apps/lyx.png %%DATADIR%%/images/math/mathcal_L.png %%DATADIR%%/images/math/mathcal_O.png %%DATADIR%%/images/math/mathcircumflex.png +%%DATADIR%%/images/math/mathclap.png +%%DATADIR%%/images/math/mathdollar.png +%%DATADIR%%/images/math/mathllap.png +%%DATADIR%%/images/math/mathparagraph.png +%%DATADIR%%/images/math/mathring.png +%%DATADIR%%/images/math/mathrlap.png %%DATADIR%%/images/math/mathrm_T.png +%%DATADIR%%/images/math/mathsection.png %%DATADIR%%/images/math/matrix.png %%DATADIR%%/images/math/measuredangle.png +%%DATADIR%%/images/math/mercury.png +%%DATADIR%%/images/math/merge.png %%DATADIR%%/images/math/mho.png %%DATADIR%%/images/math/mid.png +%%DATADIR%%/images/math/minuso.png %%DATADIR%%/images/math/models.png +%%DATADIR%%/images/math/moo.png %%DATADIR%%/images/math/mp.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405051730.s45HU1Pq005939>