diff options
author | Koen Kooi <koen@openembedded.org> | 2005-09-20 12:52:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-20 12:52:57 +0000 |
commit | 90d995735200a842c8d84c4291d441627101bc6b (patch) | |
tree | a005f5d5523f26a166f91ffaeda3ffc8f5cbb1e5 | |
parent | 1d30f92183333983aad0f3c85609d23aa630e7a1 (diff) |
packages/gpe-contacts/: update hildon version to 0.42
packages/gpe-mini-browser/: update hildon version to 0.16
-rw-r--r-- | packages/gpe-contacts/gpe-contacts-hildon_0.42.bb | 12 | ||||
-rw-r--r-- | packages/gpe-mini-browser/gpe-mini-browser-hildon_0.16.bb | 51 |
2 files changed, 63 insertions, 0 deletions
diff --git a/packages/gpe-contacts/gpe-contacts-hildon_0.42.bb b/packages/gpe-contacts/gpe-contacts-hildon_0.42.bb new file mode 100644 index 0000000000..1762800b6d --- /dev/null +++ b/packages/gpe-contacts/gpe-contacts-hildon_0.42.bb @@ -0,0 +1,12 @@ +include gpe-contacts.inc + +PR="r2" +SRC_URI = "${GPE_MIRROR}/gpe-contacts-${PV}.tar.bz2" + +DEPENDS += "gtk+-2.6.4-1.osso7 libgpepimc-hildon libosso hildon-lgpl" +RDEPENDS = "" + +EXTRA_OECONF += "--enable-hildon" + +S = "${WORKDIR}/gpe-contacts-${PV}" + diff --git a/packages/gpe-mini-browser/gpe-mini-browser-hildon_0.16.bb b/packages/gpe-mini-browser/gpe-mini-browser-hildon_0.16.bb new file mode 100644 index 0000000000..14f5313bcc --- /dev/null +++ b/packages/gpe-mini-browser/gpe-mini-browser-hildon_0.16.bb @@ -0,0 +1,51 @@ +PR = "r0" + +SRC_URI = "${GPE_MIRROR}/gpe-mini-browser-${PV}.tar.gz" +DESCRIPTION = "A lightweight webbrowser for the GPE platform (Hildon UI)" +LICENSE = "GPL" +DEPENDS = "osb-nrcit libosso hildon-lgpl hildon-fm libgpewidget" +EXTRA_OECONF = "--enable-hildon" + +S = "${WORKDIR}/gpe-mini-browser-${PV}" + +inherit autotools + +do_install() { + install -d ${D}/usr/share/applications/hildon + install -m 0644 ${S}/hildon/gpe-mini-browser.desktop ${D}/usr/share/applications/hildon/gpe-mini-browser.desktop + install -d ${D}/usr/share/pixmaps + install -m 0644 ${S}/gpe-mini-browser.png ${D}/usr/share/pixmaps/gpe-mini-browser.png + autotools_do_install +} + +pkg_postinst_${PN}-doc () { + #!/bin/sh + if [ "x$D" != "x" ]; then + if [ -e /etc/gpe/gpe-help.conf ]; then + echo gpe-mini-browser= /usr/share/doc/gpe/gpe-mini-browser.html >> /etc/gpe/gpe-help.conf + else + echo [Help] >> /etc/gpe/gpe-help.conf + echo gpe-mini-browser= /usr/share/doc/gpe/gpe-mini-browser.html >> /etc/gpe/gpe-help.conf + fi + if [ -x /usr/bin/gpe-helpindex ]; then + echo generating help-index + gpe-helpindex + else + echo not generating index for gpe-mini-browser + fi + fi +} + +pkg_postrm_${PN}-doc () { + #!/bin/sh + if [ -e /etc/gpe/gpe-help.conf ]; then + sed '/^\<gpe-mini-browser\>/d' /etc/gpe/gpe-help.conf > /tmp/gpe-help.conf + mv /tmp/gpe-help.conf /etc/gpe/gpe-help.conf + fi + if [ -x /usr/bin/gpe-helpindex ]; then + echo generating help-index + gpe-helpindex + else + echo not generating index for gpe-mini-browser + fi +} |