summaryrefslogtreecommitdiff
path: root/app-text/html401/html401-19991224-r4.ebuild
blob: 8f75a577ac4d1751c220aff6ca080049c7b9a370 (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit sgml-catalog-r1

DESCRIPTION="DTDs for the HyperText Markup Language 4.01"
HOMEPAGE="http://www.w3.org/TR/html401/"
SRC_URI="http://www.w3.org/TR/html401/html40.tgz"

LICENSE="W3C"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""

S=${WORKDIR}
PATCHES=( "${FILESDIR}"/${PN}-decl.diff )

src_install() {
	insinto /usr/share/sgml/${PN}
	doins HTML4.cat HTML4.decl *.dtd *.ent

	insinto /etc/sgml
	newins - html401.cat <<-EOF
		CATALOG "${EPREFIX}/usr/share/sgml/html401/HTML4.cat"
	EOF

	docinto html
	local dirs=( */ )
	dodoc -r *.html "${dirs[@]%/}"
}

pkg_preinst() {
	# work-around old revision removing it
	cp "${ED}"/etc/sgml/html401.cat "${T}" || die
}

pkg_postinst() {
	if [[ ! -f ${EROOT}/etc/sgml/html401.cat ]]; then
		cp "${T}"/html401.cat "${EROOT}"/etc/sgml/ || die
	fi
	sgml-catalog-r1_pkg_postinst
}