First, to give you an idea what I want to achieve: I would like to installing the Bembo Font Family via otfinst.py for pdflatex.
Why I don't use lualatex or xelatex is the missing support of some microtype features in both of them.
I have found this really good guide at https://tex.stackexchange.com/a/24699 which I went through, but otfinst.py gives me the following error:
python otfinst.py BemboStd*
Your otfinfo version is currently 2.100.
Please upgrade your otfinfo version to at least 2.38.
Where I'm stuck now is how to update otfinfo to a newer release > 2.38, to satisfy otfinst.py requirements.
Some information of my system:
uname -a
Linux ubuntu-server 3.13.0-46-generic #79-Ubuntu SMP Tue Mar 10 20:06:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
pdflatex -v
pdfTeX 3.14159265-2.6-1.40.15 (TeX Live 2014)
kpathsea version 6.2.0
Copyright 2014 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
Compiled with libpng 1.6.10; using libpng 1.6.10
Compiled with zlib 1.2.8; using zlib 1.2.8
Compiled with xpdf version 3.03
kpsewhich -expand-var='$TEXMFLOCAL'
/usr/local/texlive/texmf-local
kpsewhich -expand-var='$TEXMFHOME'
/home/user/texmf
which otfinfo
/usr/local/texlive/2014/bin/x86_64-linux/otfinfo
dpkg --get-selections | grep tex
luatex install
tex-common install
texlive-base install
texlive-binaries install
texlive-font-utils install
texlive-luatex
What is not clear to me is how to update otfinfo and in general in which latex or ubuntu package its distributed, though I think it does not come with texlive-font-utils looking at its content http://packages.ubuntu.com/lucid/all/texlive-font-utils/filelist.
sudo apt-get install lcdf-typetools. The problem is executingotfinfo --version, which still points/usr/local/texlive/2014/bin/x86_64-linux/otfinfo, prints 2.100 whereassudo otfinfo --version, located at/usr/bin/otfinfoand installed by the ubuntu package, outputs the latest version number 2.92. It seems that the script is always refering to the otfinfo binary located under the TeX Live tree. Any ideas on this? – hetsch May 20 '15 at 12:17