blob: 37e3e74836cdd0878f21ed264cdaeca40d0880e5 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/tetex/tetex-3.0_p1-r3.ebuild,v 1.6 2006/06/28 02:45:16 vapier Exp $
inherit tetex-3 flag-o-matic versionator virtualx
SMALL_PV=$(get_version_component_range 1-2 ${PV})
TETEX_TEXMF_PV=${SMALL_PV}
S=${WORKDIR}/tetex-src-${SMALL_PV}
TETEX_SRC="tetex-src-${PV}.tar.gz"
TETEX_TEXMF="tetex-texmf-${TETEX_TEXMF_PV:-${TETEX_PV}}.tar.gz"
#TETEX_TEXMF_SRC="tetex-texmfsrc-${TETEX_TEXMF_PV:-${TETEX_PV}}.tar.gz"
TETEX_TEXMF_SRC=""
DESCRIPTION="a complete TeX distribution"
HOMEPAGE="http://tug.org/teTeX/"
SRC_PATH_TETEX=ftp://cam.ctan.org/tex-archive/systems/unix/teTeX/current/distrib
SRC_URI="http://dev.gentoo.org/~nattfodd/tetex/${TETEX_SRC}
${SRC_PATH_TETEX}/${TETEX_TEXMF}
http://dev.gentoo.org/~nattfodd/tetex/${P}-gentoo.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
# these are defined in tetex.eclass and tetex-3.eclass
IUSE=""
DEPEND=""
src_unpack() {
tetex-3_src_unpack
cd ${S}
epatch ${FILESDIR}/${PN}-${SMALL_PV}-kpathsea-pic.patch
# bug 85404
epatch ${FILESDIR}/${PN}-${SMALL_PV}-epstopdf-wrong-rotation.patch
epatch ${FILESDIR}/${P}-amd64-xdvik-wp.patch
epatch ${FILESDIR}/${P}-mptest.patch
#bug 98029
epatch ${FILESDIR}/${P}-fmtutil-etex.patch
#bug 115775
epatch ${FILESDIR}/${P}-xpdf-vulnerabilities.patch
# bug 94860
epatch ${FILESDIR}/${P}-pdftosrc-install.patch
# bug 126918
epatch ${FILESDIR}/${P}-create-empty-files.patch
# bug 94901
epatch ${FILESDIR}/${P}-dvipdfm-timezone.patch
# Construct a Gentoo site texmf directory
# that overlays the upstream supplied
epatch ${FILESDIR}/${P}-texmf-site.patch
}
src_compile() {
#bug 119856
export LC_ALL=C
# dvipng has its own ebuild (fix for bug #129044).
TETEX_ECONF="${TETEX_ECONF} --without-dvipng"
tetex-3_src_compile
}
src_test() {
fmtutil --fmtdir "${S}/texk/web2c" --all
# The check target tries to access X display, bug #69439.
Xmake check || die "Xmake check failed."
}
src_install() {
insinto /usr/share/texmf/dvips/pstricks
doins ${FILESDIR}/pst-circ.pro
# install pdftosrc man page, bug 94860
doman ${S}/texk/web2c/pdftexdir/pdftosrc.1
tetex-3_src_install
# Create Gentoo site texmf directory
keepdir /usr/share/texmf-site
}
pkg_postinst() {
tetex-3_pkg_postinst
einfo
einfo "This release removes dvipng since it is provided in app-text/dvipng"
einfo
}
|