diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-07-09 14:21:05 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-07-09 14:21:05 +0000 |
commit | 8541584dddf8481ed57203529a86f1f474af6036 (patch) | |
tree | e1de87334d965a3d38fee78c0348e7062c74b29f | |
parent | d2486ddb0e834ee5d875c17adbc4eae708c583c2 (diff) | |
download | openembedded-core-8541584dddf8481ed57203529a86f1f474af6036.tar.gz openembedded-core-8541584dddf8481ed57203529a86f1f474af6036.tar.bz2 openembedded-core-8541584dddf8481ed57203529a86f1f474af6036.tar.xz openembedded-core-8541584dddf8481ed57203529a86f1f474af6036.zip |
openmoko: added classes needed by openmoko-libs
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2134 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/openmoko-base.bbclass | 20 | ||||
-rw-r--r-- | meta/classes/openmoko.bbclass | 3 |
2 files changed, 23 insertions, 0 deletions
diff --git a/meta/classes/openmoko-base.bbclass b/meta/classes/openmoko-base.bbclass new file mode 100644 index 000000000..8643daa7a --- /dev/null +++ b/meta/classes/openmoko-base.bbclass @@ -0,0 +1,20 @@ +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" + elif section == "inputmethods": return "inputmethods" + else: return section + +SUBDIR = "${@openmoko_base_get_subdir(d)}" + +SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http" +S = "${WORKDIR}/${PN}" + +FILES_${PN} += "${datadir}/icons" diff --git a/meta/classes/openmoko.bbclass b/meta/classes/openmoko.bbclass new file mode 100644 index 000000000..808ab8fcb --- /dev/null +++ b/meta/classes/openmoko.bbclass @@ -0,0 +1,3 @@ +inherit openmoko-base autotools pkgconfig + +DEPENDS_prepend = "${@["openmoko-libs ", ""][(bb.data.getVar('PN', d, 1) == 'openmoko-libs')]}" |