diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-10-14 13:11:28 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-10-14 13:13:41 +0200 |
commit | 844892b5e74474368a033d33c7bd6a24bd60ee65 (patch) | |
tree | e7fa621db716e1f4b31bde3cd13bc20dc588bbc8 /dev-ml | |
parent | profiles/package.mask: mask ocaml 4.06 camlp4 (diff) | |
download | gentoo-844892b5e74474368a033d33c7bd6a24bd60ee65.tar.gz gentoo-844892b5e74474368a033d33c7bd6a24bd60ee65.tar.bz2 gentoo-844892b5e74474368a033d33c7bd6a24bd60ee65.zip |
dev-ml/camlp4: bump to 4.06
Package-Manager: Portage-2.3.11, Repoman-2.3.3
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camlp4/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/camlp4/camlp4-4.06_p1.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/dev-ml/camlp4/Manifest b/dev-ml/camlp4/Manifest index 48b32e950d25..da827fcfe7eb 100644 --- a/dev-ml/camlp4/Manifest +++ b/dev-ml/camlp4/Manifest @@ -1,2 +1,3 @@ DIST camlp4-4.04_p1.tar.gz 648320 SHA256 6044f24a44053684d1260f19387e59359f59b0605cdbf7295e1de42783e48ff1 SHA512 7db8eebcf3d230f60650ba62d9cb630c069394237e97b678a40b61d3dcaded752a2b7e089a50ff528f1ea0740d0291b722df123a072f2cee489cadc5201c6776 WHIRLPOOL 6cfed59e81dbd92debe23670657eb7e96125105fccb7b20a8e16553090cc9a0e8c732b8e0cac1a9b39e172aa8dfaae145ba8827948f371aeaa69345f3ba39096 DIST camlp4-4.05_p1.tar.gz 647566 SHA256 9819b5c7a5c1a4854be18020ef312bfec6541e26c798a5c863be875bfd7e8e2b SHA512 0ee9720286d0d832fb7d2d21a8877856e0e47c94c86b1b58d28f8e757a18472eecb56a16e3a04ce815f240dd5048f5d597515461d084fd1cf4da1b121f97a3fe WHIRLPOOL 0f89cd42bac84ba13d373160bf33452fc1cc31e0f6529aa1da2ff372e5cbb69868247461c17ac4fccd50528f97abe8009d899129c73afab8ce799791b259cc77 +DIST camlp4-4.06_p1.tar.gz 648566 SHA256 b1cc51449da0537f6886e380815b716e7adc9d9a12d6098a06db2b2525bab922 SHA512 32be92c4e64a985a3d2880e2201351961a4b7138a8be6e3f17e9b8e038a1660d13596f29fe0249c8c4183cd8cd06277cebc58f42609c8d2028032e893490fe43 WHIRLPOOL 0bb305789379ab043aa9be462fecdee3a043cabef2570c2dfcaa343e0dd7012626ca68c2a351be782bc75ce2a7737fc3f0f2ec233c5f0320b6f67de10184df71 diff --git a/dev-ml/camlp4/camlp4-4.06_p1.ebuild b/dev-ml/camlp4/camlp4-4.06_p1.ebuild new file mode 100644 index 000000000000..dad0b29eee6f --- /dev/null +++ b/dev-ml/camlp4/camlp4-4.06_p1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +MY_PV=${PV/_p/+} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="System for writing extensible parsers for programming languages" +HOMEPAGE="https://github.com/ocaml/camlp4" +SRC_URI="https://github.com/ocaml/camlp4/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="+ocamlopt" + +DEPEND=">=dev-lang/ocaml-4.06_beta:=[ocamlopt?]" +RDEPEND="${DEPEND} + !<dev-lang/ocaml-4.02 + !<dev-ml/findlib-1.5.5-r1" +DEPEND="${DEPEND} + dev-ml/ocamlbuild" + +S=${WORKDIR}/${P/_p/-} + +src_configure() { + ./configure \ + --bindir="${EPREFIX}/usr/bin" \ + --libdir="$(ocamlc -where)" \ + --pkgdir="$(ocamlc -where)" \ + || die +} + +src_compile() { + emake byte + use ocamlopt && emake native +} + +src_install() { + emake DESTDIR="${D}" install install-META + dodoc CHANGES.md README.md +} |