diff options
author | Robert Schuster <robertschuster@fsfe.org> | 2009-09-18 14:01:28 +0200 |
---|---|---|
committer | Robert Schuster <robertschuster@fsfe.org> | 2009-09-18 14:01:28 +0200 |
commit | 6c6d824e983eeab87607c36a4da3ec18d698d116 (patch) | |
tree | 32f7f239d750da8c14b5ef536fa1d3dd78d988b4 /recipes/xalan-j | |
parent | f4a8de9123820855fcb4efd1a1755ead587a7fa7 (diff) |
xalan-j 2.7.1: New recipe (from Jalimo SVN).
xalan-j-native 2.7.1: Dito.
Diffstat (limited to 'recipes/xalan-j')
-rw-r--r-- | recipes/xalan-j/xalan-j-native_2.7.1.bb | 14 | ||||
-rw-r--r-- | recipes/xalan-j/xalan-j_2.7.1.bb | 57 |
2 files changed, 71 insertions, 0 deletions
diff --git a/recipes/xalan-j/xalan-j-native_2.7.1.bb b/recipes/xalan-j/xalan-j-native_2.7.1.bb new file mode 100644 index 0000000000..371362a286 --- /dev/null +++ b/recipes/xalan-j/xalan-j-native_2.7.1.bb @@ -0,0 +1,14 @@ +require xalan-j_${PV}.bb + +DEPENDS = "\ + fastjar-native \ + xerces-j-native regexp-native jlex-native cup-native jaxp1.3-native bcel-native \ + " + +inherit java-native + + +do_install_append() { + : +} + diff --git a/recipes/xalan-j/xalan-j_2.7.1.bb b/recipes/xalan-j/xalan-j_2.7.1.bb new file mode 100644 index 0000000000..2d6d885a70 --- /dev/null +++ b/recipes/xalan-j/xalan-j_2.7.1.bb @@ -0,0 +1,57 @@ +DESCRIPTION = "Java XSLT processor" +LICENSE = "AL2.0" + +AUTHOR = "Apache Software Foundation" +HOMEPAGE = "http://xml.apache.org/xalan-j + +DEPENDS = "fastjar-native xerces-j regexp jlex cup jaxp1.3 bcel" + +SRC_URI = "\ + http://archive.apache.org/dist/xml/${BPN}/${BPN}_2_7_1-src.tar.gz \ + http://archive.apache.org/dist/jakarta/bsf/source/bsf-src-2.4.0.tar.gz \ + " + +S = "${WORKDIR}/${BPN}_2_7_1" + +inherit java-library + +JPN = "libxalan2-java" + +JARFILENAME = "xalan2-${PV}.jar" +ALTJARFILENAMES = "xalan2.jar" + +do_compile() { + mkdir -p build + + oe_makeclasspath cp -s xercesImpl regexp jlex cup bcel jaxp-1.3 + scp="src:${WORKDIR}/bsf-2.4.0/src" + + javac -J-Xmx512M -sourcepath $scp -cp $cp -d build `find src -name \*.java` + (cd src && find org -name "*.properties" -exec cp {} ../build/{} \;) + + # Remove BSF classes + rm -rf build-xalan/org/apache/bsf + + mkdir -p build-serializer/org/apache/xml + mv build/org/apache/xml/serializer build-serializer/org/apache/xml + + fastjar -C build -c -f ${JARFILENAME} . + fastjar -C build-serializer -c -f serializer-${PV}.jar . +} + +do_install_append() { + oe_jarinstall serializer-${PV}.jar serializer.jar + + # Like Debian we provide a symlink called xml-apis pointing to the JAXP + # classes. + ln -sf ${D}${datadir_java}/xml-apis.jar jaxp-1.3.jar +} + +do_stage_append() { + oe_jarinstall -s serializer-${PV}.jar serializer.jar +} + +PACKAGES = "libxalan2-serializer-java ${JPN}" + +FILES_libxalan2-serializer-java = "${datadir_java}/serializer*.jar" + |