diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /lmbench | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'lmbench')
-rw-r--r-- | lmbench/lmbench_2.0.4.oe | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lmbench/lmbench_2.0.4.oe b/lmbench/lmbench_2.0.4.oe index e69de29bb2..9d80c5830a 100644 --- a/lmbench/lmbench_2.0.4.oe +++ b/lmbench/lmbench_2.0.4.oe @@ -0,0 +1,41 @@ +DESCRIPTION = "Tools for performance analysis." +LICENSE = "GPL" +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" + +SRC_URI = "ftp://ftp.bitmover.com/lmbench/lmbench-${PV}.tgz \ + file://debian.patch;patch=1 \ + file://exe.patch;patch=1 \ + file://lmbench-run" +S = "${WORKDIR}/lmbench-${PV}" + +EXTRA_OEMAKE = '"CC=${CC}" "AR=${AR}" "CFLAGS=$CFLAGS" \ + "LDFLAGS=${LDFLAGS}" "LD=${LD}" "OS=${TARGET_SYS}" \ + "TARGET=${TARGET_OS}" "O=${S}/bin/${TARGET_SYS}"' + +python do_unpack () { + oe.build.exec_func('base_do_unpack', d) + oe.build.exec_func('byebk_do_unpack', d) +} + +byebk_do_unpack () { + find ${S}/.. -name BitKeeper -o -name SCCS | xargs rm -rf +} + +do_compile () { + . ${CONFIG_SITE} + if [ X"$ac_cv_uint" == X"yes" ]; then + CFLAGS="${CFLAGS} -DHAVE_uint" + fi + install -d ${S}/bin/${TARGET_SYS} + oe_runmake -C src exe + sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${D}/${datadir}/${PN},; \ + s,^BINDIR=.*$,BINDIR=${D}/${libdir}/${PN},;' ${WORKDIR}/lmbench-run +} + +do_install () { + oe_runmake 'PREFIX=${D}/${prefix}' \ + 'SHAREDIR=${D}/${datadir}/${PN}' \ + 'BINDIR=${D}/${libdir}/lmbench' install + install -d ${D}/${bindir} + install -m 0755 ${WORKDIR}/lmbench-run ${D}/${bindir}/ +} |