diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-01-09 12:07:30 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-01-09 12:08:25 +0100 |
commit | b198f454d812345a524f13243e39e6f977d71790 (patch) | |
tree | c12d63f93160d4676aa23b67beb95b3aa17d96c5 /dev-ml/uchar | |
parent | dev-ml/jsonm: stop using opam-installer as it is an opam dep, bug #601906 (diff) | |
download | gentoo-b198f454d812345a524f13243e39e6f977d71790.tar.gz gentoo-b198f454d812345a524f13243e39e6f977d71790.tar.bz2 gentoo-b198f454d812345a524f13243e39e6f977d71790.zip |
dev-ml/uchar: stop using opam-installer as it is an indirect opam dep, bug #601906
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-ml/uchar')
-rw-r--r-- | dev-ml/uchar/uchar-0.0.1.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-ml/uchar/uchar-0.0.1.ebuild b/dev-ml/uchar/uchar-0.0.1.ebuild index 2cf183d878ed..37b0fbd221a4 100644 --- a/dev-ml/uchar/uchar-0.0.1.ebuild +++ b/dev-ml/uchar/uchar-0.0.1.ebuild @@ -1,9 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 +inherit findlib + DESCRIPTION="Uchar compatibility library" HOMEPAGE="https://github.com/ocaml/uchar" SRC_URI="https://github.com/ocaml/uchar/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -13,9 +15,8 @@ SLOT="0/${PV}" KEYWORDS="~amd64" IUSE="+ocamlopt" -RDEPEND="dev-lang/ocaml:=" -DEPEND="${RDEPEND} - dev-ml/opam" +RDEPEND=">=dev-lang/ocaml-4.03:=" +DEPEND="${RDEPEND}" src_compile() { ocaml pkg/build.ml \ @@ -28,10 +29,9 @@ src_test() { } src_install() { - opam-installer -i \ - --prefix="${ED}/usr" \ - --libdir="${D}/$(ocamlc -where)" \ - --docdir="${ED}/usr/share/doc/${PF}" \ - ${PN}.install || die + # Can't use opam-installer here as it is an opam dep... + findlib_src_preinst + mv _build/pkg/META{.empty,} || die + ocamlfind install ${PN} _build/pkg/META || die dodoc README.md CHANGES.md } |