diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-29 09:45:45 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-29 09:45:45 +0000 |
commit | 91b31689e84b892328f631caec589dcf8b816868 (patch) | |
tree | 82b7470a92f562323ac50c26d5a0f719ce7c5741 | |
parent | 4bdb5b693911bfd72f19b809a0d770d523cd9cf1 (diff) |
libelf, opie-icon-reload: corrected section name
BKrev: 415a8449sJUdkWytXVdAFia-RhiZOQ
-rw-r--r-- | BitKeeper/etc/ignore | 3 | ||||
-rw-r--r-- | libelf/libelf_0.8.3.oe | 2 | ||||
-rw-r--r-- | opie-icon-reload/opie-icon-reload_0.0.1.oe | 26 |
3 files changed, 30 insertions, 1 deletions
diff --git a/BitKeeper/etc/ignore b/BitKeeper/etc/ignore index 92938cf1cd..58df254661 100644 --- a/BitKeeper/etc/ignore +++ b/BitKeeper/etc/ignore @@ -3,3 +3,6 @@ PENDING/* conf/local.conf conf/auto.conf tmp +_hrw/hrw-build.oe +_hrw/build-hrw-qpe.oe +_hrw/build-hrw.oe diff --git a/libelf/libelf_0.8.3.oe b/libelf/libelf_0.8.3.oe index 7eb50bf443..7f36f23e31 100644 --- a/libelf/libelf_0.8.3.oe +++ b/libelf/libelf_0.8.3.oe @@ -1,4 +1,4 @@ -SECTION = "libc" +SECTION = "libs" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" DESCRIPTION = "an ELF object file access library \ The elf library provides routines to access, and manipulate, Elf object \ diff --git a/opie-icon-reload/opie-icon-reload_0.0.1.oe b/opie-icon-reload/opie-icon-reload_0.0.1.oe index e69de29bb2..e4812ef3b7 100644 --- a/opie-icon-reload/opie-icon-reload_0.0.1.oe +++ b/opie-icon-reload/opie-icon-reload_0.0.1.oe @@ -0,0 +1,26 @@ +SECTION = "opie/settings" +DESCRIPTION = "Reload .desktop files on the fly" +PRIORITY = "optional" +MAINTAINER = "Matthias 'CoreDump' Hentges <oe@hentges.net>" +LICENSE = "GPL" + +PR = "r2" + +include conf/hentges-3.5.1_1.1.6.conf + +SRC_URI = "file://icon-reload.desktop \ + file://icon-reload.sh \ + file://reload.png" + +FILES_${PN} += "/opt" + +do_install() { + install -d ${D}/opt/QtPalmtop/apps/Settings + install -d ${D}/opt/QtPalmtop/bin + install -d ${D}/opt/QtPalmtop/pics + + install -m 0644 ${WORKDIR}/icon-reload.desktop ${D}/opt/QtPalmtop/apps/Settings + install -m 0755 ${WORKDIR}/icon-reload.sh ${D}/opt/QtPalmtop/bin + install -m 0644 ${WORKDIR}/reload.png ${D}/opt/QtPalmtop/pics +} + |