[oe-commits] Koen Kooi : prelink: update to 20090925

git version control git at git.openembedded.org
Sun Dec 13 12:26:36 UTC 2009


Module: openembedded.git
Branch: martin_jansa/srcpv
Commit: 029609f30412e3d6304f446b9242ba2d20b9e809
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=029609f30412e3d6304f446b9242ba2d20b9e809

Author: Koen Kooi <koen at openembedded.org>
Date:   Thu Dec 10 14:49:01 2009 +0100

prelink: update to 20090925

---

 conf/checksums.ini                  |    4 +++
 recipes/prelink/prelink_20090925.bb |   48 +++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+), 0 deletions(-)

diff --git a/conf/checksums.ini b/conf/checksums.ini
index 1cd45c9..ab7acf9 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -22030,6 +22030,10 @@ sha256=a1c6170e508a3516d0a23963d7fa5cf0a457be431c210096f6b1cecd0731a9f4
 md5=6617a6681f4e5e3d8ddc48955d73d7ab
 sha256=a1c6170e508a3516d0a23963d7fa5cf0a457be431c210096f6b1cecd0731a9f4
 
+[ftp://ftp.debian.org/debian/pool/main/p/prelink/prelink_0.0.20090925.orig.tar.gz]
+md5=ed90412ad4ee7f5b5e8fff3d6649e49b
+sha256=2110261aedd8423fa3f1dba5ecb08bd61beb708883f82753b09835076cba2e36
+
 [http://www.red-bean.com/~proski/firmware/primary.tar.bz2]
 md5=0c7c82264602ee2b7ad832d5cd1e1940
 sha256=3b5bd68653ff5054586f9fad7ad729bd2d551e76949aec2d14b8a89308393a36
diff --git a/recipes/prelink/prelink_20090925.bb b/recipes/prelink/prelink_20090925.bb
new file mode 100644
index 0000000..49b319c
--- /dev/null
+++ b/recipes/prelink/prelink_20090925.bb
@@ -0,0 +1,48 @@
+SECTION = "devel"
+DEPENDS = "elfutils"
+DESCRIPTION = " The prelink package contains a utility which modifies ELF shared libraries \
+and executables, so that far fewer relocations need to be resolved at \
+runtime and thus programs come up faster."
+LICENSE = "GPL"
+
+SRC_URI = "${DEBIAN_MIRROR}/main/p/prelink/prelink_0.0.${PV}.orig.tar.gz \
+           file://prelink.conf \
+           file://prelink.cron.daily \
+           file://prelink.default"
+
+#TARGET_OS_ORIG := "${TARGET_OS}"
+#OVERRIDES_append = ":${TARGET_OS_ORIG}"
+#SRC_URI_append_linux-gnueabi = " file://arm_eabi.patch;patch=1"
+
+S = "${WORKDIR}/prelink-0.0.${PV}"
+
+EXTRA_OECONF = "--disable-64bit"
+
+inherit autotools 
+
+do_install_append () {
+	install -d ${D}${sysconfdir}/cron.daily ${D}${sysconfdir}/default
+	install -m 0644 ${WORKDIR}/prelink.conf ${D}${sysconfdir}/prelink.conf
+	install -m 0644 ${WORKDIR}/prelink.cron.daily ${D}${sysconfdir}/cron.daily/prelink
+	install -m 0644 ${WORKDIR}/prelink.default ${D}${sysconfdir}/default/prelink
+}
+
+pkg_postinst_prelink() {
+#!/bin/sh
+
+if [ "x$D" != "x" ]; then
+  exit 1
+fi
+
+. ${sysconfdir}/cron.daily/prelink
+}
+
+pkg_prerm_prelink() {
+#!/bin/sh
+
+if [ -f ${sysconfdir}/prelink.cache ]; then
+    prelink -au
+    rm -f ${sysconfdir}/prelink.cache
+fi
+}
+





More information about the Openembedded-commits mailing list