diff options
author | Jerry Alexandratos <jerry@gentoo.org> | 2000-11-22 03:05:44 +0000 |
---|---|---|
committer | Jerry Alexandratos <jerry@gentoo.org> | 2000-11-22 03:05:44 +0000 |
commit | d08cdcde5c4476005dbce115621c292677b87631 (patch) | |
tree | 5037df5e3a6016505a2069a272b367345e7cffa5 /dev-lang | |
parent | Initial import of NTP into the portage tree. We can all rejoice and (diff) | |
download | historical-d08cdcde5c4476005dbce115621c292677b87631.tar.gz historical-d08cdcde5c4476005dbce115621c292677b87631.tar.bz2 historical-d08cdcde5c4476005dbce115621c292677b87631.zip |
Import Kaffe, the open source and cleanroom designed JDK, into the
portage tree.
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/kaffe/files/digest-kaffe-1.0.6 | 1 | ||||
-rw-r--r-- | dev-lang/kaffe/kaffe-1.0.6.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-lang/kaffe/files/digest-kaffe-1.0.6 b/dev-lang/kaffe/files/digest-kaffe-1.0.6 new file mode 100644 index 000000000000..c637af971dd1 --- /dev/null +++ b/dev-lang/kaffe/files/digest-kaffe-1.0.6 @@ -0,0 +1 @@ +MD5 5a900dd33e7bde48d2fa94ada273e80e kaffe-1.0.6.tar.gz diff --git a/dev-lang/kaffe/kaffe-1.0.6.ebuild b/dev-lang/kaffe/kaffe-1.0.6.ebuild new file mode 100644 index 000000000000..1ec4050f3699 --- /dev/null +++ b/dev-lang/kaffe/kaffe-1.0.6.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jerry Alexandratos <jerry@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-lang/kaffe/kaffe-1.0.6.ebuild,v 1.1 2000/11/22 03:05:44 jerry Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A cleanroom, open source Java VM and class libraries" +SRC_URI="http://www.kaffe.org/ftp/pub/kaffe/${A}" +HOMEPAGE="http://www.kaffe.org/" + +DEPEND=">=dev-libs/gmp-3.1 + >=media-libs/jpeg-6b + >=media-libs/libpng-1.0.7 + >=sys-libs/glibc-2.1.3 + >=x11-base/xfree-4.0.1" + +src_compile() { + cd ${S} + try ./configure --prefix=/opt/kaffe --host=${CHOST} + try make +} + +src_install () { + cd ${S} + try make DESTDIR=${D} install +} |