diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-08-28 09:52:39 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-08-28 09:52:39 +0000 |
commit | 8d3cf28989e44d78844bac4745c0d36c559ae6c9 (patch) | |
tree | 6d600bb9c5fe33d8b9cc31dd559848d229e299a5 /meta/classes/openmoko2.bbclass | |
parent | 4aa6b1451f5afbc4861561c96777b039eaec4fc3 (diff) | |
download | openembedded-core-8d3cf28989e44d78844bac4745c0d36c559ae6c9.tar.gz openembedded-core-8d3cf28989e44d78844bac4745c0d36c559ae6c9.tar.bz2 openembedded-core-8d3cf28989e44d78844bac4745c0d36c559ae6c9.zip |
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.bbclass | 33 |
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 @@ +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" + elif section == "daemons": return "daemons" + elif section == "misc": return "misc" + 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" + +# SVNREV = "r${SRCREV}" +SVNREV = "${SRCDATE}" |