# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/jamvm/jamvm-1.5.0-r1.ebuild,v 1.1 2008/03/03 19:57:26 betelgeuse Exp $ EAPI=1 inherit autotools eutils flag-o-matic multilib java-vm-2 DESCRIPTION="An extremely small and specification-compliant virtual machine." HOMEPAGE="http://jamvm.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="debug libffi" CLASSPATH_SLOT=0.97 RDEPEND="dev-java/gnu-classpath:${CLASSPATH_SLOT}" DEPEND="${DEPEND}" PDEPEND="dev-java/ant-eclipse-ecj:3.3 dev-java/gjdoc" pkg_setup() { if use libffi && ! built_with_use sys-devel/gcc libffi; then eerror "sys-devel/gcc not built with libffi support" eerror "rebuild sys-devel/gcc with USE=\"libffi\" or" eerror "turn off the libffi use flag on on ${PN}" die "Rebuild sys-devel/gcc with libffi" fi java-vm-2_pkg_setup } src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/classes-location.patch" eautoreconf # These come precompiled. # configure script uses detects the compiler # from PATH. I guess we should compile this from source. # Then just make sure not to hit # https://bugs.gentoo.org/show_bug.cgi?id=163801 #rm -v lib/classes.zip || die } src_compile() { filter-flags "-fomit-frame-pointer" # Keep libjvm.so out of /usr # http://bugs.gentoo.org/show_bug.cgi?id=181896 econf \ $(use_enable debug trace) \ $(use_enable libffi ffi) \ --prefix=/opt/${PN} \ --datadir=/opt/ \ --bindir=/usr/bin \ --with-classpath-install-dir=/opt/gnu-classpath-${CLASSPATH_SLOT} \ || die "configure failed." emake || die "make failed." } src_install() { emake DESTDIR="${D}" install || die "installation failed." dodoc ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS README \ || die "dodoc failed" set_java_env "${FILESDIR}/${PN}-1.5.0.env" local bindir=/opt/${PN}/bin dodir ${bindir} dosym /usr/bin/jamvm ${bindir}/java dosym /usr/bin/ecj-3.3 ${bindir}/javac dosym /usr/bin/gjdoc ${bindir}/javadoc }