diff options
author | Koen Kooi <koen@openembedded.org> | 2007-02-14 17:06:09 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-02-14 17:06:09 +0000 |
commit | 7f6c2cb77774eda984c1ec8517bd56e04a62239e (patch) | |
tree | 3df4daba879a76dfc92b66f323f2d00d11d2297e /classes/openmoko-base.bbclass | |
parent | 2a49beee973cefc70b164d92b95a8f74973a67df (diff) |
openmoko*.bbclass: add classes from openmoko svn
* I'm not sure if I like distro revisions in bbclasses
Diffstat (limited to 'classes/openmoko-base.bbclass')
-rw-r--r-- | classes/openmoko-base.bbclass | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/classes/openmoko-base.bbclass b/classes/openmoko-base.bbclass new file mode 100644 index 0000000000..7a274b0d2c --- /dev/null +++ b/classes/openmoko-base.bbclass @@ -0,0 +1,19 @@ +HOMEPAGE = "http://www.openmoko.org" +LICENSE ?= "GPL" +OPENMOKO_RELEASE ?= "OM-2007" +OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk" + +def openmoko_base_get_subdir(d): + import bb + openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") + if section == 'base' or section == 'libs': return "" + elif section in 'apps tools pim'.split(): return "applications" + elif section == "panel-plugin": return "panel-plugins" + else: return section + +SUBDIR = "${@openmoko_base_get_subdir(d)}" + +SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=https" +S = "${WORKDIR}/${PN}" + +FILES_${PN} += "${datadir}/icons" |