Add temporary dev-scheme/chibi

This commit is contained in:
cælōrum spectātrīx 2026-01-17 00:50:48 +01:00
parent f2797966ce
commit ac9f8359c1
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,48 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
REAL_PN="${PN}-scheme"
REAL_PV="$(ver_cut 1-2)"
REAL_P="${REAL_PN}-${REAL_PV}"
inherit toolchain-funcs
DESCRIPTION="Minimal Scheme implementation for use as an extension language"
HOMEPAGE="http://synthcode.com/scheme/chibi/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ashinn/${REAL_PN}.git"
else
SRC_URI="https://github.com/ashinn/${REAL_PN}/archive/${REAL_PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${REAL_P}"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
SLOT="0"
src_configure() {
tc-export CC
# upstream uses $(FEATURES) in makefile, which collides with the portage variable
sed -i 's/FEATURES/z&/g' Makefile || die
export PREFIX="${EPREFIX}/usr"
export LIBDIR="${EPREFIX}/usr/$(get_libdir)"
export SOLIBDIR="${EPREFIX}/usr/$(get_libdir)"
# If "ldconfig" exists it is ran, overwrite it with "LDCONFIG" variable.
export LDCONFIG="0"
}
src_install() {
default
dosym "${REAL_PN}" "/usr/bin/${PN}"
}