1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 02_buildxml.dpatch by <gregor+debian@comodo.priv.at>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: comment out propertyfile in build.xml
@DPATCH@
diff -urNad libjempbox-java~/build.xml libjempbox-java/build.xml
--- libjempbox-java~/build.xml 2007-05-17 14:04:23.000000000 +0200
+++ libjempbox-java/build.xml 2007-05-17 14:04:59.000000000 +0200
@@ -94,9 +94,11 @@
<target name="package" depends="compile" description="Package JempBox">
<property name="release.name" value="${project.name}-${project.version}" />
+ <!--
<propertyfile file="${resources.dir}/jempbox.version">
<entry key="jempbox.version" value="${release.name}"/>
</propertyfile>
+ -->
<jar jarfile="./lib/${release.name}.jar">
<fileset dir="${dest.dir}">
@@ -189,7 +191,7 @@
classpathref="build.classpath"
encoding="ISO-8859-1"
breakiterator="yes">
- <link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>
+ <!--<link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>-->
<!--<link href="http://jakarta.apache.org/ant/manual/api/" />-->
</javadoc>
</target>
|