blob: b9dfa2ab2e8c4f6a7b9e6b6579712ca5220a8e7f (
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2005.ebuild,v 1.1 2006/05/28 21:55:51 ehmsen Exp $
inherit eutils flag-o-matic toolchain-funcs versionator virtualx
TEXMF_PATH=/var/lib/texmf
DESCRIPTION="a complete TeX distribution"
HOMEPAGE="http://tug.org/texlive/"
SLOT="0"
LICENSE="GPL-2"
SRC_URI="http://dev.gentoo.org/~ehmsen/texlive/${P}-src.tar.bz2
http://dev.gentoo.org/~ehmsen/texlive/${P}-texmf-dist.tar.bz2
http://dev.gentoo.org/~ehmsen/texlive/${P}-texmf.tar.bz2"
KEYWORDS="~amd64 ~x86"
IUSE="X doc tcltk Xaw3d lesstif motif neXt"
# This is less than an ideal name
PROVIDE="virtual/tetex"
# I hope to kick this very soon
BLOCKS="!dev-tex/memoir
!dev-tex/lineno
!dev-tex/SIunits
!dev-tex/floatflt
!dev-tex/g-brief
!dev-tex/pgf
!dev-tex/xcolor
!dev-tex/xkeyval
!dev-tex/latex-beamer
!dev-tex/vntex
!dev-tex/koma-script
!dev-tex/currvita
!dev-tex/eurosym
!dev-tex/extsizes"
MODULAR_X_DEPEND="X? ( || ( (
x11-libs/libXmu
x11-libs/libXp
x11-libs/libXpm
x11-libs/libICE
x11-libs/libSM
x11-libs/libXaw
x11-libs/libXfont
)
virtual/x11
)
)"
DEPEND="${MODULAR_X_DEPEND}
!app-text/ptex
!app-text/cstetex
!app-text/tetex
X? ( motif? ( lesstif? ( x11-libs/lesstif )
!lesstif? ( x11-libs/openmotif ) )
!motif? ( neXt? ( x11-libs/neXtaw )
!neXt? ( Xaw3d? ( x11-libs/Xaw3d ) ) )
!app-text/xdvik
)
sys-apps/ed
sys-libs/zlib
>=media-libs/libpng-1.2.1
sys-libs/ncurses
>=net-libs/libwww-5.3.2-r1"
RDEPEND="${DEPEND}
${BLOCKS}
>=dev-lang/perl-5.2
tcltk? ( dev-perl/perl-tk )
dev-util/dialog"
src_unpack() {
unpack ${P}-src.tar.bz2 || die "unpack src"
cd "${S}"
unpack ${P}-texmf.tar.bz2 || die "unpack texmf"
unpack ${P}-texmf-dist.tar.bz2 || die "unpack texmf-dist"
epatch "${FILESDIR}/${PV}/${P}-use-system-libtool.patch" || die
epatch "${FILESDIR}/${PV}/${P}-amd64-xdvik-wp.patch" || die
epatch "${FILESDIR}/${PV}/${P}-mptest.patch" || die
epatch "${FILESDIR}/${PV}/${P}-fmtutil-in.patch" || die
epatch "${FILESDIR}/${PV}/${P}-xpdf-vulnerabilities.patch" || die
epatch "${FILESDIR}/${PV}/${P}-pdftosrc-install.patch" || die
epatch "${FILESDIR}/${PV}/${P}-create-empty-files.patch" || die
epatch "${FILESDIR}/${PV}/${P}-gentoo-texmf-site.patch" || die
sed -i -e "/mktexlsr/,+3d" -e "s/\(updmap-sys\)/\1 --nohash/" \
Makefile.in || die "sed"
}
src_compile() {
local my_conf
export LC_ALL=C
filter-flags "-fstack-protector" "-Os"
use amd64 && replace-flags "-O3" "-O2"
if use X ; then
addwrite /var/cache/fonts
my_conf="${my_conf} --with-xdvik --with-oxdvik"
if use motif ; then
if use lesstif ; then
append-ldflags -L/usr/X11R6/lib/lesstif -R/usr/X11R6/lib/lesstif
export CPPFLAGS="${CPPFLAGS} -I/usr/X11R6/include/lesstif"
fi
my_conf="${my_conf} --with-xdvi-x-toolkit=motif"
elif use neXt ; then
my_conf="${my_conf} --with-xdvi-x-toolkit=neXtaw"
elif use Xaw3d ; then
my_conf="${my_conf} --with-xdvi-x-toolkit=xaw3d"
else
my_conf="${my_conf} --with-xdvi-x-toolkit=xaw"
fi
else
my_conf="${my_conf} --without-xdvik --without-oxdvik"
fi
econf --bindir=/usr/bin \
--datadir=${S} \
--with-system-wwwlib \
--with-libwww-include=/usr/include/w3c-libwww \
--with-system-ncurses \
--with-system-pnglib \
--without-texinfo \
--without-dialog \
--without-texi2html \
--with-system-zlib \
--disable-multiplatform \
--with-epsfwin \
--with-mftalkwin \
--with-regiswin \
--with-tektronixwin \
--with-unitermwin \
--with-ps=gs \
--enable-ipc \
--with-etex \
--without-dvipng \
--without-dvipdfm \
--without-dvipdfmx \
$(use_with X x) \
${my_conf} || die "econf"
if use X && use ppc-macos ; then
for f in $(find ${S} -name config.status) ; do
sed -i -e "s:-ldl::g" $f
done
fi
emake -j1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" texmf=${TEXMF_PATH:-/usr/share/texmf} || die "make"
}
src_test() {
fmtutil --fmtdir "${S}/texk/web2c" --all
Xmake check || die "Xmake check failed."
}
src_install() {
dodir /usr/share/
cp -R texmf ${D}/usr/share
cp -R texmf-dist ${D}/usr/share
dodir ${TEXMF_PATH:-/usr/share/texmf}/web2c
einstall bindir=${D}/usr/bin texmf=${D}${TEXMF_PATH:-/usr/share/texmf} || die "install"
dosbin ${FILESDIR}/${PV}/texmf-update
docinto texk
cd ${S}/TeX/texk
dodoc ChangeLog README
docinto kpathesa
cd ${S}/TeX/texk/kpathsea
dodoc BUGS ChangeLog NEWS PROJECTS README
docinto dviljk
cd ${S}/TeX/texk/dviljk
dodoc ChangeLog README NEWS
docinto dvipsk
cd ${S}/TeX/texk/dvipsk
dodoc ChangeLog README
docinto makeindexk
cd ${S}/TeX/texk/makeindexk
dodoc ChangeLog NEWS NOTES README
docinto ps2pkm
cd ${S}/TeX/texk/ps2pkm
dodoc ChangeLog README README.14m
docinto web2c
cd ${S}/TeX/texk/web2c
dodoc ChangeLog NEWS PROJECTS README
if use doc ; then
dodir /usr/share/doc/${PF}
mv ${D}/usr/share/texmf/doc/* \
${D}/usr/share/doc/${PF} \
|| die "mv doc failed."
cd ${D}/usr/share/texmf
rmdir doc
ln -s ../doc/${PF} doc || die "ln -s doc failed."
cd -
else
rm -rf ${D}/usr/share/texmf/doc
fi
dodir /var/cache/fonts
# root group name doesn't exist on Mac OS X
chown -R 0:0 ${D}/usr/share/texmf
dodir /etc/env.d
echo 'CONFIG_PROTECT_MASK="/etc/texmf/web2c"' > ${D}/etc/env.d/98tetex
# populate /etc/texmf
keepdir /etc/texmf/web2c
# _not_ ${TEXMF_PATH}
cd ${D}/usr/share/texmf
for d in $(find . -name config -type d | sed -e "s:\./::g") ; do
dodir /etc/texmf/${d}
for f in $(find ${D}usr/share/texmf/$d -maxdepth 1 -mindepth 1); do
mv $f ${D}/etc/texmf/$d || die "mv $f failed"
dosym /etc/texmf/$d/$(basename $f) /usr/share/texmf/$d/$(basename $f)
done
done
cd -
cd ${D}/${TEXMF_PATH}
for f in $(find . -name '*.cnf' -o -name '*.cfg' -type f | sed -e "s:\./::g") ; do
if [ "${f/config/}" != "${f}" ] ; then
continue
fi
dodir /etc/texmf/$(dirname $f)
mv ${D}/${TEXMF_PATH}/$f ${D}/etc/texmf/$(dirname $f) || die "mv $f failed."
dosym /etc/texmf/$f ${TEXMF_PATH}/$f
done
# take care of updmap.cfg, fmtutil.cnf and texmf.cnf
dodir /etc/texmf/{updmap.d,fmtutil.d,texmf.d}
dosym /etc/texmf/web2c/updmap.cfg ${TEXMF_PATH}/web2c/updmap.cfg
mv ${D}/usr/share/texmf/web2c/updmap.cfg ${D}/etc/texmf/updmap.d/00updmap.cfg
mv ${D}/etc/texmf/web2c/fmtutil.cnf ${D}/etc/texmf/fmtutil.d/00fmtutil.cnf
mv ${D}/etc/texmf/web2c/texmf.cnf ${D}/etc/texmf/texmf.d/00texmf.cnf
# xdvi
if use X ; then
dodir /etc/X11/app-defaults /etc/texmf/xdvi
mv ${D}${TEXMF_PATH}/xdvi/XDvi ${D}/etc/X11/app-defaults || die "mv XDvi failed"
dosym /etc/X11/app-defaults/XDvi ${TEXMF_PATH}/xdvi/XDvi
fi
doman ${S}/texk/web2c/pdftexdir/pdftosrc.1
keepdir /usr/share/texmf-site
# the virtex symlink is not installed
# The links has to be relative, since the targets
# is not present at this stage and MacOS doesn't
# like non-existing targets
cd ${D}/usr/bin/
ln -snf tex virtex
ln -snf pdftex pdfvirtex
}
pkg_preinst() {
ewarn "Removing ${ROOT}usr/share/texmf/web2c"
rm -rf "${ROOT}usr/share/texmf/web2c"
}
pkg_postinst() {
if [ "$ROOT" = "/" ] ; then
/usr/sbin/texmf-update
fi
einfo
einfo "If you have configuration files in /etc/texmf to merge,"
einfo "please update them and run /usr/sbin/texmf-update."
einfo
}
|