blob: f53b85f0c12dc37ec538bf1a1c75b664b5d31fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/frakturx/frakturx-20070103.ebuild,v 1.1 2009/01/12 16:12:08 ulm Exp $
inherit latex-package
DESCRIPTION="Collection of blackletter fonts for LaTeX"
HOMEPAGE="http://www.gaehrken.de/fraktur/"
SRC_URI="mirror://gentoo/${P}-base.zip
mirror://gentoo/${P}-tfrak.zip
mirror://gentoo/${P}-obibel.zip
mirror://gentoo/${P}-odedruck.zip
mirror://gentoo/${P}-odeschmk.zip
mirror://gentoo/${P}-oweissfr.zip
mirror://gentoo/${P}-oweissgo.zip
mirror://gentoo/${P}-talteswab.zip
mirror://gentoo/${P}-tbrtkpf.zip
mirror://gentoo/${P}-tkngsbg.zip
mirror://gentoo/${P}-twieynk.zip
mirror://gentoo/${P}-twieyvig.zip
mirror://gentoo/${P}-tzentenar.zip"
LICENSE="LPPL-1.2 free-noncomm"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S="${WORKDIR}"
TEXMF="/usr/share/texmf-site"
src_unpack() {
unpack ${A}
# remove spurious files, so that doins -r is possible later
find . -type f -name '.*' | xargs rm -f
}
src_install() {
insinto ${TEXMF}/tex/latex
doins -r tex/latex/fraktur || die
insinto ${TEXMF}/fonts
doins -r fonts/{tfm,vf,type1,enc} || die
insinto ${TEXMF}/fonts/map/dvips/fraktur
doins fonts/map/dvips/*.map || die
local m
for m in fobi fodd fods fowf fowg ftas ftbk ftkb ftwv ftwy ftzf; do
echo "Map ${m}.map" >>"${T}"/50frakturx.cfg
done
insinto /etc/texmf/updmap.d
doins "${T}"/50frakturx.cfg || die
insinto /usr/share/doc/${PF}
doins -r doc/fonts/fraktur/* || die
prepalldocs
# symlink for texdoc
dosym /usr/share/doc/${PF} ${TEXMF}/doc/fonts/fraktur
}
|