dev-tex/frakturx: Use eapi8-dosym.eclass for relative symlinks.

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
This commit is contained in:
Ulrich Müller 2020-11-23 19:32:42 +01:00
parent fba1f36874
commit 38e57fdc6b
No known key found for this signature in database
GPG Key ID: 5188335088415E2E
1 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
# Copyright 1999-2019 Gentoo Authors # Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=7 EAPI=7
inherit latex-package inherit eapi8-dosym latex-package
DESCRIPTION="Collection of blackletter fonts for LaTeX" DESCRIPTION="Collection of blackletter fonts for LaTeX"
HOMEPAGE="http://www.gaehrken.de/fraktur/" HOMEPAGE="http://www.gaehrken.de/fraktur/"
@ -37,11 +37,11 @@ src_prepare() {
} }
src_install() { src_install() {
insinto ${TEXMF}/tex/latex insinto "${TEXMF}"/tex/latex
doins -r tex/latex/fraktur doins -r tex/latex/fraktur
insinto ${TEXMF}/fonts insinto "${TEXMF}"/fonts
doins -r fonts/{tfm,vf,type1,enc} doins -r fonts/{tfm,vf,type1,enc}
insinto ${TEXMF}/fonts/map/dvips/fraktur insinto "${TEXMF}"/fonts/map/dvips/fraktur
doins fonts/map/dvips/*.map doins fonts/map/dvips/*.map
local m local m
@ -54,5 +54,5 @@ src_install() {
dodoc -r doc/fonts/fraktur/* dodoc -r doc/fonts/fraktur/*
# symlink for texdoc # symlink for texdoc
dosym ../../../doc/${PF} ${TEXMF}/doc/fonts/fraktur dosym8 -r /usr/share/doc/${PF} "${TEXMF}"/doc/fonts/fraktur
} }