Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp5/
Date: Sat, 30 Apr 2016 18:07:52
Message-Id: 1462039656.b7e586a2ff0a4b1a699069dd38c1592f625ceacf.aballier@gentoo
1 commit: b7e586a2ff0a4b1a699069dd38c1592f625ceacf
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 18:07:26 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 18:07:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e586a2
7
8 dev-ml/camlp5: bump to 6.16
9
10 Package-Manager: portage-2.2.28
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/camlp5/Manifest | 1 +
14 dev-ml/camlp5/camlp5-6.16.ebuild | 67 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 68 insertions(+)
16
17 diff --git a/dev-ml/camlp5/Manifest b/dev-ml/camlp5/Manifest
18 index d38913a..f4fb001 100644
19 --- a/dev-ml/camlp5/Manifest
20 +++ b/dev-ml/camlp5/Manifest
21 @@ -1,2 +1,3 @@
22 DIST camlp5-6.14.tgz 748674 SHA256 09f9ed12893d2ec39c88106af2306865c966096bedce0250f2fe52b67d2480e2 SHA512 7dd57b8725953099726fc2e5f6dda01ed74485a4bbf41cb30ccd2163ee38bc6dff36fd83069c58d7990522527d266c9e180a8e333b36a42bc216315dc88a25e9 WHIRLPOOL 305bb842e449775352cbbf3c89a301a188419c10462f0959b00e181596218b5251dac50856f152ad471fd680e557e6595978c395e9c2864c38ddacd7287c4e3b
23 DIST camlp5-6.15.tgz 756199 SHA256 2e0e1e31e0537f2179766820dd9bd0a4d424bc5ab9c610e6dbf9145f27747f2b SHA512 658ff32d1d124e91e85d8eba47039bb75573b3807d67fae723335bb06d3237c4151f6d671fb3b068ec4ebffdde03f7956174c9f0ca29eafa5990974987bc2aca WHIRLPOOL d449b7a485967b79efbc030527513d99dd19d4856ebc132133d09d7028c210b4314ac401de65ac7671d3066f6a2184df157a0091fc173f4d6e7ae8bc7ad2c432
24 +DIST camlp5-6.16.tgz 759877 SHA256 fd446cff6421f5144a521c7cecfdc7217b1424908186cddd3d5be543b35058b1 SHA512 b1bfa271bb7df169c5b0d0f0a20038ab95c2101475e1729f5a779fea0872165f73b04e0cd792e9fbc31e81bb37cbef06a9761f7748ea1ab87753dbd20202d5ed WHIRLPOOL 433a85b393ee6498c6ab86b7feb2cfec8188526ca628c796efafd1d1c9f6204e737074a63e9e448ef757ba9b7b1dce06433b58278352155f5405ea4a76bb6303
25
26 diff --git a/dev-ml/camlp5/camlp5-6.16.ebuild b/dev-ml/camlp5/camlp5-6.16.ebuild
27 new file mode 100644
28 index 0000000..4fcf3b9
29 --- /dev/null
30 +++ b/dev-ml/camlp5/camlp5-6.16.ebuild
31 @@ -0,0 +1,67 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI="5"
37 +
38 +inherit multilib findlib eutils
39 +
40 +MY_P=${P%_p*}
41 +DESCRIPTION="A preprocessor-pretty-printer of ocaml"
42 +HOMEPAGE="http://camlp5.gforge.inria.fr/"
43 +SRC_URI="http://camlp5.gforge.inria.fr/distrib/src/${MY_P}.tgz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
48 +IUSE="doc +ocamlopt"
49 +
50 +DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]"
51 +RDEPEND="${DEPEND}"
52 +
53 +PATCHLEVEL=${PV#*_p}
54 +PATCHLIST=""
55 +
56 +if [ "${PATCHLEVEL}" != "${PV}" ] ; then
57 + for (( i=1; i<=PATCHLEVEL; i++ )) ; do
58 + SRC_URI="${SRC_URI}
59 + http://pauillac.inria.fr/~ddr/camlp5/distrib/src/patch-${PV%_p*}-${i} -> ${MY_P}-patch-${i}.patch"
60 + PATCHLIST="${PATCHLIST} ${MY_P}-patch-${i}.patch"
61 + done
62 +fi
63 +
64 +S=${WORKDIR}/${MY_P}
65 +
66 +src_prepare() {
67 + for i in ${PATCHLIST} ; do
68 + epatch "${DISTDIR}/${i}"
69 + done
70 +}
71 +
72 +src_configure() {
73 + ./configure \
74 + --strict \
75 + -prefix /usr \
76 + -bindir /usr/bin \
77 + -libdir /usr/$(get_libdir)/ocaml \
78 + -mandir /usr/share/man || die "configure failed"
79 +}
80 +
81 +src_compile(){
82 + emake out
83 + if use ocamlopt; then
84 + emake opt
85 + emake opt.opt
86 + fi
87 +}
88 +
89 +src_install() {
90 + emake DESTDIR="${D}" install
91 + # findlib support
92 + insinto "$(ocamlfind printconf destdir)/${PN}"
93 + doins etc/META
94 +
95 + use doc && dohtml -r doc/*
96 +
97 + dodoc CHANGES DEVEL ICHANGES README UPGRADING MODE
98 +}