diff options
| -rw-r--r-- | meta-oe/recipes-benchmark/tiobench/tiobench-0.3.3/tiobench-makefile.patch | 49 | ||||
| -rw-r--r-- | meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb | 25 |
2 files changed, 74 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/tiobench/tiobench-0.3.3/tiobench-makefile.patch b/meta-oe/recipes-benchmark/tiobench/tiobench-0.3.3/tiobench-makefile.patch new file mode 100644 index 0000000000..f820c7e337 --- /dev/null +++ b/meta-oe/recipes-benchmark/tiobench/tiobench-0.3.3/tiobench-makefile.patch | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | Adapt tiobench to OE | ||
| 2 | Author: Ludovic Desroches <ludovic.desroches@atmel.com> | ||
| 3 | |||
| 4 | Upstream-Status: Inappropriate [not author] | ||
| 5 | |||
| 6 | Index: Makefile | ||
| 7 | =================================================================== | ||
| 8 | --- a/Makefile 2011-05-26 07:48:46.341400974 +0200 | ||
| 9 | +++ b/Makefile 2011-05-30 06:32:38.091401358 +0200 | ||
| 10 | @@ -1,8 +1,9 @@ | ||
| 11 | # Makefile for tiotest | ||
| 12 | |||
| 13 | -CC=gcc | ||
| 14 | +CC?=gcc | ||
| 15 | #CFLAGS=-O3 -fomit-frame-pointer -Wall | ||
| 16 | CFLAGS=-O2 -Wall | ||
| 17 | +LDFLAGS?= | ||
| 18 | |||
| 19 | #DEFINES=-DUSE_MMAP | ||
| 20 | #-DUSE_MADVISE | ||
| 21 | @@ -14,16 +15,16 @@ | ||
| 22 | |||
| 23 | #DEFINES= | ||
| 24 | |||
| 25 | -LINK=gcc | ||
| 26 | +LINK?=$(CC) | ||
| 27 | EXE=tiotest | ||
| 28 | PROJECT=tiobench | ||
| 29 | # do it once instead of each time referenced | ||
| 30 | VERSION=$(shell egrep "tiotest v[0-9]+.[0-9]+" tiotest.c | cut -d " " -f 7 | sed "s/v//g") | ||
| 31 | DISTNAME=$(PROJECT)-$(VERSION) | ||
| 32 | INSTALL=install | ||
| 33 | -PREFIX=/usr/local | ||
| 34 | +PREFIX?=/usr/local | ||
| 35 | BINDIR=$(PREFIX)/bin | ||
| 36 | -DOCDIR=/usr/local/doc/$(DISTNAME) | ||
| 37 | +DOCDIR=$(PREFIX)/share/doc/$(DISTNAME) | ||
| 38 | |||
| 39 | all: $(EXE) | ||
| 40 | |||
| 41 | @@ -34,7 +35,7 @@ | ||
| 42 | $(CC) -c $(CFLAGS) $(DEFINES) tiotest.c -o tiotest.o | ||
| 43 | |||
| 44 | $(EXE): tiotest.o crc32.o | ||
| 45 | - $(LINK) -o $(EXE) tiotest.o crc32.o -lpthread | ||
| 46 | + $(LINK) -o $(EXE) tiotest.o crc32.o -lpthread $(LDFLAGS) | ||
| 47 | @echo | ||
| 48 | @echo "./tiobench.pl --help for usage options" | ||
| 49 | @echo | ||
diff --git a/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb b/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb new file mode 100644 index 0000000000..3b77b38c20 --- /dev/null +++ b/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | DESCRIPTION = "Threaded I/O tester" | ||
| 2 | HOMEPAGE = "http://sourceforge.net/projects/tiobench/" | ||
| 3 | LICENSE = "GPLv2" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b" | ||
| 5 | |||
| 6 | SRC_URI = "\ | ||
| 7 | http://sourceforge.net/projects/tiobench/files/tiobench/${PV}/${P}.tar.gz \ | ||
| 8 | file://tiobench-makefile.patch \ | ||
| 9 | " | ||
| 10 | SRC_URI[md5sum] = "bf485bf820e693c79e6bd2a38702a128" | ||
| 11 | SRC_URI[sha256sum] = "8ad011059a35ac70cdb5e3d3999ceee44a8e8e9078926844b0685b7ea9db2bcc" | ||
| 12 | |||
| 13 | EXTRA_OEMAKE = "PREFIX=${D}/usr" | ||
| 14 | |||
| 15 | do_install() { | ||
| 16 | oe_runmake install | ||
| 17 | } | ||
| 18 | |||
| 19 | RDEPENDS = "\ | ||
| 20 | perl \ | ||
| 21 | perl-module-exporter-heavy \ | ||
| 22 | perl-module-getopt-long \ | ||
| 23 | perl-module-overload \ | ||
| 24 | perl-module-strict \ | ||
| 25 | " | ||
