[pkg-java] r4850 - trunk/libezmorph-java/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Mon Nov 26 15:39:54 UTC 2007


Author: twerner
Date: 2007-11-26 15:39:54 +0000 (Mon, 26 Nov 2007)
New Revision: 4850

Added:
   trunk/libezmorph-java/debian/ant.properties
   trunk/libezmorph-java/debian/build.xml
Modified:
   trunk/libezmorph-java/debian/
   trunk/libezmorph-java/debian/control
Log:
the package builds now



Property changes on: trunk/libezmorph-java/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/libezmorph-java/debian/ant.properties
===================================================================
--- trunk/libezmorph-java/debian/ant.properties	                        (rev 0)
+++ trunk/libezmorph-java/debian/ant.properties	2007-11-26 15:39:54 UTC (rev 4850)
@@ -0,0 +1,4 @@
+project.name=ezmorph
+class.dir=build
+source.dir=.
+jar=ezmorph.jar

Added: trunk/libezmorph-java/debian/build.xml
===================================================================
--- trunk/libezmorph-java/debian/build.xml	                        (rev 0)
+++ trunk/libezmorph-java/debian/build.xml	2007-11-26 15:39:54 UTC (rev 4850)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+
+  <target name="clean">
+    <delete dir="${class.dir}" quiet="true"/>
+  </target>
+
+  <target name="compile" description="o Compile the source files">
+    <mkdir dir="${class.dir}"/>
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+      debug="true" source="1.5"/>
+  </target>
+
+  <target name="jar" description="o Create the jar" depends="compile">
+    <jar jarfile="${jar}">
+      <fileset dir="${class.dir}">
+          <include name="**"/>
+      </fileset>
+    </jar>
+  </target>
+
+</project>

Modified: trunk/libezmorph-java/debian/control
===================================================================
--- trunk/libezmorph-java/debian/control	2007-11-26 15:33:28 UTC (rev 4849)
+++ trunk/libezmorph-java/debian/control	2007-11-26 15:39:54 UTC (rev 4850)
@@ -4,7 +4,8 @@
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
 Uploaders: Torsten Werner <twerner at debian.org>
 Build-Depends: debhelper (>= 5), cdbs
-Build-Depends-Indep: ant, java-gcj-compat-dev
+Build-Depends-Indep: ant, java-gcj-compat-dev, libcommons-lang-java,
+ libcommons-beanutils-java, libcommons-logging-java, junit4
 Standards-Version: 3.7.2
 Homepage: http://ezmorph.sourceforge.net
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libezmorph-java




More information about the pkg-java-commits mailing list