diff options
Diffstat (limited to 'meta/recipes-kernel/oprofile/oprofile.inc')
-rw-r--r-- | meta/recipes-kernel/oprofile/oprofile.inc | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofile.inc b/meta/recipes-kernel/oprofile/oprofile.inc deleted file mode 100644 index 4b01654fa3..0000000000 --- a/meta/recipes-kernel/oprofile/oprofile.inc +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | SUMMARY = "System-Wide Profiler" | ||
2 | DESCRIPTION = "OProfile is a system-wide profiler for Linux systems, capable \ | ||
3 | of profiling all running code at low overhead." | ||
4 | HOMEPAGE = "http://oprofile.sourceforge.net/news/" | ||
5 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=16191&atid=116191" | ||
6 | |||
7 | LICENSE = "LGPLv2.1+ & GPLv2" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
9 | file://libopagent/opagent.h;beginline=5;endline=26;md5=4f16f72c7a493d8a4704aa18d03d15c6 \ | ||
10 | " | ||
11 | SECTION = "devel" | ||
12 | |||
13 | DEPENDS = "popt binutils" | ||
14 | RDEPENDS_${PN} = "binutils-symlinks" | ||
15 | RRECOMMENDS_${PN} = "kernel-vmlinux" | ||
16 | |||
17 | FILES_${PN} = "${bindir} ${libdir}/${BPN}/lib*${SOLIBS} ${datadir}/${BPN}" | ||
18 | FILES_${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV} ${libdir}/${BPN}/lib*.la" | ||
19 | FILES_${PN}-staticdev += "${libdir}/${BPN}/lib*.a" | ||
20 | |||
21 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ | ||
22 | file://acinclude.m4 \ | ||
23 | file://automake-foreign.patch \ | ||
24 | file://oprofile-cross-compile-tests.patch \ | ||
25 | file://run-ptest \ | ||
26 | file://root-home-dir.patch \ | ||
27 | file://0001-Add-rmb-definition-for-NIOS2-architecture.patch \ | ||
28 | file://0001-Fix-FTBFS-problem-with-GCC-6.patch \ | ||
29 | " | ||
30 | UPSTREAM_CHECK_REGEX = "oprofile-(?P<pver>\d+(\.\d+)+)/" | ||
31 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/oprofile/files/oprofile/" | ||
32 | |||
33 | SRC_URI_append_libc-musl = " file://musl.patch" | ||
34 | |||
35 | inherit autotools pkgconfig ptest | ||
36 | |||
37 | EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC=" | ||
38 | do_configure () { | ||
39 | cp ${WORKDIR}/acinclude.m4 ${S}/ | ||
40 | autotools_do_configure | ||
41 | } | ||
42 | |||
43 | EXTRA_OEMAKE = "SRCDIR=${PTEST_PATH}/libutil++/tests" | ||
44 | do_compile_ptest() { | ||
45 | oe_runmake check | ||
46 | } | ||
47 | |||
48 | do_install_ptest() { | ||
49 | subdirs="libdb/tests libutil++/tests libregex/tests libutil/tests libop/tests libdb/tests " | ||
50 | for tooltest in ${subdirs} | ||
51 | do | ||
52 | find ${tooltest} -perm /u=x -type f| cpio -pvdu ${D}${PTEST_PATH} | ||
53 | done | ||
54 | |||
55 | # needed by some libop tests | ||
56 | cp -r events ${D}${PTEST_PATH} | ||
57 | |||
58 | # needed by libregex regex_test | ||
59 | cp libregex/stl.pat ${D}${PTEST_PATH}/libregex | ||
60 | cp libregex/tests/mangled-name ${D}${PTEST_PATH}/libregex/tests | ||
61 | |||
62 | # needed by litutil++ file_manip_tests | ||
63 | cp ${S}/libutil++/tests/file_manip_tests.cpp \ | ||
64 | libutil++/tests/file_manip_tests.o ${D}${PTEST_PATH}/libutil++/tests | ||
65 | } | ||