summaryrefslogtreecommitdiff
blob: 16efae7b1821c50ccf4c2cf4fba278e1aae1449c (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MY_P="mozart-${PV}.20080704-std"

DESCRIPTION="The Mozart Standard Library"
HOMEPAGE="https://mozart.github.io/ https://github.com/mozart/mozart"
SRC_URI="mirror://sourceforge/project/mozart-oz/v1/1.4.0-2008-07-02-tar/${MY_P}.tar.gz"
LICENSE="Mozart"

SLOT="0"
KEYWORDS="-amd64 ppc -ppc64 x86"

DEPEND="dev-lang/mozart"
RDEPEND="${DEPEND}"

S="${WORKDIR}"/${MY_P}

PATCHES=( "${FILESDIR}"/${P}-ozload.patch
	"${FILESDIR}"/${P}-docroot.patch )

src_install() {
	emake \
		PREFIX="${D}"/usr/lib/mozart \
		DOCROOT="${D}"/usr/share/doc/${PF} \
		install

	dosym /usr/lib/mozart/bin/ozmake /usr/bin/ozmake

	doman ozmake/ozmake.1
	docinto mozart-ozmake
	dodoc ozmake/{DESIGN,NOTES,README}
}