summaryrefslogtreecommitdiff
blob: 2f030b713978cc159c44904dfa26357328a47a8a (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
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

if [[ ${PV} == 99999999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://anongit.gentoo.org/git/data/dtd.git"
else
	# git archive --prefix=${P}/ HEAD | xz >${P}.tar.xz
	SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
	KEYWORDS="~amd64 ~x86"
fi

DESCRIPTION="Document Type Definition for Gentoo-related XML files"
HOMEPAGE="https://gitweb.gentoo.org/data/dtd.git/"

# Presumably these simple DTDs are not copyrightable,
# but repositories.dtd says GPL v2 or later.
LICENSE="public-domain GPL-2+"
SLOT="0"

RDEPEND="dev-libs/libxml2"
IDEPEND="${RDEPEND}"

src_install() {
	insinto /usr/share/xml/gentoo/dtd
	doins *.dtd
}

pkg_postinst() {
	ebegin "Installing catalog entry"
	xmlcatalog --noout \
		--add rewriteSystem "http://www.gentoo.org/dtd/" \
			"file://${EPREFIX}/usr/share/xml/gentoo/dtd/" \
		--add rewriteSystem "https://www.gentoo.org/dtd/" \
			"file://${EPREFIX}/usr/share/xml/gentoo/dtd/" \
		"${EROOT}"/etc/xml/catalog
	eend $?
}

pkg_postrm() {
	ebegin "Cleaning catalog"
	xmlcatalog --noout \
		--del "http://www.gentoo.org/dtd/" \
		--del "https://www.gentoo.org/dtd/" \
		"${EROOT}"/etc/xml/catalog
	eend $?
}