Package: libtablelayout-java / 20090826-1

debian-changes-20090826-1 Patch series | download
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Description: Upstream changes introduced in version 20090826-1
 This patch has been created by dpkg-source during the package build.
 Here's the last changelog entry, hopefully it gives details on why
 those changes were made:
 .
 libtablelayout-java (20090826-1) unstable; urgency=low
 .
   * new upstream version
     - new license
   * Add patch to change the package namespace from info.clearthought.layout to
     org.debian.tablelayout due to license issues.
   * Move package to main.
   * Fix Vcs-* headers.
   * Update Standards-Version: 3.8.3.
   * Switch to dpkg-source 3.0 (quilt) format.
   * Fix repackaging the source jar into a tarball.
 .
 The person named in the Author field signed this changelog entry.
Author: Torsten Werner <twerner@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- /dev/null
+++ libtablelayout-java-20090826/build.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="tablelayout" basedir=".">
+  <property file="build.properties"/>
+
+  <target name="clean" description="Clean up">
+    <delete dir="${class.dir}"/>
+    <delete file="${jar.name}"/>
+  </target>
+
+  <target name="compile" description="Compile the sources">
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+      deprecation="true" debug="true" optimize="false"/>
+  </target>
+
+  <target name="javadoc" description="Creates Javadoc documentation">
+    <mkdir dir="${doc.dir}"/>
+    <javadoc packagenames="org.debian.tablelayout.*"
+      sourcepath="${source.dir}" destdir="${doc.dir}"/>
+  </target>
+
+  <target name="jar" description="Create the jar" depends="compile,javadoc">
+    <jar jarfile="${jar.name}" basedir="${class.dir}"/>
+  </target>
+
+  <target name="install" depends="jar">
+     <mkdir dir="${destdir}/usr/share/java/" />
+     <copy file="${jar.name}" todir="${destdir}/usr/share/java/"/>
+  </target>
+</project>
--- /dev/null
+++ libtablelayout-java-20090826/build.properties
@@ -0,0 +1,4 @@
+class.dir=build
+doc.dir=doc
+source.dir=src
+jar.name=tablelayout.jar