diff options
author | Peter Johanson <latexer@gentoo.org> | 2004-06-30 20:15:00 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2004-06-30 20:15:00 +0000 |
commit | 9183dfdc6fd1ef9f07b2129e8138a2c9f6fcc4b5 (patch) | |
tree | e336d54a9d0cb57f4d08292d51bdf2817fa35e8f /dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild | |
parent | Add missing local use flags for dev-games/crystalspace-cvs; sort (diff) | |
download | gentoo-2-9183dfdc6fd1ef9f07b2129e8138a2c9f6fcc4b5.tar.gz gentoo-2-9183dfdc6fd1ef9f07b2129e8138a2c9f6fcc4b5.tar.bz2 gentoo-2-9183dfdc6fd1ef9f07b2129e8138a2c9f6fcc4b5.zip |
Initial import. Goes with mono-1.0
Diffstat (limited to 'dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild')
-rw-r--r-- | dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild b/dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild new file mode 100644 index 000000000000..defef9b83e25 --- /dev/null +++ b/dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ikvm/ikvm-0.8.0.0.ebuild,v 1.1 2004/06/30 20:15:00 latexer Exp $ + +inherit mono + +DESCRIPTION="Java VM for .NET" +HOMEPAGE="http://www.ikvm.net/" + +SRC_URI="http://www.go-mono.com/archive/1.0/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" + +RDEPEND=">=dev-dotnet/mono-1.0" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + + # Fix some makefile borkage. + sed -i -e 's:-e$:-e \\:' ${S}/scripts/Makefile.in +} + +src_compile() { + econf || die +} + +src_install() { + make DESTDIR=${D} install || die +} |