Description: strip lib/ from classpath
 Upstream ships a lib directory with jar files, which were removed due to DFSG
 reasons. For this to work, the classpath was adjusted.
Author: Sebastian Humenda <shumenda@gmx.de>
Last-Update: <2017-11-23>

Index: texhyphj/.classpath
===================================================================
--- texhyphj.orig/.classpath
+++ texhyphj/.classpath
@@ -5,7 +5,5 @@
 	<classpathentry kind="src" output="bin/src" path="src/main/resources"/>
 	<classpathentry kind="src" output="bin/test" path="src/test/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
-	<classpathentry kind="lib" path="lib/junit-4.7.jar"/>
-	<classpathentry kind="lib" path="lib/hamcrest-all-1.3.jar"/>
 	<classpathentry kind="output" path="bin/src"/>
 </classpath>
Index: texhyphj/build-properties.xml
===================================================================
--- texhyphj.orig/build-properties.xml
+++ texhyphj/build-properties.xml
@@ -18,7 +18,7 @@
 	<property name="test-resources.dir" value="${basedir}/src/test/resources/"/>
 
 	
-	<property name="lib.dir" value="${basedir}/lib"/>
+    <property name="lib.dir" value="/usr/share/java"/>
 	<property name="doc.dir" value="${basedir}/doc"/>
 	<property name="dist.dir" value="${ant-output.dir}/dist"/>
 
Index: texhyphj/build.xml
===================================================================
--- texhyphj.orig/build.xml
+++ texhyphj/build.xml
@@ -34,11 +34,13 @@
     <target name="compile" depends="emptyBuildDir, createDistDir">
     	<!-- Compile core files -->
         <javac srcdir="${main-src.dir}" destdir="${build.dir}" includeantruntime="false" encoding="UTF-8" debug="true">
+            <!--
 			<classpath>
-				<fileset dir="${lib.dir}">
+                <fileset dir="/usr/share/java">
 					<include name="*.jar"/>
 				</fileset>
 			</classpath>
+            -->
         </javac>
 
     </target>
Index: texhyphj/build-doc.xml
===================================================================
--- texhyphj.orig/build-doc.xml
+++ texhyphj/build-doc.xml
@@ -9,16 +9,17 @@
 
 	<property name="javadoc.dir" value="${ant-output.dir}/docs/javadoc"/>
 
+    <!--
 	<path id="path.lib">
 		<fileset dir="${basedir}/lib">
 			<include name="*.jar"/>
 		</fileset>
 	</path>
+    -->
 	
     <target name="javadoc" description="Create javadoc">
     	<delete dir="${javadoc.dir}"/>
         <javadoc access="public" author="true"
-        	classpathref="path.lib"
         	destdir="${javadoc.dir}" 
         	nodeprecated="false" 
         	nodeprecatedlist="false" 
