From f03d3633119870c103f63b484335861f64621ad0 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Sat, 26 Aug 2017 13:19:45 +0200 Subject: dev-ml/opam-file-format: initial import Package-Manager: Portage-2.3.8, Repoman-2.3.3 --- .../opam-file-format-2.0.0_beta3.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 dev-ml/opam-file-format/opam-file-format-2.0.0_beta3.ebuild (limited to 'dev-ml/opam-file-format/opam-file-format-2.0.0_beta3.ebuild') diff --git a/dev-ml/opam-file-format/opam-file-format-2.0.0_beta3.ebuild b/dev-ml/opam-file-format/opam-file-format-2.0.0_beta3.ebuild new file mode 100644 index 000000000000..e932f300db77 --- /dev/null +++ b/dev-ml/opam-file-format/opam-file-format-2.0.0_beta3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit findlib + +MY_PV="${PV/_beta/-beta}" +S="${WORKDIR}/${PN}-${MY_PV}" + +DESCRIPTION="Parser and printer for the opam file syntax" +HOMEPAGE="https://github.com/ocaml/opam-file-format" +SRC_URI="https://github.com/ocaml/opam-file-format/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ocamlopt" + +DEPEND="dev-lang/ocaml:=[ocamlopt?]" +RDEPEND="${DEPEND}" + +src_compile() { + emake byte $(usex ocamlopt native "") +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="$(ocamlc -where)" install +} -- cgit v1.2.3-65-gdbad