summaryrefslogtreecommitdiff
path: root/jfreereport/patches/flute.patch
diff options
context:
space:
mode:
Diffstat (limited to 'jfreereport/patches/flute.patch')
-rw-r--r--jfreereport/patches/flute.patch69
1 files changed, 67 insertions, 2 deletions
diff --git a/jfreereport/patches/flute.patch b/jfreereport/patches/flute.patch
index 9599e9175da4..f06f2a630a63 100644
--- a/jfreereport/patches/flute.patch
+++ b/jfreereport/patches/flute.patch
@@ -1,5 +1,5 @@
-*** misc/flute/ant/build.properties Sun Dec 3 18:56:06 2006
---- misc/build/flute/ant/build.properties Fri Jul 27 09:07:03 2007
+*** misc/flute/ant/build.properties Thu Oct 18 08:20:03 2007
+--- misc/build/flute/ant/build.properties Thu Oct 18 14:07:28 2007
***************
*** 14,21 ****
@@ -19,3 +19,68 @@
#
# All path settings are relative to the project root directory
+*** misc/flute/ant/build.xml Thu Oct 18 08:20:03 2007
+--- misc/build/flute/ant/build.xml Mon Oct 22 09:13:22 2007
+***************
+*** 19,26 ****
+ </path>
+ <isClassAndFileAvailable class-name="org.w3c.css.sac.Parser"
+ property-name="core.Enabled"
+! file-name="${libdir}/${sac-jar-file}"
+! classpath-id="core.Classpath"/>
+ <fail unless="core.Enabled"/>
+
+ </target>
+--- 19,25 ----
+ </path>
+ <isClassAndFileAvailable class-name="org.w3c.css.sac.Parser"
+ property-name="core.Enabled"
+! file-name="${libdir}/${sac-jar-file}"/>
+ <fail unless="core.Enabled"/>
+
+ </target>
+***************
+*** 38,59 ****
+
+ <target name="compile" depends="initialise">
+
+! <fileset dir="source/" id="core.SourceFiles">
+! <exclude name="**/junit/**"/>
+! <include name="**/*.java"/>
+! </fileset>
+!
+! <fileset dir="source/" id="core.ResourceFiles">
+! <exclude name="**/junit/**"/>
+! <include name="**/*.properties"/>
+! <include name="**/*.jj"/>
+! </fileset>
+!
+! <build-core target-jar="${flute-jar-file}"
+! source-files-id="core.SourceFiles"
+! resource-files-id="core.ResourceFiles"
+! classpath-id="core.Classpath">
+! </build-core>
+ </target>
+
+
+--- 37,56 ----
+
+ <target name="compile" depends="initialise">
+
+! <build-all target-jar="${flute-jar-file}" source-dir="source">
+! <all-classpath>
+! <pathelement location="${libdir}/${sac-jar-file}"/>
+! </all-classpath>
+! <all-sources>
+! <exclude name="**/junit/**"/>
+! <include name="**/*.java"/>
+! </all-sources>
+! <all-resources>
+! <exclude name="**/junit/**"/>
+! <include name="**/*.properties"/>
+! <include name="**/*.jj"/>
+! </all-resources>
+! </build-all>
+ </target>
+
+