From 3b2dd54a4a7fc0c951cf9e6f7b1db0c6a22637c6 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 19 Oct 2010 09:44:01 +0200 Subject: openmoko: obsolete old openmoko classes and recipes using those Acked-by: Michael 'Mickey' Lauer Acked-by: Frans Meulenbroeks Signed-off-by: Martin Jansa --- recipes/obsolete/classes/openmoko2.bbclass | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 recipes/obsolete/classes/openmoko2.bbclass (limited to 'recipes/obsolete/classes/openmoko2.bbclass') diff --git a/recipes/obsolete/classes/openmoko2.bbclass b/recipes/obsolete/classes/openmoko2.bbclass new file mode 100644 index 0000000000..25dea8232c --- /dev/null +++ b/recipes/obsolete/classes/openmoko2.bbclass @@ -0,0 +1,37 @@ +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): + if bb.data.getVar('SECTION', d, 1).find("/") != -1: + openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") + else: + section = bb.data.getVar('SECTION', d, 1) + return "LGPL GPL".split()[section != "libs"] + +def openmoko_two_get_subdir(d): + if bb.data.getVar('SECTION', d, 1).find("/") != -1: + openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") + else: + section = bb.data.getVar('SECTION', d, 1) + 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}" -- cgit 1.2.3-korg