mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Update to version 2.5.3 to match trace-cmd. Changes include: - Remove kernelshark-fix-syntax-error-of-shell.patch (the syntax error is no longer present in the new version). - Specify bindir_relative and libdir in EXTRA_OEMAKE as in the trace-cmd recipe so files get installed to the right place. Additionally, remove unnecessary EXTRA_OEMAKE options. - Fix up the do_install steps to remove the plugins directory; that directory now lives under /usr/lib. - Set NO_PYTHON=1 because building the ctracecmd Python module requires swig, which is not available in oe-core. (From OE-Core rev: 2f177644dab083bc5306bce1bf2ff2ef8851c862) Signed-off-by: Ben Shelton <ben.shelton@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
738 B
BlitzBasic
31 lines
738 B
BlitzBasic
SUMMARY = "Graphical trace viewer for Ftrace"
|
|
LICENSE = "GPLv2"
|
|
|
|
require trace-cmd.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
|
|
file://kernel-shark.c;beginline=6;endline=8;md5=2c22c965a649ddd7973d7913c5634a5e"
|
|
|
|
DEPENDS = "gtk+ libxml2"
|
|
RDEPENDS_${PN} = "trace-cmd"
|
|
|
|
EXTRA_OEMAKE = "\
|
|
'prefix=${prefix}' \
|
|
'bindir_relative=${@oe.path.relative(prefix, bindir)}' \
|
|
'libdir=${@oe.path.relative(prefix, libdir)}' \
|
|
NO_PYTHON=1 \
|
|
gui \
|
|
"
|
|
|
|
do_compile_prepend() {
|
|
# Make sure the recompile is OK
|
|
rm -f ${B}/.*.d
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR="${D}" install_gui
|
|
rm ${D}${bindir}/trace-cmd
|
|
rm -rf ${D}${libdir}/trace-cmd
|
|
rmdir ${D}${libdir}
|
|
}
|