summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2009-07-16 20:56:20 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2009-07-16 20:56:20 +0000
commit6bba58396f4275ab5f7d86a4b17014cbb987c39a (patch)
tree68e418f10e6825a445d9381e1f73776bbc94d215 /dev-java/cacao
parentRemove mask on dev-java/cacao as we have a working version in tree. (diff)
downloadgentoo-2-6bba58396f4275ab5f7d86a4b17014cbb987c39a.tar.gz
gentoo-2-6bba58396f4275ab5f7d86a4b17014cbb987c39a.tar.bz2
gentoo-2-6bba58396f4275ab5f7d86a4b17014cbb987c39a.zip
Remove old non working versions.
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'dev-java/cacao')
-rw-r--r--dev-java/cacao/ChangeLog6
-rw-r--r--dev-java/cacao/cacao-0.91.ebuild46
-rw-r--r--dev-java/cacao/cacao-0.95.ebuild37
3 files changed, 5 insertions, 84 deletions
diff --git a/dev-java/cacao/ChangeLog b/dev-java/cacao/ChangeLog
index 5a804f3193bf..2bbd76c221c4 100644
--- a/dev-java/cacao/ChangeLog
+++ b/dev-java/cacao/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/cacao
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/cacao/ChangeLog,v 1.15 2009/07/16 20:54:42 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/cacao/ChangeLog,v 1.16 2009/07/16 20:56:20 betelgeuse Exp $
+
+ 16 Jul 2009; Petteri Räty <betelgeuse@gentoo.org> -cacao-0.91.ebuild,
+ -cacao-0.95.ebuild:
+ Remove old non working versions.
16 Jul 2009; Petteri Räty <betelgeuse@gentoo.org> cacao-0.99.4.ebuild:
Add ~ppc and ~ppc64 as gnu_andres has tested those.
diff --git a/dev-java/cacao/cacao-0.91.ebuild b/dev-java/cacao/cacao-0.91.ebuild
deleted file mode 100644
index f80a76978f30..000000000000
--- a/dev-java/cacao/cacao-0.91.ebuild
+++ /dev/null
@@ -1,46 +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/cacao/cacao-0.91.ebuild,v 1.9 2006/01/23 17:06:20 betelgeuse Exp $
-
-inherit eutils
-
-DESCRIPTION="Cacao Java Virtual Machine"
-HOMEPAGE="http://www.cacaojvm.org/"
-SRC_URI="http://www.complang.tuwien.ac.at/cacaojvm/download/cacao-${PV}/cacao-${PV}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-IUSE="gtk"
-DEPEND="
- gtk? (
- >=x11-libs/gtk+-2.0
- >=dev-libs/atk-1.0
- >=x11-libs/pango-1.0
- >=dev-libs/glib-2.0
- >=media-libs/libart_lgpl-2.0
- )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- for x in $(find . -name Makefile.in) ; do
- sed -r \
- -e "s:/jre/lib:/lib/cacao:" \
- -e "s:/jre/bin:/lib/cacao/bin:" \
- -i $x || die "Failed to update paths"
- done
- sed -r \
- -e "s:(#define.*CACAO_LIBRARY_PATH).*:\1 \"/lib/cacao/\"ARCH_DIR\"/\":" \
- -e "s|(#define.*CACAO_RT_JAR_PATH).*|\1 \"/lib/cacao/rt.jar:\"|" \
- -i src/vm/global.h
-}
-
-src_compile() {
- econf $(use_enable gtk gtk-peer) || die "Failed to configure"
- emake || die "Failed to compile"
-}
-
-src_install() {
- einstall || die "Failed to install"
-}
diff --git a/dev-java/cacao/cacao-0.95.ebuild b/dev-java/cacao/cacao-0.95.ebuild
deleted file mode 100644
index 420fc98e1cfe..000000000000
--- a/dev-java/cacao/cacao-0.95.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/cacao/cacao-0.95.ebuild,v 1.3 2007/06/26 01:46:59 mr_bones_ Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="Cacao Java Virtual Machine"
-HOMEPAGE="http://www.cacaojvm.org/"
-SRC_URI="http://www.complang.tuwien.ac.at/cacaojvm/download/${P}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND=">=dev-java/gnu-classpath-0.19"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- # Upstream has patches this already so we just use this until the next
- # version
- append-flags -Wa,--noexecstack
-
- # A compiler can be forced with the JAVAC variable if needed
-
- econf --bindir=/opt/${PN}/bin \
- --disable-dependency-tracking \
- --with-classpath-prefix=/usr/ \
- --with-classpath-libdir="/usr/$(get_libdir)"
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodir /usr/bin
- dosym /opt/${PN}/bin/cacao /usr/bin/cacao
- dodoc AUTHORS ChangeLog* NEWS README || die "failed to install docs"
-}