Install this version:
emerge -a =dev-scheme/cozenage-0.19.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-scheme/cozenage-0.19.1
Or alternatively:
emerge --autounmask-write -a =dev-scheme/cozenage-0.19.1
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A Scheme-derived Lisp written in C"
HOMEPAGE="https://github.com/DarrenKirby/cozenage"
SRC_URI="https://github.com/DarrenKirby/cozenage/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="dev-libs/icu
dev-libs/boehm-gc
dev-libs/gmp
dev-libs/openssl"
RDEPEND="${DEPEND}"
BDEPEND=" test? ( dev-libs/criterion ) "
src_prepare() {
default
# Strip AddressSanitizer from tests as it conflicts with Portage's LD_PRELOAD sandbox.
# Strip -Werror per Gentoo QA policy to prevent build failures on future GCC bumps.
sed -i \
-e 's/-fsanitize=address//g' \
-e 's/-Werror//g' \
Makefile || die
}
src_test() {
emake test
./run_tests
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
# install documentation
dodoc *.md
doman docs/cozenage.1
}
Manage flags for this package:
euse -i <flag> -p dev-scheme/cozenage |
euse -E <flag> -p dev-scheme/cozenage |
euse -D <flag> -p dev-scheme/cozenage
dev-libs/icu dev-libs/boehm-gc dev-libs/gmp dev-libs/openssl
dev-libs/icu dev-libs/boehm-gc dev-libs/gmp dev-libs/openssl
test? ( dev-libs/criterion )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | cozenage-0.19.1.tar.xz | 352376 bytes | https://github.com/DarrenKirby/cozenage/releases/download/v0.19.1/cozenage-0.19.1.tar.xz |