diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-05-03 12:37:54 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-05-03 12:40:50 +0200 |
commit | 5db2f4b1f0e67846d69bb725e39557c98f11ee51 (patch) | |
tree | dd6f68e72f45734844101702763d34bdb436753f /dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild | |
parent | net-misc/bird: Version bump to 1.6.0; as requested by Moyaze Shivji in the LI... (diff) | |
download | gentoo-5db2f4b1f0e67846d69bb725e39557c98f11ee51.tar.gz gentoo-5db2f4b1f0e67846d69bb725e39557c98f11ee51.tar.bz2 gentoo-5db2f4b1f0e67846d69bb725e39557c98f11ee51.zip |
dev-ml/ocamlbuild: bump to 0.9.2
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild')
-rw-r--r-- | dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild new file mode 100644 index 000000000000..7fe9092e2788 --- /dev/null +++ b/dev-ml/ocamlbuild/ocamlbuild-0.9.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="OCamlbuild" +HOMEPAGE="https://github.com/ocaml/ocamlbuild" +SRC_URI="https://github.com/ocaml/ocamlbuild/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="+ocamlopt" + +DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?]" +RDEPEND="${DEPEND} + !<dev-ml/findlib-1.6.1-r1 +" + +src_configure() { + emake -f configure.make Makefile.config \ + PREFIX="${EPREFIX}/usr" \ + BINDIR="${EPREFIX}/usr/bin" \ + LIBDIR="$(ocamlc -where)" \ + OCAML_NATIVE=$(usex ocamlopt true false) \ + OCAML_NATIVE_TOOLS=$(usex ocamlopt true false) \ + NATDYNLINK=$(usex ocamlopt true false) +} + +src_install() { + emake CHECK_IF_PREINSTALLED=false DESTDIR="${D}" install + dodoc Changes +} |