summaryrefslogtreecommitdiffstats
path: root/meta/classes/openmoko2.bbclass
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-08-28 09:52:39 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-08-28 09:52:39 +0000
commit8d3cf28989e44d78844bac4745c0d36c559ae6c9 (patch)
tree6d600bb9c5fe33d8b9cc31dd559848d229e299a5 /meta/classes/openmoko2.bbclass
parent4aa6b1451f5afbc4861561c96777b039eaec4fc3 (diff)
downloadpoky-8d3cf28989e44d78844bac4745c0d36c559ae6c9.tar.gz
openmoko2.bbclass: taken from OE for updated OpenMoko 2007.2 recipes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2564 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/openmoko2.bbclass')
-rw-r--r--meta/classes/openmoko2.bbclass33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/classes/openmoko2.bbclass b/meta/classes/openmoko2.bbclass
new file mode 100644
index 0000000000..872dd4915c
--- /dev/null
+++ b/meta/classes/openmoko2.bbclass
@@ -0,0 +1,33 @@
1inherit autotools pkgconfig
2
3HOMEPAGE = "http://www.openmoko.org"
4OPENMOKO_RELEASE ?= "OM-2007.2"
5OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk"
6
7def openmoko_two_get_license(d):
8 import bb
9 openmoko, section = bb.data.getVar('SECTION', d, 1).split("/")
10 return "LGPL GPL".split()[section != "libs"]
11
12def openmoko_two_get_subdir(d):
13 import bb
14 openmoko, section = bb.data.getVar('SECTION', d, 1).split("/")
15 if section == 'base': return ""
16 elif section == 'libs': return "libraries"
17 elif section in 'apps tools pim'.split(): return "applications"
18 elif section == "panel-plugin": return "panel-plugins"
19 elif section == "inputmethods": return "inputmethods"
20 elif section == "daemons": return "daemons"
21 elif section == "misc": return "misc"
22 else: return section
23
24LICENSE = "${@openmoko_two_get_license(d)}"
25SUBDIR = "${@openmoko_two_get_subdir(d)}"
26
27SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http"
28S = "${WORKDIR}/${PN}"
29
30FILES_${PN} += "${datadir}/icons"
31
32# SVNREV = "r${SRCREV}"
33SVNREV = "${SRCDATE}"