summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2006-01-23 16:46:21 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2006-01-23 16:46:21 +0000
commitfbc320a0527269b091ee33de768ded526cf7f741 (patch)
tree66432fcce1594b539b3653acb2f46b027647d786 /dev-java/gnu-classpath
parent~ia64 keyword, bug 119722. (diff)
downloadgentoo-2-fbc320a0527269b091ee33de768ded526cf7f741.tar.gz
gentoo-2-fbc320a0527269b091ee33de768ded526cf7f741.tar.bz2
gentoo-2-fbc320a0527269b091ee33de768ded526cf7f741.zip
Removed old version.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'dev-java/gnu-classpath')
-rw-r--r--dev-java/gnu-classpath/ChangeLog6
-rw-r--r--dev-java/gnu-classpath/files/digest-gnu-classpath-0.15-r11
-rw-r--r--dev-java/gnu-classpath/gnu-classpath-0.15-r1.ebuild49
3 files changed, 5 insertions, 51 deletions
diff --git a/dev-java/gnu-classpath/ChangeLog b/dev-java/gnu-classpath/ChangeLog
index 097f334b9f50..3140b2eb02c8 100644
--- a/dev-java/gnu-classpath/ChangeLog
+++ b/dev-java/gnu-classpath/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/gnu-classpath
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-classpath/ChangeLog,v 1.46 2006/01/22 05:53:57 nichoj Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-classpath/ChangeLog,v 1.47 2006/01/23 16:46:21 betelgeuse Exp $
+
+ 23 Jan 2006; Petteri Räty <betelgeuse@gentoo.org>
+ -gnu-classpath-0.15-r1.ebuild:
+ Removed old version.
*gnu-classpath-0.20 (22 Jan 2006)
diff --git a/dev-java/gnu-classpath/files/digest-gnu-classpath-0.15-r1 b/dev-java/gnu-classpath/files/digest-gnu-classpath-0.15-r1
deleted file mode 100644
index 8b1e07082e87..000000000000
--- a/dev-java/gnu-classpath/files/digest-gnu-classpath-0.15-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 036c23aec7cb53a43b7b9dc63a92fbbe classpath-0.15.tar.gz 5564571
diff --git a/dev-java/gnu-classpath/gnu-classpath-0.15-r1.ebuild b/dev-java/gnu-classpath/gnu-classpath-0.15-r1.ebuild
deleted file mode 100644
index 7e96f3e6ac46..000000000000
--- a/dev-java/gnu-classpath/gnu-classpath-0.15-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-classpath/gnu-classpath-0.15-r1.ebuild,v 1.6 2005/09/23 22:18:58 betelgeuse Exp $
-
-DESCRIPTION="Free core class libraries for use with virtual machines and compilers for the Java programming language"
-SRC_URI="ftp://ftp.gnu.org/gnu/classpath/classpath-${PV}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/classpath"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0"
-KEYWORDS="~x86 ~sparc ~ppc ~amd64"
-IUSE="cairo gtk xml2"
-
-RDEPEND="cairo? ( >=x11-libs/cairo-0.3.0 )
- gtk? ( >=x11-libs/gtk+-2 >=media-libs/libart_lgpl-2.1 )
- xml2? ( >=dev-libs/libxml2-2.6.8 >=dev-libs/libxslt-1.1.11 )"
-DEPEND="${RDEPEND}
- app-arch/zip
- dev-java/jikes"
-
-S=${WORKDIR}/classpath-${PV}
-
-src_compile() {
- # Note: This is written in a way to easily support GCJ and other compilers
- # at a later point. Currently Gentoo uses mainly GCJ 3.3 (from the
- # corresponding GCC) which cannot compile GNU Classpath correctly.
- # Another possibility would be ECJ (from Eclipse) which is not yet in
- # portage.
- local compiler="--with-jikes"
-
- econf ${compiler} \
- $(use_enable cairo gtk-cairo) \
- $(use_enable gtk gtk-peer) \
- $(use_enable xml2 xmlj) \
- --enable-jni \
- || die "configure failed"
-
- emake || die "make failed"
-}
-
-src_install() {
- einstall || die "make install failed"
-
- if use cairo; then
- einfo "GNU Classpath was compiled with preliminary cairo support."
- einfo "To use that functionality set the system property"
- einfo "gnu.java.awt.peer.gtk.Graphics to Graphics2D at runtime."
- fi
-}