summaryrefslogtreecommitdiff
path: root/sci-mathematics/metamath-databases/metamath-databases-20220303.ebuild
blob: cb277918c6f87783c234658bb6874912b86f3b46 (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
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

[[ ${PV} == 20220303 ]] && COMMIT=99d707bc3c600a9d6052a46a7c85f05b74c589a2

DESCRIPTION="Sample databases for Metamath"
HOMEPAGE="http://us.metamath.org/mpeuni/mmset.html
	https://github.com/metamath/set.mm/"

if [[ ${PV} == *9999* ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/metamath/set.mm.git"
else
	SRC_URI="https://github.com/metamath/set.mm/archive/${COMMIT}.tar.gz
		-> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
	S="${WORKDIR}"/set.mm-${COMMIT}
fi

LICENSE="CC0-1.0"
SLOT="0"
IUSE="doc"

RDEPEND="sci-mathematics/metamath"

DOCS=(
	CONTRIBUTING.md README.md
	discouraged iset-discouraged
	mmnotes.txt
	other-databases.md verifiers.md
)

src_install() {
	insinto /usr/share/metamath
	doins *.mm *.mmts

	einstalldocs

	if use doc ; then
		docinto html
		dodoc -r people
		dodoc *.html *.svg
	fi
}