Index: head/x11/yelp/Makefile =================================================================== --- head/x11/yelp/Makefile (revision 419331) +++ head/x11/yelp/Makefile (revision 419332) @@ -1,42 +1,49 @@ # Created by: Maxim Sobolev # $FreeBSD$ PORTNAME= yelp PORTVERSION= 3.18.1 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Help browser for the GNOME 3 desktop LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= yelp-xsl>=0:textproc/yelp-xsl \ itstool:textproc/itstool LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 RUN_DEPENDS= yelp-xsl>=0:textproc/yelp-xsl PORTSCOUT= limitw:1,even -USES= desktop-file-utils gettext gmake gnome libtool pathfix \ +USES= autoreconf desktop-file-utils gettext gmake gnome libtool pathfix \ pkgconfig tar:xz USE_XORG= x11 ice USE_GNOME= gtk30 intlhack libxml2 libxslt GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib GLIB_SCHEMAS= org.gnome.yelp.gschema.xml INSTALL_TARGET= install-strip .include .if !exists(/usr/libdata/pkgconfig/liblzma.pc) CONFIGURE_ENV+= YELP_LZMA_CFLAGS="-I/usr/include" \ YELP_LZMA_LIBS="-L/usr/lib -llzma" .endif + +post-patch: + @${CP} ${FILESDIR}/yelp-groff ${WRKSRC}/libyelp + +post-install: + ${INSTALL_SCRIPT} ${FILESDIR}/yelp-groff ${STAGEDIR}${PREFIX}/libexec .include Index: head/x11/yelp/files/patch-libyelp_Makefile.am =================================================================== --- head/x11/yelp/files/patch-libyelp_Makefile.am (nonexistent) +++ head/x11/yelp/files/patch-libyelp_Makefile.am (revision 419332) @@ -0,0 +1,18 @@ +--- libyelp/Makefile.am.orig 2016-07-10 15:09:03 UTC ++++ libyelp/Makefile.am +@@ -65,6 +65,7 @@ yelp-common-types.c: $(libyelpcommon_hea + $(libyelpcommon_headers)) > $@ + + lib_LTLIBRARIES = libyelp.la ++libexec_SCRIPTS = yelp-groff + + libyelp_la_SOURCES = \ + yelp-bookmarks.c \ +@@ -115,6 +116,7 @@ libyelp_la_CFLAGS = + $(YELP_CFLAGS) \ + -Wno-deprecated-declarations \ + -DDATADIR=\""$(datadir)"\" \ ++ -DLIBEXECDIR=\"$(libexecdir)\" \ + -DYELP_ICON_PATH=\"$(YELP_ICON_PATH)\" + + libyelp_la_CPPFLAGS = \ Property changes on: head/x11/yelp/files/patch-libyelp_Makefile.am ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/yelp/files/patch-libyelp_yelp-man-parser.c =================================================================== --- head/x11/yelp/files/patch-libyelp_yelp-man-parser.c (nonexistent) +++ head/x11/yelp/files/patch-libyelp_yelp-man-parser.c (revision 419332) @@ -0,0 +1,11 @@ +--- libyelp/yelp-man-parser.c.orig 2016-07-10 15:09:15 UTC ++++ libyelp/yelp-man-parser.c +@@ -369,7 +369,7 @@ get_troff (gchar *path, GError **error) + { + gint ystdout; + GError *err = NULL; +- const gchar *argv[] = { "man", "-Z", "-Tutf8", "-EUTF-8", path, NULL }; ++ const gchar *argv[] = { LIBEXECDIR "/yelp-groff", path, NULL }; + gchar **my_argv; + + /* g_strdupv() should accept a "const gchar **". */ Property changes on: head/x11/yelp/files/patch-libyelp_yelp-man-parser.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/yelp/files/yelp-groff =================================================================== --- head/x11/yelp/files/yelp-groff (nonexistent) +++ head/x11/yelp/files/yelp-groff (revision 419332) @@ -0,0 +1,49 @@ +#!/bin/sh +# +# Copyright (c) 2011 Alexandre Rostovtsev +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public +# License along with this program; if not, write to the +# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. +# +### +# +# Process the requested compressed source nroff file and output groff +# intermediate format. +# + +filename=$1 + +if [ -z ${filename} ] ; then + echo "Usage: yelp-groff [FILE]" >&2 + echo "Process a man FILE and output groff intermediate format." + exit 1 +fi + +# If "man -Z -Tutf8 -EUTF-8" works (i.e. if man is man-db), use that. +man -Z -Tutf8 -EUTF-8 ${filename} 2>/dev/null && exit 0 + +# Otherwise, manually uncompress the file ... +cat="cat" +case ${filename} in + *.bz2) cat="bzip2 -c -d" ;; + *.gz) cat="gunzip -c" ;; + *.lzma) cat="unlzma -c -d" ;; + *.xz) cat="unxz -c" ;; + *.Z) cat="zcat" ;; +esac + +# ... and run groff to get the intermediate format; preprocess with tbl +# unless MANROFFSEQ is defined. +${cat} ${filename} | groff -${MANROFFSEQ:-t} -man -Z -Tutf8 Property changes on: head/x11/yelp/files/yelp-groff ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/yelp/pkg-plist =================================================================== --- head/x11/yelp/pkg-plist (revision 419331) +++ head/x11/yelp/pkg-plist (revision 419332) @@ -1,372 +1,373 @@ bin/gnome-help bin/yelp include/libyelp/yelp-bookmarks.h include/libyelp/yelp-common-types.h include/libyelp/yelp-docbook-document.h include/libyelp/yelp-document.h include/libyelp/yelp-help-list.h include/libyelp/yelp-info-document.h include/libyelp/yelp-mallard-document.h include/libyelp/yelp-man-document.h include/libyelp/yelp-search-entry.h include/libyelp/yelp-settings.h include/libyelp/yelp-simple-document.h include/libyelp/yelp-sqlite-storage.h include/libyelp/yelp-storage.h include/libyelp/yelp-transform.h include/libyelp/yelp-types.h include/libyelp/yelp-uri-builder.h include/libyelp/yelp-uri.h include/libyelp/yelp-view.h lib/libyelp.a lib/libyelp.so lib/libyelp.so.0 lib/libyelp.so.0.0.0 lib/yelp/libyelpcommon.a lib/yelp/libyelpcommon.so lib/yelp/web-extensions/libyelpwebextension.a lib/yelp/web-extensions/libyelpwebextension.so +libexec/yelp-groff share/applications/yelp.desktop share/gtk-doc/html/libyelp/YelpDocument.html share/gtk-doc/html/libyelp/YelpSettings.html share/gtk-doc/html/libyelp/YelpSimpleDocument.html share/gtk-doc/html/libyelp/YelpUri.html share/gtk-doc/html/libyelp/YelpView.html share/gtk-doc/html/libyelp/api-index-full.html share/gtk-doc/html/libyelp/ch01.html share/gtk-doc/html/libyelp/ch01s02.html share/gtk-doc/html/libyelp/home.png share/gtk-doc/html/libyelp/index.html share/gtk-doc/html/libyelp/index.sgml share/gtk-doc/html/libyelp/left-insensitive.png share/gtk-doc/html/libyelp/left.png share/gtk-doc/html/libyelp/libyelp-yelp-error.html share/gtk-doc/html/libyelp/libyelp.devhelp2 share/gtk-doc/html/libyelp/object-tree.html share/gtk-doc/html/libyelp/right-insensitive.png share/gtk-doc/html/libyelp/right.png share/gtk-doc/html/libyelp/style.css share/gtk-doc/html/libyelp/up-insensitive.png share/gtk-doc/html/libyelp/up.png share/locale/af/LC_MESSAGES/yelp.mo share/locale/am/LC_MESSAGES/yelp.mo share/locale/ar/LC_MESSAGES/yelp.mo share/locale/as/LC_MESSAGES/yelp.mo share/locale/ast/LC_MESSAGES/yelp.mo share/locale/az/LC_MESSAGES/yelp.mo share/locale/be/LC_MESSAGES/yelp.mo share/locale/be@latin/LC_MESSAGES/yelp.mo share/locale/bg/LC_MESSAGES/yelp.mo share/locale/bn/LC_MESSAGES/yelp.mo share/locale/bn_IN/LC_MESSAGES/yelp.mo share/locale/br/LC_MESSAGES/yelp.mo share/locale/bs/LC_MESSAGES/yelp.mo share/locale/ca/LC_MESSAGES/yelp.mo share/locale/ca@valencia/LC_MESSAGES/yelp.mo share/locale/crh/LC_MESSAGES/yelp.mo share/locale/cs/LC_MESSAGES/yelp.mo share/locale/cy/LC_MESSAGES/yelp.mo share/locale/da/LC_MESSAGES/yelp.mo share/locale/de/LC_MESSAGES/yelp.mo share/locale/dz/LC_MESSAGES/yelp.mo share/locale/el/LC_MESSAGES/yelp.mo share/locale/en_CA/LC_MESSAGES/yelp.mo share/locale/en_GB/LC_MESSAGES/yelp.mo share/locale/eo/LC_MESSAGES/yelp.mo share/locale/es/LC_MESSAGES/yelp.mo share/locale/et/LC_MESSAGES/yelp.mo share/locale/eu/LC_MESSAGES/yelp.mo share/locale/fa/LC_MESSAGES/yelp.mo share/locale/fi/LC_MESSAGES/yelp.mo share/locale/fr/LC_MESSAGES/yelp.mo share/locale/fur/LC_MESSAGES/yelp.mo share/locale/ga/LC_MESSAGES/yelp.mo share/locale/gd/LC_MESSAGES/yelp.mo share/locale/gl/LC_MESSAGES/yelp.mo share/locale/gu/LC_MESSAGES/yelp.mo share/locale/he/LC_MESSAGES/yelp.mo share/locale/hi/LC_MESSAGES/yelp.mo share/locale/hr/LC_MESSAGES/yelp.mo share/locale/hu/LC_MESSAGES/yelp.mo share/locale/id/LC_MESSAGES/yelp.mo share/locale/is/LC_MESSAGES/yelp.mo share/locale/it/LC_MESSAGES/yelp.mo share/locale/ja/LC_MESSAGES/yelp.mo share/locale/ka/LC_MESSAGES/yelp.mo share/locale/kk/LC_MESSAGES/yelp.mo share/locale/km/LC_MESSAGES/yelp.mo share/locale/kn/LC_MESSAGES/yelp.mo share/locale/ko/LC_MESSAGES/yelp.mo share/locale/ks/LC_MESSAGES/yelp.mo share/locale/ku/LC_MESSAGES/yelp.mo share/locale/ky/LC_MESSAGES/yelp.mo share/locale/la/LC_MESSAGES/yelp.mo share/locale/li/LC_MESSAGES/yelp.mo share/locale/lt/LC_MESSAGES/yelp.mo share/locale/lv/LC_MESSAGES/yelp.mo share/locale/mai/LC_MESSAGES/yelp.mo share/locale/mg/LC_MESSAGES/yelp.mo share/locale/mk/LC_MESSAGES/yelp.mo share/locale/ml/LC_MESSAGES/yelp.mo share/locale/mn/LC_MESSAGES/yelp.mo share/locale/mr/LC_MESSAGES/yelp.mo share/locale/ms/LC_MESSAGES/yelp.mo share/locale/nb/LC_MESSAGES/yelp.mo share/locale/nds/LC_MESSAGES/yelp.mo share/locale/ne/LC_MESSAGES/yelp.mo share/locale/nl/LC_MESSAGES/yelp.mo share/locale/nn/LC_MESSAGES/yelp.mo share/locale/nso/LC_MESSAGES/yelp.mo share/locale/oc/LC_MESSAGES/yelp.mo share/locale/or/LC_MESSAGES/yelp.mo share/locale/pa/LC_MESSAGES/yelp.mo share/locale/pl/LC_MESSAGES/yelp.mo share/locale/ps/LC_MESSAGES/yelp.mo share/locale/pt/LC_MESSAGES/yelp.mo share/locale/pt_BR/LC_MESSAGES/yelp.mo share/locale/ro/LC_MESSAGES/yelp.mo share/locale/ru/LC_MESSAGES/yelp.mo share/locale/rw/LC_MESSAGES/yelp.mo share/locale/si/LC_MESSAGES/yelp.mo share/locale/sk/LC_MESSAGES/yelp.mo share/locale/sl/LC_MESSAGES/yelp.mo share/locale/sq/LC_MESSAGES/yelp.mo share/locale/sr/LC_MESSAGES/yelp.mo share/locale/sr@latin/LC_MESSAGES/yelp.mo share/locale/sv/LC_MESSAGES/yelp.mo share/locale/ta/LC_MESSAGES/yelp.mo share/locale/te/LC_MESSAGES/yelp.mo share/locale/tg/LC_MESSAGES/yelp.mo share/locale/th/LC_MESSAGES/yelp.mo share/locale/tr/LC_MESSAGES/yelp.mo share/locale/ug/LC_MESSAGES/yelp.mo share/locale/uk/LC_MESSAGES/yelp.mo share/locale/uz/LC_MESSAGES/yelp.mo share/locale/uz@cyrillic/LC_MESSAGES/yelp.mo share/locale/vi/LC_MESSAGES/yelp.mo share/locale/wa/LC_MESSAGES/yelp.mo share/locale/xh/LC_MESSAGES/yelp.mo share/locale/zh_CN/LC_MESSAGES/yelp.mo share/locale/zh_HK/LC_MESSAGES/yelp.mo share/locale/zh_TW/LC_MESSAGES/yelp.mo share/locale/zu/LC_MESSAGES/yelp.mo %%DATADIR%%-xsl/xslt/common/domains/yelp.xml %%DATADIR%%/dtd/catalog %%DATADIR%%/dtd/docbookx.dtd %%DATADIR%%/dtd/isoamsa.ent %%DATADIR%%/dtd/isoamsb.ent %%DATADIR%%/dtd/isoamsc.ent %%DATADIR%%/dtd/isoamsn.ent %%DATADIR%%/dtd/isoamso.ent %%DATADIR%%/dtd/isoamsr.ent %%DATADIR%%/dtd/isobox.ent %%DATADIR%%/dtd/isocyr1.ent %%DATADIR%%/dtd/isocyr2.ent %%DATADIR%%/dtd/isodia.ent %%DATADIR%%/dtd/isogrk1.ent %%DATADIR%%/dtd/isogrk2.ent %%DATADIR%%/dtd/isogrk3.ent %%DATADIR%%/dtd/isogrk4.ent %%DATADIR%%/dtd/isolat1.ent %%DATADIR%%/dtd/isolat2.ent %%DATADIR%%/dtd/isonum.ent %%DATADIR%%/dtd/isopub.ent %%DATADIR%%/dtd/isotech.ent %%DATADIR%%/icons/hicolor/16x16/status/bookmark.png %%DATADIR%%/icons/hicolor/16x16/status/yelp-page-task.png %%DATADIR%%/icons/hicolor/16x16/status/yelp-page-tip.png %%DATADIR%%/icons/hicolor/16x16/status/yelp-page-ui.png %%DATADIR%%/icons/hicolor/16x16/status/yelp-page-video.png %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-problem-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-search-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-task-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-tip-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-ui-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/status/yelp-page-video-symbolic.svg %%DATADIR%%/mathjax/MathJax.js %%DATADIR%%/mathjax/config/MMLorHTML.js %%DATADIR%%/mathjax/config/yelp.js %%DATADIR%%/mathjax/extensions/HTML-CSS/handle-floats.js %%DATADIR%%/mathjax/extensions/MathEvents.js %%DATADIR%%/mathjax/extensions/MathMenu.js %%DATADIR%%/mathjax/extensions/MathZoom.js %%DATADIR%%/mathjax/extensions/mml2jax.js %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff %%DATADIR%%/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff %%DATADIR%%/mathjax/jax/element/mml/jax.js %%DATADIR%%/mathjax/jax/element/mml/optable/Arrows.js %%DATADIR%%/mathjax/jax/element/mml/optable/BasicLatin.js %%DATADIR%%/mathjax/jax/element/mml/optable/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/element/mml/optable/CombDiactForSymbols.js %%DATADIR%%/mathjax/jax/element/mml/optable/Dingbats.js %%DATADIR%%/mathjax/jax/element/mml/optable/GeneralPunctuation.js %%DATADIR%%/mathjax/jax/element/mml/optable/GeometricShapes.js %%DATADIR%%/mathjax/jax/element/mml/optable/GreekAndCoptic.js %%DATADIR%%/mathjax/jax/element/mml/optable/Latin1Supplement.js %%DATADIR%%/mathjax/jax/element/mml/optable/LetterlikeSymbols.js %%DATADIR%%/mathjax/jax/element/mml/optable/Makefile.am %%DATADIR%%/mathjax/jax/element/mml/optable/MathOperators.js %%DATADIR%%/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js %%DATADIR%%/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js %%DATADIR%%/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js %%DATADIR%%/mathjax/jax/element/mml/optable/MiscTechnical.js %%DATADIR%%/mathjax/jax/element/mml/optable/SpacingModLetters.js %%DATADIR%%/mathjax/jax/element/mml/optable/SuppMathOperators.js %%DATADIR%%/mathjax/jax/element/mml/optable/SupplementalArrowsA.js %%DATADIR%%/mathjax/jax/element/mml/optable/SupplementalArrowsB.js %%DATADIR%%/mathjax/jax/input/MathML/config.js %%DATADIR%%/mathjax/jax/input/MathML/entities/a.js %%DATADIR%%/mathjax/jax/input/MathML/entities/b.js %%DATADIR%%/mathjax/jax/input/MathML/entities/c.js %%DATADIR%%/mathjax/jax/input/MathML/entities/d.js %%DATADIR%%/mathjax/jax/input/MathML/entities/e.js %%DATADIR%%/mathjax/jax/input/MathML/entities/f.js %%DATADIR%%/mathjax/jax/input/MathML/entities/fr.js %%DATADIR%%/mathjax/jax/input/MathML/entities/g.js %%DATADIR%%/mathjax/jax/input/MathML/entities/h.js %%DATADIR%%/mathjax/jax/input/MathML/entities/i.js %%DATADIR%%/mathjax/jax/input/MathML/entities/j.js %%DATADIR%%/mathjax/jax/input/MathML/entities/k.js %%DATADIR%%/mathjax/jax/input/MathML/entities/l.js %%DATADIR%%/mathjax/jax/input/MathML/entities/m.js %%DATADIR%%/mathjax/jax/input/MathML/entities/n.js %%DATADIR%%/mathjax/jax/input/MathML/entities/o.js %%DATADIR%%/mathjax/jax/input/MathML/entities/opf.js %%DATADIR%%/mathjax/jax/input/MathML/entities/p.js %%DATADIR%%/mathjax/jax/input/MathML/entities/q.js %%DATADIR%%/mathjax/jax/input/MathML/entities/r.js %%DATADIR%%/mathjax/jax/input/MathML/entities/s.js %%DATADIR%%/mathjax/jax/input/MathML/entities/scr.js %%DATADIR%%/mathjax/jax/input/MathML/entities/t.js %%DATADIR%%/mathjax/jax/input/MathML/entities/u.js %%DATADIR%%/mathjax/jax/input/MathML/entities/v.js %%DATADIR%%/mathjax/jax/input/MathML/entities/w.js %%DATADIR%%/mathjax/jax/input/MathML/entities/x.js %%DATADIR%%/mathjax/jax/input/MathML/entities/y.js %%DATADIR%%/mathjax/jax/input/MathML/entities/z.js %%DATADIR%%/mathjax/jax/input/MathML/jax.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/Makefile.am %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/maction.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/menclose.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/mglyph.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/ms.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/mtable.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/autoload/multiline.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/config.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js %%DATADIR%%/mathjax/jax/output/HTML-CSS/jax.js %%DATADIR%%/mathjax/jax/output/NativeMML/config.js %%DATADIR%%/mathjax/jax/output/NativeMML/jax.js %%DATADIR%%/xslt/db2html.xsl %%DATADIR%%/xslt/info2html.xsl %%DATADIR%%/xslt/mal2html.xsl %%DATADIR%%/xslt/man2html.xsl %%DATADIR%%/xslt/yelp-common.xsl