1 |
#! /bin/sh /usr/share/dpatch/dpatch-run |
2 |
## 01_buildxml.dpatch by <gregor+debian@comodo.priv.at> |
3 |
## |
4 |
## All lines beginning with `## DP:' are a description of the patch. |
5 |
## DP: comment out "propertyfile" in build.xml |
6 |
|
7 |
@DPATCH@ |
8 |
diff -urNad libpdfbox-java~/build.xml libpdfbox-java/build.xml |
9 |
--- libpdfbox-java~/build.xml 2007-05-17 22:34:43.000000000 +0200 |
10 |
+++ libpdfbox-java/build.xml 2007-08-20 16:53:56.000000000 +0200 |
11 |
@@ -45,6 +45,7 @@ |
12 |
|
13 |
<property name="junit.jar" value="${jar.dir}/junit.jar" /> |
14 |
|
15 |
+ <property name="testoutput-parent.dir" value="test"/> |
16 |
<property name="testoutput.dir" value="test/output"/> |
17 |
|
18 |
<property name="file" value=""/> |
19 |
@@ -67,7 +68,9 @@ |
20 |
<delete dir="${lib.dir}"/> |
21 |
<delete dir="${bin.dir}"/> |
22 |
<delete file="checkstyle.cache" /> |
23 |
- <delete dir="${testoutput.dir}"/> |
24 |
+ <delete dir="${testoutput-parent.dir}"/> |
25 |
+ <delete dir="${dist.dir}"/> |
26 |
+ <delete dir="${website.build.dir}"/> |
27 |
</target> |
28 |
|
29 |
<target name="pdfbox.init"> |
30 |
@@ -160,9 +163,11 @@ |
31 |
|
32 |
<target name="package" depends="compile" description="Package pdfbox into a jar file"> |
33 |
<property name="release.name" value="${project.name}-${project.version}" /> |
34 |
+ <!-- |
35 |
<propertyfile file="${resources.dir}/pdfbox.version"> |
36 |
<entry key="pdfbox.version" value="${release.name}"/> |
37 |
</propertyfile> |
38 |
+ --> |
39 |
|
40 |
<jar jarfile="./lib/${release.name}.jar"> |
41 |
<fileset dir="${dest.dir}"> |
42 |
@@ -404,8 +409,8 @@ |
43 |
classpathref="build.classpath" |
44 |
encoding="ISO-8859-1" |
45 |
breakiterator="yes"> |
46 |
- <link href="http://java.sun.com/j2se/1.4.2/docs/api/"/> |
47 |
- <link href="http://jakarta.apache.org/lucene/docs/api/" /> |
48 |
+ <!--<link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>--> |
49 |
+ <!--<link href="http://jakarta.apache.org/lucene/docs/api/" />--> |
50 |
<!--<link href="http://jakarta.apache.org/ant/manual/api/" />--> |
51 |
</javadoc> |
52 |
</target> |
53 |
@@ -418,4 +423,4 @@ |
54 |
<antcall target="site"/> |
55 |
</target> |
56 |
|
57 |
-</project> |
58 |
\ No newline at end of file |
59 |
+</project> |