summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlastimil Babka <caster@gentoo.org>2007-02-04 00:18:25 +0000
committerVlastimil Babka <caster@gentoo.org>2007-02-04 00:18:25 +0000
commit17ebd0e9e7b234e4dfdbdc63089736c1b231a80e (patch)
treea9e6a2d263cc70d6864450f61a6b12534ce94e85 /dev-util
parentRegenerate digest in Manifest2 format. (diff)
downloadgentoo-2-17ebd0e9e7b234e4dfdbdc63089736c1b231a80e.tar.gz
gentoo-2-17ebd0e9e7b234e4dfdbdc63089736c1b231a80e.tar.bz2
gentoo-2-17ebd0e9e7b234e4dfdbdc63089736c1b231a80e.zip
Cleanup.
(Portage version: 2.1.2-r7)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/weka/ChangeLog6
-rw-r--r--dev-util/weka/files/digest-weka-3.4.3_p200411136
-rw-r--r--dev-util/weka/files/weka-build_xml.patch50
-rw-r--r--dev-util/weka/weka-3.4.3_p20041113.ebuild56
4 files changed, 5 insertions, 113 deletions
diff --git a/dev-util/weka/ChangeLog b/dev-util/weka/ChangeLog
index 15e9bf1cf432..0fc6ab81a7b0 100644
--- a/dev-util/weka/ChangeLog
+++ b/dev-util/weka/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/weka
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/ChangeLog,v 1.17 2007/02/03 13:01:38 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/ChangeLog,v 1.18 2007/02/04 00:18:25 caster Exp $
+
+ 04 Feb 2007; Vlastimil Babka <caster@gentoo.org>
+ -files/weka-build_xml.patch, -weka-3.4.3_p20041113.ebuild:
+ Cleanup.
03 Feb 2007; Steve Dibb <beandog@gentoo.org> weka-3.4.6.ebuild:
amd64 stable, bug 162410
diff --git a/dev-util/weka/files/digest-weka-3.4.3_p20041113 b/dev-util/weka/files/digest-weka-3.4.3_p20041113
deleted file mode 100644
index f18a308ca1e6..000000000000
--- a/dev-util/weka/files/digest-weka-3.4.3_p20041113
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 8e4e0554f26752932f6ca8a3d51162e3 weka-20041113.tar.bz2 1322061
-RMD160 dc8143163232758173681e320963eac985313c11 weka-20041113.tar.bz2 1322061
-SHA256 dc72ef7a67906611f962182a55ec903ef5af1940e333ffbdbfe3aff261216a4f weka-20041113.tar.bz2 1322061
-MD5 b839ae409802f65bf8767326aede5f90 weka-datasets-20041113.tar.bz2 8628938
-RMD160 9de26a0c14c6a378d6d788f6a9f3db4271606a6b weka-datasets-20041113.tar.bz2 8628938
-SHA256 9360a118bfef2c2350794911fc15294263f7ab83c2de6cd60e83aa734e77080d weka-datasets-20041113.tar.bz2 8628938
diff --git a/dev-util/weka/files/weka-build_xml.patch b/dev-util/weka/files/weka-build_xml.patch
deleted file mode 100644
index 19b6f9c2d0e4..000000000000
--- a/dev-util/weka/files/weka-build_xml.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-diff -uprN weka.orig/build.xml weka/build.xml
---- weka.orig/build.xml 2004-11-14 17:25:34.451506656 +0100
-+++ weka/build.xml 2004-11-14 17:27:31.085775552 +0100
-@@ -45,7 +45,8 @@
- <target name="compile_inline" depends="init_all"
- description="Compile weka and leave class files in the source tree">
- <javac srcdir="${path_modifier}weka"
-- destdir="${path_modifier}"/>
-+ destdir="${path_modifier}"
-+ source="1.4" target="1.4" />
- <rmic base="${path_modifier}"
- classname="weka.experiment.RemoteEngine"/>
- </target>
-@@ -61,7 +62,8 @@
- <property name="build.compiler.emacs" value="true"/>
- <javac srcdir="${path_modifier}weka"
- destdir="${path_modifier}"
-- deprecation="on" />
-+ deprecation="on"
-+ source="1.4" target="1.4" />
- <rmic base="${path_modifier}"
- classname="weka.experiment.RemoteEngine"/>
- </target>
-@@ -70,7 +72,8 @@
- <target name="compile" depends="init_compile"
- description="Compile weka and deposit class files in ${path_modifier}/build/classes">
- <javac srcdir="${path_modifier}weka"
-- destdir="${path_modifier}${build}/classes"/>
-+ destdir="${path_modifier}${build}/classes"
-+ source="1.4" target="1.4" />
- <copy todir="${path_modifier}${build}/classes" >
- <fileset dir="${path_modifier}.">
- <include name="weka/**/*.props"/>
-@@ -117,7 +120,8 @@
- <target name="compile_tests" depends="init_tests, compile"
- description="Compile unit tests into ${path_modifier}/build/testcases">
- <javac srcdir="${path_modifier}tests"
-- destdir="${path_modifier}${build}/testcases">
-+ destdir="${path_modifier}${build}/testcases"
-+ source="1.4" target="1.4" >
- <classpath>
- <pathelement location="${path_modifier}${build}/classes"/>
- <pathelement path="${path_modifier}${java.class.path}"/>
-@@ -343,4 +347,4 @@
- <delete dir="${path_modifier}tests"/>
- <delete dir="${path_modifier}${doc}"/>
- </target>
--</project>
-\ No newline at end of file
-+</project>
diff --git a/dev-util/weka/weka-3.4.3_p20041113.ebuild b/dev-util/weka/weka-3.4.3_p20041113.ebuild
deleted file mode 100644
index cba4ee6b97c6..000000000000
--- a/dev-util/weka/weka-3.4.3_p20041113.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/weka-3.4.3_p20041113.ebuild,v 1.6 2006/09/08 02:45:32 nichoj Exp $
-
-inherit eutils java-pkg
-
-DESCRIPTION="A Java data mining package"
-SRC_URI="http://dev.gentoo.org/~karltk/projects/java/distfiles/${PN}-20041113.tar.bz2
- http://dev.gentoo.org/~karltk/projects/java/distfiles/${PN}-datasets-20041113.tar.bz2"
-HOMEPAGE="http://www.cs.waikato.ac.nz/ml/weka/"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 amd64 ~ppc"
-DEPEND=">=virtual/jdk-1.4
- dev-java/ant-core"
-# jikes?( >=dev-java/jikes-1.21 )"
-RDEPEND=">=virtual/jre-1.4"
-IUSE="doc" # jikes"
-
-S=${WORKDIR}/${PN}-20041113
-
-src_unpack() {
- mkdir ${S}
- cd ${S}
- unpack ${A}
- mv ${PN}-20041113 ${PN}
- epatch ${FILESDIR}/weka-build_xml.patch
-}
-
-src_compile() {
- cd weka
- # Runs out of memory of on amd64 with blackdown-jdk
- # so up the max size of the memory allocation pool
- use amd64 && export ANT_OPTS="-Xmx128m"
-
- # all attempts to build it with jikes failed
- local antflags="exejar srcjar remotejar"
- use doc && antflags="${antflags} docs"
-# use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "ant build failed"
-}
-
-src_install() {
- java-pkg_dojar dist/*.jar
-
- mkdir bin
- echo "#!/bin/sh" > bin/${PN}
- echo "java -classpath \$(java-config -p weka) weka.gui.GUIChooser" >> bin/${PN}
- dobin bin/${PN}
-
- use doc && java-pkg_dohtml -r doc/*
-
- dodir /usr/share/${PN}/data/
- cp -r numeric UCI regression-datasets ${D}/usr/share/${PN}/data \
- || die "failed to copy datasets"
-}