diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2004-10-12 19:21:14 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2004-10-12 19:21:14 +0000 |
commit | 78367676b85a172c7a759f83a03963e39ab71f9a (patch) | |
tree | fa3225b2b768d00f80005a69b681e65ee4b9c266 /dev-java/jikes/jikes-1.22-r1.ebuild | |
parent | Stable on hppa. (diff) | |
download | historical-78367676b85a172c7a759f83a03963e39ab71f9a.tar.gz historical-78367676b85a172c7a759f83a03963e39ab71f9a.tar.bz2 historical-78367676b85a172c7a759f83a03963e39ab71f9a.zip |
upstream patch closes bug 66977,66840
Diffstat (limited to 'dev-java/jikes/jikes-1.22-r1.ebuild')
-rw-r--r-- | dev-java/jikes/jikes-1.22-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-java/jikes/jikes-1.22-r1.ebuild b/dev-java/jikes/jikes-1.22-r1.ebuild new file mode 100644 index 000000000000..12697e334dab --- /dev/null +++ b/dev-java/jikes/jikes-1.22-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jikes/jikes-1.22-r1.ebuild,v 1.1 2004/10/12 19:21:14 axxo Exp $ + +inherit flag-o-matic + +DESCRIPTION="IBM's open source, high performance Java compiler" +HOMEPAGE="http://oss.software.ibm.com/developerworks/opensource/jikes/" +SRC_URI="ftp://www-126.ibm.com/pub/jikes/${PV}/${P}.tar.bz2" +LICENSE="IBM" +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc ~amd64 ~alpha ~ia64 ~hppa" +IUSE="" +DEPEND="virtual/libc" +DEPEND="" +RESTRICT="nomirror" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/deprecated.patch +} + +src_compile() { + filter-flags "-fno-rtti" + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --host=${CHOST} \ + || die "configure problem" + emake || die "compile problem" +} + +src_install () { + make DESTDIR=${D} install || die "install problem" + dodoc ChangeLog COPYING AUTHORS README TODO NEWS +} |