diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /lmbench | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'lmbench')
-rw-r--r-- | lmbench/lmbench_2.0.4.bb | 0 | ||||
-rw-r--r-- | lmbench/lmbench_2.0.4.oe | 44 |
2 files changed, 0 insertions, 44 deletions
diff --git a/lmbench/lmbench_2.0.4.bb b/lmbench/lmbench_2.0.4.bb new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/lmbench/lmbench_2.0.4.bb diff --git a/lmbench/lmbench_2.0.4.oe b/lmbench/lmbench_2.0.4.oe deleted file mode 100644 index 115cbc07ca..0000000000 --- a/lmbench/lmbench_2.0.4.oe +++ /dev/null @@ -1,44 +0,0 @@ -SECTION = "console/utils" -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=${datadir}/${PN},;' \ - -e 's,^BINDIR=.*$,BINDIR=${libdir}/${PN},;' ${WORKDIR}/lmbench-run -} - -do_install () { - oe_runmake 'PREFIX=${D}/${prefix}' \ - 'SHAREDIR=${D}/${datadir}/${PN}' \ - 'BINDIR=${D}/${libdir}/lmbench' install - install -d ${D}/${localstatedir}/lib/lmbench/config \ - ${D}/${localstatedir}/run/lmbench \ - ${D}/${bindir} - install -m 0755 ${WORKDIR}/lmbench-run ${D}/${bindir}/ -} |