blob: 1757681ac744c4bc785140d8cf4d85d12c595482 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Collect profiling information"
HOMEPAGE="https://github.com/mirage/mirage-profile https://mirage.io"
SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
# https://github.com/mirage/mirage-profile/issues/11
RESTRICT="test"
RDEPEND="
>=dev-lang/ocaml-4:=
dev-ml/io-page:=
dev-ml/lwt:=
>=dev-ml/ocaml-cstruct-1.9.0:=[ppx(-)]
dev-ml/ppx_tools:=
dev-ml/ocplib-endian:=
"
DEPEND="
${RDEPEND}
"
DOCS=( README.md )
|