From 2b8f679ffe5929b5a11eb71e514aa4997c36f13e Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sat, 22 May 2004 16:47:36 +0000 Subject: 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 --- lmbench/lmbench_2.0.4.oe | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'lmbench/lmbench_2.0.4.oe') 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 " + +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}/ +} -- cgit v1.2.3