aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-10-19 09:44:01 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2010-10-19 22:32:16 +0200
commit3b2dd54a4a7fc0c951cf9e6f7b1db0c6a22637c6 (patch)
treefed512b5271db35e8a461afb094b6778695ee9fc /classes
parent83847370bdcd13cc39adfbc1a1109584efc7fe00 (diff)
downloadopenembedded-3b2dd54a4a7fc0c951cf9e6f7b1db0c6a22637c6.tar.gz
openmoko: obsolete old openmoko classes and recipes using those
Acked-by: Michael 'Mickey' Lauer <mickey@openmoko.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/openmoko-base.bbclass22
-rw-r--r--classes/openmoko.bbclass3
-rw-r--r--classes/openmoko2.bbclass37
3 files changed, 0 insertions, 62 deletions
diff --git a/classes/openmoko-base.bbclass b/classes/openmoko-base.bbclass
deleted file mode 100644
index b5459d5066..0000000000
--- a/classes/openmoko-base.bbclass
+++ /dev/null
@@ -1,22 +0,0 @@
-HOMEPAGE = "http://www.openmoko.org"
-LICENSE ?= "GPL"
-OPENMOKO_RELEASE ?= "OM-2007.2"
-OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk"
-
-def openmoko_base_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' or section == 'libs': return ""
- elif section in 'apps tools pim'.split(): return "applications"
- elif section == "panel-plugin": return "panel-plugins"
- elif section == "inputmethods": return "inputmethods"
- else: return section
-
-SUBDIR = "${@openmoko_base_get_subdir(d)}"
-
-SRC_URI = "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http"
-S = "${WORKDIR}/${PN}"
-
-FILES_${PN} += "${datadir}/icons"
diff --git a/classes/openmoko.bbclass b/classes/openmoko.bbclass
deleted file mode 100644
index 808ab8fcb6..0000000000
--- a/classes/openmoko.bbclass
+++ /dev/null
@@ -1,3 +0,0 @@
-inherit openmoko-base autotools pkgconfig
-
-DEPENDS_prepend = "${@["openmoko-libs ", ""][(bb.data.getVar('PN', d, 1) == 'openmoko-libs')]}"
diff --git a/classes/openmoko2.bbclass b/classes/openmoko2.bbclass
deleted file mode 100644
index 25dea8232c..0000000000
--- a/classes/openmoko2.bbclass
+++ /dev/null
@@ -1,37 +0,0 @@
-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}"