Install this version:
emerge -a =dev-lisp/picolisp-25.12
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lisp/picolisp-25.12
Or alternatively:
emerge --autounmask-write -a =dev-lisp/picolisp-25.12
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit llvm
DESCRIPTION="PicoLisp - programming language and database"
HOMEPAGE="http://picolisp.com/wiki/"
SRC_URI="http://software-lab.de/picoLisp-${PV}.tgz"
LICENSE="MIT X11"
SLOT="0"
KEYWORDS="~x86 ~amd64"
BDEPEND=">=sys-devel/clang-3.5"
DEPEND="${LLVM_DEPEND}"
S=${WORKDIR}/pil21
src_compile() {
cd "${S}/src" || die
emake || die "emake failed"
}
src_install() {
chmod -x "${S}/bin/picolisp" || die
dobin "${S}/bin/picolisp"
dobin "${S}/bin/pil"
mkdir -p "${D}/usr/lib/" || die
cp -R "${S}/lib" "${D}/usr/lib/picolisp" || die
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | picoLisp-25.12.tgz | 1340615 bytes | http://software-lab.de/picoLisp-25.12.tgz |