diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-08-28 11:46:43 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-09-01 13:46:04 -0700 |
commit | 87350d079f980c84bba2bb4acdc3a598dc3de279 (patch) | |
tree | 12ef150c9c7b0cfa8d362495d9da5fd91986a754 /recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb | |
parent | 4bbb807bf585dac8cd0d3f555c7344a09bbe5bea (diff) |
recipes: Move some recipes to nonworking for getting bitbake world.
* If a recipes has DEPENDS on another recipe which is nonworking
then move the recipe in question to nonworking too.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb')
-rw-r--r-- | recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb b/recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb new file mode 100644 index 0000000000..5499ca34cb --- /dev/null +++ b/recipes/nonworking/gpe-mini-browser/gpe-mini-browser_0.17.bb @@ -0,0 +1,54 @@ +require gpe-mini-browser.inc + +SRC_URI = "ftp://ftp.handhelds.org/projects/gpe/source/gpe-mini-browser-${PV}.tar.gz" +DEPENDS = "osb-nrcit sqlite libgpewidget" +RRECOMMENDS_${PN} = "gdk-pixbuf-loader-gif gdk-pixbuf-loader-png gdk-pixbuf-loader-jpeg" + + +S = "${WORKDIR}/gpe-mini-browser-${PV}" + +inherit autotools + +do_install() { + install -d ${D}/usr/share/applications + install -m 0644 ${S}/gpe-mini-browser.desktop ${D}/usr/share/applications/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 +} + + +SRC_URI[md5sum] = "749c571ec28e2ea4f31602f3d5609e4b" +SRC_URI[sha256sum] = "19d345571344f65e35b06c3faad6cfc86afeb8a41533d39bfbf364e1da34188c" |