diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/opie-pics | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/opie-pics')
-rw-r--r-- | recipes/opie-pics/opie-pics.inc | 30 | ||||
-rw-r--r-- | recipes/opie-pics/opie-pics_1.2.2.bb | 6 | ||||
-rw-r--r-- | recipes/opie-pics/opie-pics_1.2.3.bb | 8 | ||||
-rw-r--r-- | recipes/opie-pics/opie-pics_1.2.4.bb | 8 | ||||
-rw-r--r-- | recipes/opie-pics/opie-pics_cvs.bb | 7 |
5 files changed, 59 insertions, 0 deletions
diff --git a/recipes/opie-pics/opie-pics.inc b/recipes/opie-pics/opie-pics.inc new file mode 100644 index 0000000000..68dbcb930b --- /dev/null +++ b/recipes/opie-pics/opie-pics.inc @@ -0,0 +1,30 @@ +DESCRIPTION = "Common Opie pictures usable from all applications" +SECTION = "opie/base" +PRIORITY = "optional" +LICENSE = "GPL" +PR = "r2" + +S = "${WORKDIR}" + +SHIP_INLINE_PICS = "yes" +INLINE_PICS = '${@base_conditional("GUI_MACHINE_CLASS", "bigscreen", "pics-hires/inline", "pics/inline", d)}' + +do_install() { + install -d ${D}${palmtopdir}/pics/addressbook/ + install -d ${D}${palmtopdir}/pics/datebook/ + install -d ${D}${palmtopdir}/pics/todo/ + install -d ${D}${palmtopdir}/pics/opie/ + install -m 0664 pics/*.png ${D}${palmtopdir}/pics/ + install -m 0664 pics/addressbook/*.png ${D}${palmtopdir}/pics/addressbook/ + install -m 0664 pics/datebook/*.png ${D}${palmtopdir}/pics/datebook/ + install -m 0664 pics/todo/*.png ${D}${palmtopdir}/pics/todo/ + install -m 0664 pics/opie/*.png ${D}${palmtopdir}/pics/opie/ + + if [ "${SHIP_INLINE_PICS}" == "yes" ]; then + install -m 0664 ${INLINE_PICS}/*.png ${D}${palmtopdir}/pics/ + fi +} + +FILES_${PN} = "${palmtopdir}" +PACKAGE_ARCH = "${MACHINE_ARCH}" + diff --git a/recipes/opie-pics/opie-pics_1.2.2.bb b/recipes/opie-pics/opie-pics_1.2.2.bb new file mode 100644 index 0000000000..5ca408ea5e --- /dev/null +++ b/recipes/opie-pics/opie-pics_1.2.2.bb @@ -0,0 +1,6 @@ +require ${PN}.inc + +TAG = "${@'v' + bb.data.getVar('PV',d,1).replace('.', '_')}" + +SRC_URI = "${HANDHELDS_CVS};tag=${TAG};module=opie/pics \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/pics-hires" diff --git a/recipes/opie-pics/opie-pics_1.2.3.bb b/recipes/opie-pics/opie-pics_1.2.3.bb new file mode 100644 index 0000000000..2c199b73fc --- /dev/null +++ b/recipes/opie-pics/opie-pics_1.2.3.bb @@ -0,0 +1,8 @@ +require ${PN}.inc + +PR = "r1" + +TAG = "${@'v' + bb.data.getVar('PV',d,1).replace('.', '_')}" + +SRC_URI = "${HANDHELDS_CVS};tag=${TAG};module=opie/pics \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/pics-hires" diff --git a/recipes/opie-pics/opie-pics_1.2.4.bb b/recipes/opie-pics/opie-pics_1.2.4.bb new file mode 100644 index 0000000000..7cbe65504d --- /dev/null +++ b/recipes/opie-pics/opie-pics_1.2.4.bb @@ -0,0 +1,8 @@ +require ${PN}.inc + +PR = "r0" + +TAG = "${@'v' + bb.data.getVar('PV',d,1).replace('.', '_')}" + +SRC_URI = "${HANDHELDS_CVS};tag=${TAG};module=opie/pics \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/pics-hires" diff --git a/recipes/opie-pics/opie-pics_cvs.bb b/recipes/opie-pics/opie-pics_cvs.bb new file mode 100644 index 0000000000..08aa9ede5c --- /dev/null +++ b/recipes/opie-pics/opie-pics_cvs.bb @@ -0,0 +1,7 @@ +require ${PN}.inc + +PV = "${OPIE_CVS_PV}" +PR = "r2" + +SRC_URI = "${HANDHELDS_CVS};module=opie/pics \ + ${HANDHELDS_CVS};module=opie/pics-hires" |