diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-12-20 11:43:49 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-21 17:22:38 +0000 |
commit | 2ccdb82a359ffe9ae3f45d239d63fdf77cbb973f (patch) | |
tree | 330b79c4fe1d6b1daeb9128537680d53543b7b18 /meta/recipes-devtools/valgrind/valgrind_3.9.0.bb | |
parent | 63fb3587fcbfb7bea471056808fdf51a79a43960 (diff) | |
download | poky-2ccdb82a359ffe9ae3f45d239d63fdf77cbb973f.tar.gz |
valgrind: upgrade to 3.9.0
Changed patches directory to "valgrind";
Removed 4 patches because they were merged upstream;
Updated 2 patches because now it has configure.ac instead of .in;
Changed license md5 for 2 files because of a small change for copyright
year
(From OE-Core rev: 57794c201aa732392a135e03e04faf18929f645f)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind_3.9.0.bb')
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.9.0.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb new file mode 100644 index 0000000000..80aac62789 --- /dev/null +++ b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb | |||
@@ -0,0 +1,42 @@ | |||
1 | DESCRIPTION = "Valgrind memory debugger" | ||
2 | HOMEPAGE = "http://valgrind.org/" | ||
3 | BUGTRACKER = "http://valgrind.org/support/bug_reports.html" | ||
4 | LICENSE = "GPLv2 & GPLv2+ & BSD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=c46082167a314d785d012a244748d803 \ | ||
6 | file://include/pub_tool_basics.h;beginline=1;endline=29;md5=e7071929a50d4b0fc27a3014b315b0f7 \ | ||
7 | file://include/valgrind.h;beginline=1;endline=56;md5=92df8a1bde56fe2af70931ff55f6622f \ | ||
8 | file://COPYING.DOCS;md5=8fdeb5abdb235a08e76835f8f3260215" | ||
9 | |||
10 | X11DEPENDS = "virtual/libx11" | ||
11 | DEPENDS = "${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" | ||
12 | PR = "r8" | ||
13 | |||
14 | SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \ | ||
15 | file://fixed-perl-path.patch \ | ||
16 | file://Added-support-for-PPC-instructions-mfatbu-mfatbl.patch \ | ||
17 | file://sepbuildfix.patch \ | ||
18 | " | ||
19 | |||
20 | SRC_URI[md5sum] = "0947de8112f946b9ce64764af7be6df2" | ||
21 | SRC_URI[sha256sum] = "e6af71a06bc2534541b07743e1d58dc3caf744f38205ca3e5b5a0bdf372ed6f0" | ||
22 | |||
23 | COMPATIBLE_HOST = '(i.86|x86_64|powerpc|powerpc64).*-linux' | ||
24 | COMPATIBLE_HOST_armv7a = 'arm.*-linux' | ||
25 | |||
26 | inherit autotools | ||
27 | |||
28 | EXTRA_OECONF = "--enable-tls --without-mpicc" | ||
29 | EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi --without-mpicc" | ||
30 | EXTRA_OEMAKE = "-w" | ||
31 | PARALLEL_MAKE = "" | ||
32 | |||
33 | do_install_append () { | ||
34 | install -m 644 ${B}/default.supp ${D}/${libdir}/valgrind/ | ||
35 | } | ||
36 | |||
37 | RDEPENDS_${PN} += "perl" | ||
38 | |||
39 | FILES_${PN}-dbg += "${libdir}/${PN}/*/.debug/*" | ||
40 | RRECOMMENDS_${PN}_powerpc += "${TCLIBC}-dbg" | ||
41 | RRECOMMENDS_${PN}_powerpc64 += "${TCLIBC}-dbg" | ||
42 | RRECOMMENDS_${PN}_armv7a += "${TCLIBC}-dbg" | ||