gentoo-bootstrap/dev-java/jikes/jikes-1.22-r13.ebuild

42 lines
837 B
Bash
Raw Normal View History

2019-11-20 14:58:31 +00:00
# Copyright 1999-2019 Gentoo Foundation
2019-11-20 12:46:15 +00:00
# Distributed under the terms of the GNU General Public License v2
2019-11-20 14:49:58 +00:00
EAPI=7
2019-11-20 12:46:15 +00:00
inherit flag-o-matic eutils
DESCRIPTION="IBM's open source, high performance Java compiler"
HOMEPAGE="http://jikes.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="IBM"
SLOT="0"
2019-12-09 01:15:10 +00:00
KEYWORDS="amd64 ~arm64"
2019-11-20 12:46:15 +00:00
RDEPEND=">=dev-java/java-config-2.0.0"
src_unpack() {
2019-11-20 14:58:31 +00:00
unpack ${A}
cd "${S}"
}
src_configure() {
2019-11-27 19:34:53 +00:00
eapply -p0 "${FILESDIR}"/deprecated.patch
2019-11-20 14:58:31 +00:00
econf || die "configure problem"
default
2019-11-20 12:46:15 +00:00
}
src_compile() {
2019-11-20 14:58:31 +00:00
filter-flags "-fno-rtti"
emake || die "compile problem"
2019-11-20 12:46:15 +00:00
}
src_install () {
2019-11-20 14:58:31 +00:00
make DESTDIR="${D}" install || die "install problem"
2019-11-20 12:46:15 +00:00
2019-11-20 14:58:31 +00:00
mv "${D}"/usr/bin/jikes{,-bin}
dobin "${FILESDIR}"/jikes
2019-11-20 12:46:15 +00:00
2019-11-20 14:58:31 +00:00
insinto /usr/share/java-config-2/compiler
newins "${FILESDIR}"/compiler-settings jikes
2019-11-20 12:46:15 +00:00
}