mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 03:50:45 +02:00
gnu: Add java-xerces.
* gnu/packages/java.scm (java-xerces): New variable. * gnu/packages/patches/java-xerces-bootclasspath.patch: New file. * gnu/packages/patches/java-xerces-build_dont_unzip.patch: New file. * gnu/packages/patches/java-xerces-xjavac_taskdef.patch: New file. * gnu/local.mk (dist_patch_DATA): Add them.
This commit is contained in:
parent
9a86ee788d
commit
6d0368eb84
5 changed files with 217 additions and 10 deletions
45
gnu/packages/patches/java-xerces-xjavac_taskdef.patch
Normal file
45
gnu/packages/patches/java-xerces-xjavac_taskdef.patch
Normal file
|
@ -0,0 +1,45 @@
|
|||
This patch eliminates the need for providing "xjavac", which saves building a
|
||||
package for the unmaintained "xerces-tools".
|
||||
|
||||
Taken from https://anonscm.debian.org/viewvc/pkg-java/trunk/libxerces2-java/debian/patches/01_xjavac_taskdef.patch?revision=14507
|
||||
|
||||
Index: b/build.xml
|
||||
===================================================================
|
||||
--- a/build.xml
|
||||
+++ b/build.xml
|
||||
@@ -39,7 +39,7 @@
|
||||
<property name="tools.dir" value="./tools"/>
|
||||
|
||||
<!-- enable compilation under JDK 1.4 and above -->
|
||||
- <taskdef name="xjavac" classname="org.apache.xerces.util.XJavac">
|
||||
+ <taskdef name="xjavac" classname="org.apache.tools.ant.taskdefs.Javac">
|
||||
<classpath>
|
||||
<pathelement location="${tools.dir}/bin/xjavac.jar"/>
|
||||
</classpath>
|
||||
@@ -291,7 +291,7 @@
|
||||
source="${javac.source}"
|
||||
target="${javac.target}"
|
||||
classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}"
|
||||
- debug="${debug}"
|
||||
+ debug="${debug}" nowarn="true"
|
||||
debuglevel="${debuglevel}"
|
||||
deprecation="${deprecation}"
|
||||
optimize="${optimize}"
|
||||
@@ -359,7 +359,7 @@
|
||||
source="${javac.source}"
|
||||
target="${javac.target}"
|
||||
classpath="${build.dir}/classes:${tools.dir}/${jar.apis}"
|
||||
- debug="${debug}"
|
||||
+ debug="${debug}" nowarn="true"
|
||||
debuglevel="${debuglevel}"
|
||||
includeAntRuntime="false"
|
||||
includeJavaRuntime="true"/>
|
||||
@@ -379,7 +379,7 @@
|
||||
source="${javac.source}"
|
||||
target="${javac.target}"
|
||||
classpath="${tools.dir}/${jar.apis}:${build.dir}/classes:./tools/junit.jar"
|
||||
- debug="${debug}"
|
||||
+ debug="${debug}" nowarn="true"
|
||||
debuglevel="${debuglevel}"
|
||||
includeAntRuntime="false"
|
||||
includeJavaRuntime="true"/>
|
Loading…
Add table
Add a link
Reference in a new issue