diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-15 13:12:42 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-15 13:12:42 +0000 |
commit | dbde810cd7b6825b0f53a81c228d5fed02e51e96 (patch) | |
tree | 49a20ba7b2f31102fb601b4249157592a2874575 /dev-java/webgraph/files | |
parent | new upstream version, new slot was needed. introduced support for the source ... (diff) | |
download | gentoo-2-dbde810cd7b6825b0f53a81c228d5fed02e51e96.tar.gz gentoo-2-dbde810cd7b6825b0f53a81c228d5fed02e51e96.tar.bz2 gentoo-2-dbde810cd7b6825b0f53a81c228d5fed02e51e96.zip |
new upstream version, introduced support for the source useflag. marked 1.4 stable on amd64 and x86.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-java/webgraph/files')
-rw-r--r-- | dev-java/webgraph/files/digest-webgraph-1.4.1 | 1 | ||||
-rw-r--r-- | dev-java/webgraph/files/webgraph-1.4-gentoo.patch (renamed from dev-java/webgraph/files/webgraph-gentoo.patch) | 0 | ||||
-rw-r--r-- | dev-java/webgraph/files/webgraph-1.4.1-gentoo.patch | 36 |
3 files changed, 37 insertions, 0 deletions
diff --git a/dev-java/webgraph/files/digest-webgraph-1.4.1 b/dev-java/webgraph/files/digest-webgraph-1.4.1 new file mode 100644 index 000000000000..82131256b9ea --- /dev/null +++ b/dev-java/webgraph/files/digest-webgraph-1.4.1 @@ -0,0 +1 @@ +MD5 b22b0cf78075c21367a1bba03f8d87c8 webgraph-1.4.1-src.tar.gz 55467 diff --git a/dev-java/webgraph/files/webgraph-gentoo.patch b/dev-java/webgraph/files/webgraph-1.4-gentoo.patch index a18d127634c1..a18d127634c1 100644 --- a/dev-java/webgraph/files/webgraph-gentoo.patch +++ b/dev-java/webgraph/files/webgraph-1.4-gentoo.patch diff --git a/dev-java/webgraph/files/webgraph-1.4.1-gentoo.patch b/dev-java/webgraph/files/webgraph-1.4.1-gentoo.patch new file mode 100644 index 000000000000..a4ad2d262a15 --- /dev/null +++ b/dev-java/webgraph/files/webgraph-1.4.1-gentoo.patch @@ -0,0 +1,36 @@ +--- build.xml.orig 2005-04-15 14:36:14.000000000 +0200 ++++ build.xml 2005-04-15 14:38:45.000000000 +0200 +@@ -19,6 +19,14 @@ + <property name="jar.base" value="/usr/share/java"/> + <property name="javadoc.base" value="/usr/share/javadoc"/> + ++ <path id="compile.classpath"> ++ <pathelement location="lib/jal.jar" /> ++ <pathelement location="lib/colt.jar" /> ++ <pathelement location="lib/fastutil.jar" /> ++ <pathelement location="lib/gnu.getopt.jar" /> ++ <pathelement location="lib/mg4j.jar" /> ++ </path> ++ + <!-- + Groovy and Cobertura need different versions of asm. + Due to the delegation-based class-loading model used +@@ -119,7 +127,9 @@ + <target name="all" depends="jar,javadoc"/> + + <target name="compile" depends="init" description="Compile standard sources (not test files)"> +- <javac srcdir="${src}" includes="**${subdir}" excludes="test/**" debug="on" optimize="on" destdir="${build}" source="1.4"/> ++ <javac srcdir="${src}" includes="**${subdir}" excludes="test/**" debug="on" optimize="on" destdir="${build}" source="1.4" target="1.4"> ++ <classpath refid="compile.classpath" /> ++ </javac> + </target> + + <target name="jar" depends="compile" description="Creates jar (without tests)"> +@@ -144,6 +154,7 @@ + <link href="${colt.apiurl}"/> + <link href="${jal.apiurl}"/> + <link href="${mg4j.apiurl}"/> ++ <classpath refid="compile.classpath" /> + </javadoc> + </target> + |