blob: 534738f6c145bd08a42964d1b1c5c17f34bc8421 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/tetex-2.eclass,v 1.6 2006/02/01 19:49:49 ehmsen Exp $
#
# Author: Jaromir Malenko <malenko@email.cz>
# Author: Mamoru KOMACHI <usata@gentoo.org>
# Author: Martin Ehmsen <ehmsen@gentoo.org>
# Author: Alexandre Buisse <nattfodd@gentoo.org>
#
# A generic eclass to install tetex 2.0.x distributions.
inherit tetex
EXPORT_FUNCTIONS src_unpack src_install
tetex-2_src_unpack() {
tetex_src_unpack
cd ${S}/texmf
unpack ${TETEX_TEXMF_SRC}
# create update script
cat >${T}/texmf-update<<'EOF'
#!/bin/bash
#
# Utility to update Gentoo teTeX distribution configuration files
#
PATH=/bin:/usr/bin
for conf in texmf.cnf fmtutil.cnf updmap.cfg
do
if [ -d "/etc/texmf/${conf/.*/.d}" ]
then
echo "Generating /etc/texmf/web2c/${conf} from /etc/texmf/${conf/.*/.d} ..."
cat /etc/texmf/${conf/.*/.d}/* > "/etc/texmf/web2c/${conf}"
fi
done
# configure
echo "Configuring teTeX ..."
mktexlsr &>/dev/null
texconfig init &>/dev/null
texconfig confall &>/dev/null
texconfig font rw &>/dev/null
texconfig font vardir /var/cache/fonts &>/dev/null
texconfig font options varfonts &>/dev/null
updmap &>/dev/null
# generate
echo "Generating format files ..."
fmtutil --missing &>/dev/null
echo
echo "Use 'texconfig font ro' to disable font generation for users"
echo
EOF
# fix up misplaced listings.sty in the 2.0.2 archive.
# this should be fixed in the next release <obz@gentoo.org>
mv source/latex/listings/listings.sty tex/latex/listings/ || die
# need to fix up the hyperref driver, see bug #31967
sed -i -e "/providecommand/s/hdvips/hypertex/" \
${S}/texmf/tex/latex/config/hyperref.cfg || die
}
tetex-2_src_install() {
tetex_src_install
# bug #47004
insinto /usr/share/texmf/tex/latex/a0poster
doins ${S}/texmf/source/latex/a0poster/a0poster.cls || die
doins ${S}/texmf/source/latex/a0poster/a0size.sty || die
rm -f ${D}/usr/bin/texi2html
rm -f ${D}/usr/share/man/man1/texi2html.1
# bug #112164
has_version 'sys-apps/texinfo' && rm -f ${D}/usr/bin/texi2pdf
dodir /etc/env.d/
echo 'CONFIG_PROTECT="/usr/share/texmf/tex/generic/config/ /usr/share/texmf/tex/platex/config/ /usr/share/texmf/dvips/config/ /usr/share/texmf/dvipdfm/config/ /usr/share/texmf/xdvi/"' > ${D}/etc/env.d/98tetex
#fix for texlinks
local src dst
sed -e '/^#/d' -e '/^$/d' -e 's/^ *//' \
${D}/usr/share/texmf/web2c/fmtutil.cnf > ${T}/fmtutil.cnf || die
while read l; do
dst=/usr/bin/`echo $l | awk '{ print $1 }'`
src=/usr/bin/`echo $l | awk '{ print $2 }'`
if [ ! -f ${D}$dst -a "$dst" != "$src" ] ; then
einfo "Making symlinks from $src to $dst"
dosym $src $dst
fi
done < ${T}/fmtutil.cnf
}
|