View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic
DESCRIPTION="IBM's open source, high performance Java compiler"
HOMEPAGE="http://jikes.sourceforge.net/"
SRC_URI="https://sourceforge.net/projects/${PN}/files/Jikes/${PV}/${P}.tar.bz2"
LICENSE="IBM"
SLOT="0"
KEYWORDS="amd64 arm64"
RDEPEND=">=dev-java/java-config-2.0.0"
src_unpack() {
unpack ${A}
cd "${S}"
}
src_prepare() {
eapply -p0 "${FILESDIR}"/deprecated.patch
eapply_user
# Workaround for a broken configure test
sed -i '/cygwin_win32_to_posix_path_list/d' configure.ac
eautoreconf -fi
}
src_configure() {
econf || die "configure problem"
default
}
src_compile() {
filter-flags "-fno-rtti"
emake || die "compile problem"
}
src_install () {
make DESTDIR="${D}" install || die "install problem"
mv "${D}"/usr/bin/jikes{,-bin}
dobin "${FILESDIR}"/jikes
insinto /usr/share/java-config-2/compiler
newins "${FILESDIR}"/compiler-settings jikes
}