Author: Andreas Tille <tille@debian.org>
LastChanged: Fri, 24 Jan 2014 16:04:34 +0100
Description: Leave out IVY dependency checker
 Attention: This patch is most probably not yet finished.
 I went until the point when I noticed that mkgmap needs a
 not yet packaged dependency
   http://fastutil.di.unimi.it/
 The packaging of this predependency is finished and was ITPed (#711212)
 When installing libfastutil-java the build as way less error messages.
 It seems the remaining precondition would be at
   https://github.com/osmandapp/OsmAnd-tools/blob/master/OsmAndMapCreator/src/crosby/binary/Osmformat.java
 I need to check this out

--- a/build.xml
+++ b/build.xml
@@ -19,6 +19,7 @@
 		xmlns:ivy="antlib:org.apache.ivy.ant">
 
 	<!-- Set default javac target value -->
+	<property name="deblib" location="/usr/share/java"/>
 	<property name="ant.build.javac.target" value="1.7"/>
 	<property name="ant.build.javac.source" value="1.7"/>
 
@@ -71,7 +72,7 @@
 
 	<!-- For class paths -->
 	<path id="compile.classpath">
-		<fileset dir="${ivy.lib.dir}/compile" />
+		<fileset dir="${deblib}/" /> <!-- fastutil.jar -->
 	</path>
 	<path id="test.classpath">
 		<fileset dir="${ivy.lib.dir}/test" />
@@ -231,7 +232,7 @@
 	</target>
 
 	<!-- Compile the product itself (no tests). -->
-	<target name="compile" depends="prepare, resolve-compile"
+	<target name="compile" depends="prepare"
 					description="main compilation">
 
 		<javac srcdir="${src}" destdir="${build.classes}" encoding="utf-8" debug="true" includeantruntime="false">
