blob: d46fb9fb9a436a6c36deaf7d53779a522e3361f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PV=${PV/_p/+}
MY_P=${PN}-${MY_PV}
inherit edo
DESCRIPTION="System for writing extensible parsers for programming languages"
HOMEPAGE="https://github.com/camlp4/camlp4"
SRC_URI="https://github.com/camlp4/camlp4/archive/${MY_PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${P/_p/-}
LICENSE="LGPL-2-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="+ocamlopt"
RDEPEND="=dev-lang/ocaml-4.14*:=[ocamlopt?]"
DEPEND="
${RDEPEND}
dev-ml/ocamlbuild[ocamlopt?]
dev-ml/findlib:=
"
QA_FLAGS_IGNORED='.*'
PATCHES=( "${FILESDIR}/reload.patch" )
src_configure() {
edo ./configure \
--bindir="${EPREFIX}/usr/bin" \
--libdir="$(ocamlc -where)" \
--pkgdir="$(ocamlc -where)"
}
src_compile() {
# Increase stack limit to 11GiB to avoid stack overflow error.
ulimit -s 11530000
emake byte
use ocamlopt && emake native
}
src_install() {
# OCaml generates textrels on 32-bit arches
if use arm || use ppc || use x86 ; then
export QA_TEXTRELS='.*'
fi
emake DESTDIR="${D}" install install-META
dodoc CHANGES.md README.md
}
|