blob: 32304b03acd45d0f3ebfb4bdc30f9883c966ad75 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
H=99d707bc3c600a9d6052a46a7c85f05b74c589a2
DESCRIPTION="Sample databases for Metamath"
HOMEPAGE="http://us.metamath.org/mpeuni/mmset.html"
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/${H}.tar.gz
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}"/set.mm-${H}
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
}
|