[oe-commits] Robert Schuster : xalan-j 2.7.1: New recipe (from Jalimo SVN).

git version control git at git.openembedded.org
Fri Sep 18 12:02:05 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 6c6d824e983eeab87607c36a4da3ec18d698d116
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6c6d824e983eeab87607c36a4da3ec18d698d116

Author: Robert Schuster <robertschuster at fsfe.org>
Date:   Fri Sep 18 14:01:28 2009 +0200

xalan-j 2.7.1: New recipe (from Jalimo SVN).
xalan-j-native 2.7.1: Dito.

---

 recipes/xalan-j/xalan-j-native_2.7.1.bb |   14 +++++++
 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 0000000..371362a
--- /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 0000000..2d6d885
--- /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"
+





More information about the Openembedded-commits mailing list