From: Koen Kooi Date: Mon, 30 Jul 2007 12:15:50 +0000 (+0000) Subject: openmoko2.bbclass: add some ugly python foo to get the correct modulename and sourcedir X-Git-Tag: Release-2010-05/1~8868^2~73 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22e8cbdc0a528809d27b957dcf5d36ea746ff6a9;p=openembedded.git openmoko2.bbclass: add some ugly python foo to get the correct modulename and sourcedir --- diff --git a/classes/openmoko2.bbclass b/classes/openmoko2.bbclass index 4675b6a10e..150448a2e5 100644 --- a/classes/openmoko2.bbclass +++ b/classes/openmoko2.bbclass @@ -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"