openmoko2.bbclass: add some ugly python foo to get the correct modulename and sourcedir
authorKoen Kooi <koen@openembedded.org>
Mon, 30 Jul 2007 12:15:50 +0000 (12:15 +0000)
committerKoen Kooi <koen@openembedded.org>
Mon, 30 Jul 2007 12:15:50 +0000 (12:15 +0000)
classes/openmoko2.bbclass

index 4675b6a..150448a 100644 (file)
@@ -19,10 +19,17 @@ def openmoko_two_get_subdir(d):
     elif section == "inputmethods": return "inputmethods"
     else: return section
 
+def openmoko_strip_two(d):
+    import bb
+    pname, openmokonumber = bb.data.getVar('PN', d, 1).split("2")
+    return pname
+
+
 LICENSE = "${@openmoko_two_get_license(d)}"
 SUBDIR = "${@openmoko_two_get_subdir(d)}"
+PNAME = "${@openmoko_strip_two(d)}"
 
-SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http"
-S = "${WORKDIR}/${PN}"
+SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PNAME};proto=http"
+S = "${WORKDIR}/${PNAME}"
 
 FILES_${PN} += "${datadir}/icons"