Merges.
[vuplus_openembedded] / prelink / prelink_20031029.oe
1 DEPENDS = "elfutils "
2 DESCRIPTION = " The prelink package contains a utility which modifies ELF shared libraries \
3 and executables, so that far fewer relocations need to be resolved at \
4 runtime and thus programs come up faster."
5
6 SRC_URI = "ftp://people.redhat.com/jakub/prelink/prelink-${PV}.tar.bz2 \
7            file://dso.c.patch;patch=1 \
8            file://layout.c.patch;patch=1 \
9            file://Makefile.in.patch;patch=1 \
10            file://prelink.h.patch;patch=1 \
11            file://ts.Makefile.am.patch;patch=1 \
12            file://ts.Makefile.in.patch;patch=1 \
13            file://prelink.conf \
14            file://prelink.cron.daily \
15            file://prelink.default"
16 S = "${WORKDIR}/prelink"
17
18 inherit autotools 
19
20 do_install_append () {
21         install -d ${D}/${sysconfdir}/cron.daily ${D}/${sysconfdir}/default
22         install -m 0644 ${WORKDIR}/prelink.conf ${D}/${sysconfdir}/prelink.conf
23         install -m 0644 ${WORKDIR}/prelink.cron.daily ${D}/${sysconfdir}/cron.daily/prelink
24         install -m 0644 ${WORKDIR}/prelink.default ${D}/${sysconfdir}/default/prelink
25 }