diff options
| author | Kai Kang <kai.kang@windriver.com> | 2013-06-21 16:12:20 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-21 13:24:49 +0100 |
| commit | 4e5ba5f88285e94de4b78399306b07e0b57e7f03 (patch) | |
| tree | a51d247b69aef7be536f30fdf4619f9f121ccdca /meta/recipes-devtools/strace/strace_4.8.bb | |
| parent | 011608a7b08c7fe5ad065da5179e1946ce250c57 (diff) | |
| download | poky-4e5ba5f88285e94de4b78399306b07e0b57e7f03.tar.gz | |
strace: update to 4.8
Update strace to 4.8:
* Update License file.
* Remove the backport patches which are already in version 4.8.
* Add file git-version-gen from git repo. Without this file configure
fails.
(From OE-Core rev: 3ae2592b40900caaebe2452c875912f82f9e5200)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace_4.8.bb')
| -rw-r--r-- | meta/recipes-devtools/strace/strace_4.8.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-devtools/strace/strace_4.8.bb new file mode 100644 index 0000000000..c1ffdd1270 --- /dev/null +++ b/meta/recipes-devtools/strace/strace_4.8.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | DESCRIPTION = "strace is a system call tracing tool." | ||
| 2 | HOMEPAGE = "http://strace.sourceforge.net" | ||
| 3 | SECTION = "console/utils" | ||
| 4 | LICENSE = "BSD" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=124500c21e856f0912df29295ba104c7" | ||
| 6 | PR = "r0" | ||
| 7 | |||
| 8 | SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \ | ||
| 9 | file://git-version-gen" | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "c575ef43829586801f514fd91bfe7575" | ||
| 12 | SRC_URI[sha256sum] = "f492291f07a7c805c07a8395cce1ea054a6401ad414f4cc12185672215e1d7f8" | ||
| 13 | inherit autotools | ||
| 14 | |||
| 15 | export INCLUDES = "-I. -I./linux" | ||
| 16 | |||
| 17 | do_configure_prepend() { | ||
| 18 | cp ${WORKDIR}/git-version-gen ${S} | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install_append() { | ||
| 22 | # We don't ship strace-graph here because it needs perl | ||
| 23 | rm ${D}${bindir}/strace-graph | ||
| 24 | } | ||
| 25 | |||
| 26 | BBCLASSEXTEND = "native" | ||
