summaryrefslogtreecommitdiffstats
path: root/meta/classes/openmoko-base.bbclass
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-07-09 14:21:05 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-07-09 14:21:05 +0000
commit8541584dddf8481ed57203529a86f1f474af6036 (patch)
treee1de87334d965a3d38fee78c0348e7062c74b29f /meta/classes/openmoko-base.bbclass
parentd2486ddb0e834ee5d875c17adbc4eae708c583c2 (diff)
downloadpoky-8541584dddf8481ed57203529a86f1f474af6036.tar.gz
openmoko: added classes needed by openmoko-libs
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2134 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/openmoko-base.bbclass')
-rw-r--r--meta/classes/openmoko-base.bbclass20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/classes/openmoko-base.bbclass b/meta/classes/openmoko-base.bbclass
new file mode 100644
index 0000000000..8643daa7a4
--- /dev/null
+++ b/meta/classes/openmoko-base.bbclass
@@ -0,0 +1,20 @@
1HOMEPAGE = "http://www.openmoko.org"
2LICENSE ?= "GPL"
3OPENMOKO_RELEASE ?= "OM-2007"
4OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk"
5
6def openmoko_base_get_subdir(d):
7 import bb
8 openmoko, section = bb.data.getVar('SECTION', d, 1).split("/")
9 if section == 'base' or section == 'libs': return ""
10 elif section in 'apps tools pim'.split(): return "applications"
11 elif section == "panel-plugin": return "panel-plugins"
12 elif section == "inputmethods": return "inputmethods"
13 else: return section
14
15SUBDIR = "${@openmoko_base_get_subdir(d)}"
16
17SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http"
18S = "${WORKDIR}/${PN}"
19
20FILES_${PN} += "${datadir}/icons"