diff options
author | Akinori Hattori <hattya@gentoo.org> | 2024-02-16 22:39:41 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2024-02-16 22:39:41 +0900 |
commit | 246c63d55b1fed5b17d04fc2faedd49f34e5da17 (patch) | |
tree | 17a0370a17f88914a9858fd7b1e6fece18d2211b /dev-scheme | |
parent | dev-scheme/stklos: amd64/x86 stable (diff) | |
download | gentoo-246c63d55b1fed5b17d04fc2faedd49f34e5da17.tar.gz gentoo-246c63d55b1fed5b17d04fc2faedd49f34e5da17.tar.bz2 gentoo-246c63d55b1fed5b17d04fc2faedd49f34e5da17.zip |
dev-scheme/stklos: drop old
Signed-off-by: Akinori Hattori <hattya@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/stklos/stklos-2.00.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-scheme/stklos/stklos-2.00.ebuild b/dev-scheme/stklos/stklos-2.00.ebuild deleted file mode 100644 index 90fa3ef0c997..000000000000 --- a/dev-scheme/stklos/stklos-2.00.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2023 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://stklos.net/" -SRC_URI="https://${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/libpcre2:=" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) -DOCS=( AUTHORS ChangeLog NEWS.md PACKAGES-USED {PORTING-NOTES,README}.md SUPPORTED-SRFIS ) - -src_prepare() { - default - - if ! use threads; then - sed -i '/threads.adoc/d' doc/refman/${PN}.adoc - rm -f tests/srfis/2{16,30}.stk - fi - eautoreconf - export LD="$(tc-getCC)" - export STKLOS_CONFDIR="${T}"/.config/${PN} -} - -src_configure() { - econf \ - --enable-threads=$(usex threads pthreads none) \ - --without-provided-bignum \ - --without-provided-ffi \ - --without-provided-gc \ - --without-provided-regexp -} - -src_compile() { - emake -} - -src_test() { - emake -j1 check -} - -src_install() { - default - einstalldocs -} |