mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 08:02:08 +00:00
And other C99 build fixes, along with updating EAPI 7 -> 8 Closes: https://bugs.gentoo.org/928675 Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36397 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
45 lines
1,018 B
Bash
45 lines
1,018 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Scheme implementation designed to be embeddable extension to C/C++ applications"
|
|
HOMEPAGE="http://sam.zoy.org/elk/"
|
|
SRC_URI="http://sam.zoy.org/elk/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-implicit-int-incompat-ptr.patch
|
|
"${FILESDIR}"/${P}-implicit-function.patch
|
|
"${FILESDIR}"/${P}-c99-build-fix.patch
|
|
)
|
|
|
|
src_configure() {
|
|
econf --disable-static
|
|
}
|
|
|
|
src_compile() {
|
|
# parallel build is broken
|
|
emake -j1
|
|
}
|
|
|
|
# tests are run automatically during make and fail with default src_test
|
|
src_test() {
|
|
echo "Tests already run during compile"
|
|
}
|
|
|
|
src_install() {
|
|
# parallel install is broken
|
|
emake -j1 DESTDIR="${D}" \
|
|
docsdir="${EPREFIX}"/usr/share/doc/${PF} \
|
|
examplesdir="${EPREFIX}"/usr/share/doc/${PF}/examples \
|
|
install
|
|
einstalldocs
|
|
docompress -x /usr/share/doc/${PF}
|
|
|
|
# no static archives
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|