diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-11-01 21:18:12 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-11-01 21:18:12 +0000 |
commit | eba9cd9999317c630d02ffc4fa1573a76087c1ba (patch) | |
tree | a15bbe78d8e8b41f8c9e437d534d44d87873baae /eclass/latex-package.eclass | |
parent | Stable on x86 wrt bug #111080 (diff) | |
download | gentoo-2-eba9cd9999317c630d02ffc4fa1573a76087c1ba.tar.gz gentoo-2-eba9cd9999317c630d02ffc4fa1573a76087c1ba.tar.bz2 gentoo-2-eba9cd9999317c630d02ffc4fa1573a76087c1ba.zip |
* latex-package.eclass: (latex-package_src_doinstall): Install pfb files
under the right directory (bug #110790).
Diffstat (limited to 'eclass/latex-package.eclass')
-rw-r--r-- | eclass/latex-package.eclass | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass index 62c2ed1d833d..07adf732b304 100644 --- a/eclass/latex-package.eclass +++ b/eclass/latex-package.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.25 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.26 2005/11/01 21:18:12 leonardop Exp $ # # Author Matthew Turk <satai@gentoo.org> # @@ -99,13 +99,20 @@ latex-package_src_doinstall() { texi2dvi -q -c --language=latex $i &> /dev/null done ;; - "tfm" | "vf" | "afm" | "pfb") + "tfm" | "vf" | "afm") for i in `find . -maxdepth 1 -type f -name "*.${1}"` do insinto ${TEXMF}/fonts/${1}/${SUPPLIER}/${PN} doins $i || die "doins $i failed" done ;; + "pfb") + for i in `find . -maxdepth 1 -type f -name "*.pfb"` + do + insinto ${TEXMF}/fonts/type1/${SUPPLIER}/${PN} + doins $i || die "doins $i failed" + done + ;; "ttf") for i in `find . -maxdepth 1 -type f -name "*.ttf"` do |