DESCRIPTION="Java1.4-compatible GNU Classpath variant that is used as bootclasspath for jikes-native."
-PR = "r3"
+PR = "r4"
DEPENDS = "zip-native fastjar-native jikes-native gettext-native"
--disable-dssi \
--disable-examples \
--disable-tools \
- --with-glibj-dir=${STAGING_DATADIR}/classpath-initial \
- --with-native-libdir=${STAGING_LIBDIR}/classpath-initial \
- --includedir=${STAGING_INCDIR}/classpath-initial \
+ --with-glibj-dir=${STAGING_DATADIR_NATIVE}/classpath-initial \
+ --with-native-libdir=${STAGING_LIBDIR_NATIVE}/classpath-initial \
+ --includedir=${STAGING_INCDIR_NATIVE}/classpath-initial \
"
require classpath-native.inc
-PR = "r2"
+PR = "r3"
# The code affected by the javanet-local patch
# is usually not compiled. However if someone changes
file://cp-byte-loophelper.patch;patch=1;pnum=0 \
"
+do_unpackpost() {
+ # Kind of patch: Moves package "org.w3c.dom.html2" to "org.w3c.dom.html"
+ mv external/w3c_dom/org/w3c/dom/html2 \
+ external/w3c_dom/org/w3c/dom/html
+
+ find gnu/classpath/examples/html gnu/xml/dom/html2 external/w3c_dom/org/w3c/dom/html -name "*.java" \
+ -exec sed -i -e"s|org.w3c.dom.html2|org.w3c.dom.html|" {} \;
+
+ sed -i -e"s|org/w3c/dom/html2|org/w3c/dom/html|" external/w3c_dom/Makefile.am
+}
+
+addtask unpackpost after do_unpack before do_patch
+