You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.0 KiB

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit autotools toolchain-funcs
DESCRIPTION="Fast and light Scheme implementation"
HOMEPAGE="https://www.stklos.net/"
SRC_URI="https://www.${PN}.net/download/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="threads"
RDEPEND="dev-libs/boehm-gc[threads?]
dev-libs/gmp:=
dev-libs/libffi:=
dev-libs/libpcre"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog {HACKING,NEWS}.md PACKAGES-USED {PORTING-NOTES,README}.md SUPPORTED-SRFIS )
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-configure-clang16.patch
)
src_prepare() {
default
use threads || rm -f tests/srfis/216.stk
eautoreconf
}
src_configure() {
export LD="$(tc-getCC)"
econf \
--enable-threads=$(usex threads pthreads none) \
--without-gmp-light \
--without-provided-ffi \
--without-provided-gc \
--without-provided-regexp
}
src_compile() {
emake -j1
}
src_test() {
emake -j1 check
}
src_install() {
default
einstalldocs
}