blob: 106404533dcd1ebaac20a18d623e23b611b12037 (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake edo
DESCRIPTION="R6RS/R7RS Scheme system."
HOMEPAGE="https://bitbucket.org/ktakashi/sagittarius-scheme"
SRC_URI="https://bitbucket.org/ktakashi/sagittarius-scheme/downloads/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-libs/boehm-gc
dev-libs/libffi
dev-libs/openssl
sys-libs/zlib
"
RDEPEND="${DEPEND}"
src_unpack() {
default
# avoid running ldconfig
edo truncate -s0 "${S}"/cmake/CMakeLists.txt
# following tests always fail in sandbox
cd "${S}"/test/tests
edo rm net/http-client.scm net/socket.scm rfc/websocket.scm
}
|