aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/obsolete/classes/openmoko-base.bbclass
blob: b5459d506640ad59498d4f1e1524fbcf7404704f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"