openmoko: added classes needed by openmoko-libs

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2134 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2007-07-09 14:21:05 +00:00
parent d2486ddb0e
commit 8541584ddd
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,20 @@
HOMEPAGE = "http://www.openmoko.org"
LICENSE ?= "GPL"
OPENMOKO_RELEASE ?= "OM-2007"
OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk"
def openmoko_base_get_subdir(d):
import bb
openmoko, section = bb.data.getVar('SECTION', d, 1).split("/")
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"

View File

@ -0,0 +1,3 @@
inherit openmoko-base autotools pkgconfig
DEPENDS_prepend = "${@["openmoko-libs ", ""][(bb.data.getVar('PN', d, 1) == 'openmoko-libs')]}"