blob: 391fbe895377cb9a18c570109fc3f423e87b51f0 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit versionator
MY_P="${PN/-*/}$(get_major_version)"
DESCRIPTION="MathML DTD and entity files"
HOMEPAGE="http://www.w3.org/1998/Math/MathML"
SRC_URI="http://www.w3.org/Math/DTD/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-libs/libxml2"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
INSTALL_DIRECTORY="/usr/share/sgml/mathml/${P}"
src_install() {
insinto ${INSTALL_DIRECTORY}
doins -r * || die
}
pkg_postinst() {
if [[ ! -r ${ROOT}etc/xml/mathml ]] ; then
ebegin "Creating MathML catalog"
xmlcatalog --noout --create "${ROOT}"etc/xml/mathml
eend $? "Failed to create MathML catalog"
[[ $? -ne 0 ]] && return
fi
einfo "Updating Root XML Catalog"
xmlcatalog --noout \
--add "delegatePublic" "-//W3C//DTD MathML" "file:///etc/xml/mathml" \
--add "delegatePublic" "-//W3C//ENTITIES" "file:///etc/xml/mathml" \
--add "delegateURI" "http://www.w3.org/TR/2001/REC-MathML2-20010221/dtd" "file:///etc/xml/mathml" \
"${ROOT}"etc/xml/catalog
einfo "Updating MathML Catalog"
(
IFS=";"
sed -n "/PUBLIC \"/ {N; s/\n/ /; s/^[^\"]*\"//; s/SYSTEM//; s/\"[^\"]*$//; s%\"[[:blank:]]\+\"%;${INSTALL_DIRECTORY}/%; p};" \
"${ROOT}${INSTALL_DIRECTORY#/}"/mathml2.dtd | while read orig replace
do
xmlcatalog --noout --add public "${orig}" "file://${replace}" "${ROOT}"etc/xml/mathml
done
)
xmlcatalog --noout \
--add "rewriteSystem" \
"http://www.w3.org/TR/2001/REC-MathML2-20010221/dtd" "file://${INSTALL_DIRECTORY}" \
"${ROOT}"etc/xml/mathml
xmlcatalog --noout \
--add "rewriteURI" \
"http://www.w3.org/TR/2001/REC-MathML2-20010221/dtd" "file://${INSTALL_DIRECTORY}" \
"${ROOT}"etc/xml/mathml
}
pkg_postrm() {
einfo "Cleaning Root XML Catalog"
xmlcatalog --noout \
--del "-//W3C//DTD MathML" \
--del "-//W3C//ENTITIES" \
--del "http://www.w3.org/TR/2001/REC-MathML2-20010221/dtd" \
"${ROOT}"etc/xml/catalog
einfo "Cleaning MathML Catalog"
sed -i "/${P}/d" "${ROOT}"etc/xml/mathml
}
|