forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmltex-1.9-r2.ebuild
48 lines (34 loc) · 1.19 KB
/
xmltex-1.9-r2.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit latex-package texlive-common
IUSE=""
DESCRIPTION="A non validating namespace aware XML parser implemented in TeX"
HOMEPAGE="http://www.dcarlisle.demon.co.uk/xmltex/manual.html"
# Taken from: ftp://www.ctan.org/tex-archive/macros/xmltex.tar.gz
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="LPPL-1.2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
S=${WORKDIR}/${PN}/base
TEXMF=/usr/share/texmf-site
DEPEND="virtual/latex-base"
RDEPEND="${DEPEND}
!=dev-texlive/texlive-htmlxml-2007*"
src_compile() {
TEXMFHOME="${S}" fmtutil --cnffile "${FILESDIR}/format.${PN}.cnf" --fmtdir "${S}/texmf-var/web2c" --all\
|| die "failed to build format ${PN}"
}
src_install() {
insinto /var/lib/texmf
doins -r texmf-var/*
insinto ${TEXMF}/tex/xmltex/base
doins *.{xmt,cfg,xml,tex}
insinto ${TEXMF}/tex/xmltex/config
doins *.ini
etexlinks "${FILESDIR}/format.${PN}.cnf"
insinto /etc/texmf/fmtutil.d
doins "${FILESDIR}/format.${PN}.cnf"
dohtml *.html
dodoc readme.txt
}