blob: a557948a83ebe2429112efba204bab6e8b522141 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=26
COMMIT="ab1a53a6a0120872e42582fc980e779d47de6d0e"
BUILD_DIR="."
inherit cmake elisp
DESCRIPTION="Emacs bindings for libgit2"
HOMEPAGE="https://github.com/magit/libegit2"
SRC_URI="https://github.com/magit/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
LICENSE="GPL-2+ GPL-3+"
SLOT="0"
KEYWORDS="~amd64 x86"
# The tests seem to be written specifically for the libegit2 git repository.
RESTRICT="test"
DEPEND=">=dev-libs/libgit2-1.0.0:="
RDEPEND="${DEPEND}
>=app-editors/emacs-26:*[dynamic-loading]"
SITEFILE="50${PN}-gentoo.el"
DOCS="README.md"
src_prepare() {
# Don't build against the bundled submodule
sed -i -e '/subdirectory.*libgit2/ s/^/#/' CMakeLists.txt || die
rm -f test.el || die
cmake_src_prepare
}
src_configure() {
cmake_src_configure
}
src_compile() {
cmake_src_compile
elisp_src_compile
}
src_install() {
elisp_src_install
elisp-modules-install ${PN} libegit2.so
}
|