gentoo-ebuilds/dev-scheme/chez/chez-10.3.0.ebuild
Michał Górny bd0ee727e0
dev-*/*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Followed by manual revert in dev-python/zlib-ng where it accidentally
caught sys-libs/zlib-ng dependencies.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:07:26 +01:00

121 lines
2.5 KiB
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dot-a edo toolchain-funcs
DESCRIPTION="A programming language based on R6RS"
HOMEPAGE="https://cisco.github.io/ChezScheme/
https://github.com/cisco/ChezScheme/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cisco/ChezScheme"
else
SRC_URI="https://github.com/cisco/ChezScheme/releases/download/v${PV}/csv${PV//a}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/csv${PV//a}"
KEYWORDS="~amd64 ~arm ~x86"
fi
# Chez Scheme itself is Apache 2.0, but it vendors Nanopass and stex
# which are both MIT licensed.
LICENSE="Apache-2.0 MIT"
SLOT="0/${PV}"
IUSE="X +ncurses +threads"
# "some output differs from expected", needs in-depth investigation.
# You may wish to investigate "make.out" test logfiles.
RESTRICT="test"
RDEPEND="
app-arch/lz4:=
sys-apps/util-linux
virtual/zlib:=
X? (
x11-libs/libX11
)
ncurses? (
sys-libs/ncurses:=
)
"
DEPEND="
${RDEPEND}
"
BDEPEND="
virtual/pkgconfig
"
src_prepare() {
tc-export AR CC CXX LD RANLIB
default
if use ncurses ; then
local nclibs="\"$($(tc-getPKG_CONFIG) --libs ncurses)\""
sed -i "s|ncursesLib=-lncurses|ncursesLib=${nclibs}|g" configure || die
fi
}
src_configure() {
# See official docs for translation guide.
# https://cisco.github.io/ChezScheme/release_notes/v10.0/release_notes.html
# "t" for threading + arch_map + "le" for Linux
local -A arch_map=(
[x86]=i3
[amd64]=a6
[arm64]=arm64
[arm]=arm32
[riscv]=rv64
[loong]=la64
[ppc]=ppc32
)
local machine="$(usex threads 't' '')${arch_map[${ARCH}]}le"
lto-guarantee-fat
local -a myconfargs=(
--machine="${machine}"
--libkernel
--nogzip-man-pages
--installprefix="/usr"
--installbin="/usr/bin"
--installlib="/usr/$(get_libdir)"
--installman="/usr/share/man"
--installschemename="chezscheme"
--installpetitename="chezscheme-petite"
--installscriptname="chezscheme-script"
$(usex threads '--threads' '')
$(usex ncurses '' '--disable-curses')
$(usex X '' '--disable-x11')
AR="$(tc-getAR)"
CC="$(tc-getCC)"
LD="$(tc-getLD)"
RANLIB="$(tc-getRANLIB)"
STRIP="$(tc-getSTRIP)"
CFLAGS+="${CFLAGS}"
CPPFLAGS+="${CPPFLAGS}"
LDFLAGS+="${LDFLAGS}"
LZ4="$($(tc-getPKG_CONFIG) --libs liblz4)"
ZLIB="$($(tc-getPKG_CONFIG) --libs zlib)"
)
edo sh ./configure "${myconfargs[@]}"
}
src_install() {
# TempRoot == DESTDIR
sed -e "s|TempRoot=.*|TempRoot=${ED}|g" -i ./*/Mf-* || die
emake install
strip-lto-bytecode
einstalldocs
}