diff options
author | 2018-01-27 03:14:07 +0300 | |
---|---|---|
committer | 2018-01-27 03:15:17 +0300 | |
commit | eaaf3d639ba71b5879d7373904551580fb7274b3 (patch) | |
tree | b578b23c78b22721343e3e0eea5e5ac3ab9384fc /dev-java/jikes/jikes-1.22-r13.ebuild | |
parent | dev-php/PEAR-PEAR: drop PEAR-PEAR-1.10.1-r1.ebuild. (diff) | |
download | gentoo-eaaf3d639ba71b5879d7373904551580fb7274b3.tar.gz gentoo-eaaf3d639ba71b5879d7373904551580fb7274b3.tar.bz2 gentoo-eaaf3d639ba71b5879d7373904551580fb7274b3.zip |
dev-java/jikes: remove last rited package
Closes: https://bugs.gentoo.org/638036
Diffstat (limited to 'dev-java/jikes/jikes-1.22-r13.ebuild')
-rw-r--r-- | dev-java/jikes/jikes-1.22-r13.ebuild | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-java/jikes/jikes-1.22-r13.ebuild b/dev-java/jikes/jikes-1.22-r13.ebuild deleted file mode 100644 index e6f424f95dde..000000000000 --- a/dev-java/jikes/jikes-1.22-r13.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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" -KEYWORDS="amd64 ~arm ppc64 x86 ~x86-fbsd" -IUSE="" -DEPEND="" -RDEPEND=">=dev-java/java-config-2.0.0" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/deprecated.patch -} - -src_compile() { - filter-flags "-fno-rtti" - econf || die "configure problem" - emake || die "compile problem" -} - -src_install () { - make DESTDIR="${D}" install || die "install problem" - dodoc ChangeLog AUTHORS README TODO NEWS - - mv "${D}"/usr/bin/jikes{,-bin} - dobin "${FILESDIR}"/jikes - - insinto /usr/share/java-config-2/compiler - newins "${FILESDIR}"/compiler-settings jikes -} |