diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-08-06 00:09:40 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-08-06 00:09:40 +0000 |
commit | 1c49dc401fa7d4082f1047f73153072483960a1c (patch) | |
tree | bc6b2c4120987108214c2ddb98411be002e0f86f /dev-java/ant-owanttask/files | |
parent | Version bump and fix HOMEPAGE #71889 by Luke Worth. (diff) | |
download | gentoo-2-1c49dc401fa7d4082f1047f73153072483960a1c.tar.gz gentoo-2-1c49dc401fa7d4082f1047f73153072483960a1c.tar.bz2 gentoo-2-1c49dc401fa7d4082f1047f73153072483960a1c.zip |
Added missing dependencies, both in DEPEND and jars, to satisfy java-strict
(Portage version: 2.1.1_pre4-r2)
Diffstat (limited to 'dev-java/ant-owanttask/files')
-rw-r--r-- | dev-java/ant-owanttask/files/ant-owanttask-1.1-classpath.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-java/ant-owanttask/files/ant-owanttask-1.1-classpath.patch b/dev-java/ant-owanttask/files/ant-owanttask-1.1-classpath.patch new file mode 100644 index 000000000000..cd3d2e0fd42a --- /dev/null +++ b/dev-java/ant-owanttask/files/ant-owanttask-1.1-classpath.patch @@ -0,0 +1,17 @@ +diff -ru owanttask-1.1/build.xml owanttask-1.1-patched/build.xml +--- owanttask-1.1/build.xml 2004-02-09 03:57:02.000000000 -0500 ++++ owanttask-1.1-patched/build.xml 2006-08-05 20:06:03.000000000 -0400 +@@ -3,9 +3,12 @@ + <property name="out" value="${basedir}/output"/> + <property name="out.build" value="${out}/build"/> + <property name="out.lib" value="${out}/lib"/> ++ <path id="build.classpath"> ++ <fileset dir="lib" includes="*.jar"/> ++ </path> + <target name="compile"> + <mkdir dir="${out.build}"/> +- <javac srcdir="${prj.src}" destdir="${out.build}" debug="on"> ++ <javac srcdir="${prj.src}" destdir="${out.build}" debug="on" classpathref="build.classpath"> + <include name="**/*.java"/> + </javac> + </target> |