diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-07-30 11:33:52 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-07-30 11:33:52 +0000 |
commit | e5755be56a5c005615a0721ed6848694c18bebba (patch) | |
tree | cd35ff132d2410d77d66008b89645148a015be27 /classes/openmoko2.bbclass | |
parent | 929f61d2aef5cf85e6d88cdbcf542c838a03bf34 (diff) |
add openmoko2.bbclass, thanks Koen for spotting
Diffstat (limited to 'classes/openmoko2.bbclass')
-rw-r--r-- | classes/openmoko2.bbclass | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/classes/openmoko2.bbclass b/classes/openmoko2.bbclass new file mode 100644 index 0000000000..4675b6a10e --- /dev/null +++ b/classes/openmoko2.bbclass @@ -0,0 +1,28 @@ +inherit autotools pkgconfig + +HOMEPAGE = "http://www.openmoko.org" +OPENMOKO_RELEASE ?= "OM-2007.2" +OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk" + +def openmoko_two_get_license(d): + import bb + openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") + return "LGPL GPL".split()[section != "libs"] + +def openmoko_two_get_subdir(d): + import bb + openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") + if section == 'base': return "" + elif section == 'libs': return "libraries" + elif section in 'apps tools pim'.split(): return "applications" + elif section == "panel-plugin": return "panel-plugins" + elif section == "inputmethods": return "inputmethods" + else: return section + +LICENSE = "${@openmoko_two_get_license(d)}" +SUBDIR = "${@openmoko_two_get_subdir(d)}" + +SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http" +S = "${WORKDIR}/${PN}" + +FILES_${PN} += "${datadir}/icons" |