classpath-initial 0.93: Fixed installation locations.
authorRobert Schuster <thebohemian@gmx.net>
Sun, 5 Oct 2008 15:31:06 +0000 (15:31 +0000)
committerRobert Schuster <thebohemian@gmx.net>
Sun, 5 Oct 2008 15:31:06 +0000 (15:31 +0000)
packages/classpath/classpath-initial_0.93.bb
packages/classpath/classpath-native_0.97.2.bb

index 59a36b6..5a471b3 100644 (file)
@@ -5,7 +5,7 @@ require classpath-native.inc
 
 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"
 
@@ -23,7 +23,7 @@ EXTRA_OECONF = "\
   --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 \
   "
index cec256e..3046ff4 100644 (file)
@@ -1,6 +1,6 @@
 require classpath-native.inc
 
-PR = "r2"
+PR = "r3"
 
 # The code affected by the javanet-local patch
 # is usually not compiled. However if someone changes
@@ -16,3 +16,16 @@ SRC_URI += "\
   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
+