blob: d14be4876eb11537a4105c5b012a0d04dfe35610 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# TODO: vim-plugin, although it's not clear how to make it work here
inherit elisp-common dune
DESCRIPTION="Context sensitive completion for OCaml in Vim and Emacs"
HOMEPAGE="https://github.com/ocaml/merlin"
SRC_URI="https://github.com/ocaml/merlin/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="emacs +ocamlopt"
RDEPEND="
dev-ml/csexp:=
dev-ml/yojson:=
>=dev-lang/ocaml-4.09:=
<dev-lang/ocaml-4.12:=
emacs? (
>=app-editors/emacs-23.1:*
app-emacs/auto-complete
app-emacs/company-mode
)
"
DEPEND="${RDEPEND}"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
default
# Handle installation via the eclass
rm emacs/dune || die
}
src_compile() {
dune_src_compile
if use emacs ; then
# Build the emacs integration
cd emacs || die
# iedit isn't packaged yet
rm merlin-iedit.el || die
elisp-compile *.el
fi
}
src_install() {
dune_src_install
if use emacs ; then
cd "${S}/emacs" || die
elisp-install ${PN} *.el *.elc
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|