blob: 948ea7cddf02911c30e66fe584861d5e197eb539 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001inherit ptest
2
3SRC_URI += "file://run-ptest \
4 "
5
6do_install_ptest () {
7 mkdir -p ${D}${PTEST_PATH}
8 sed -e "s:\/opt:\/usr:" -i Porting/add-package.pl
9 sed -e "s:\/local\/gnu\/:\/:" -i hints/cxux.sh
10 tar -cf - * --exclude \*.o --exclude libperl.so --exclude Makefile --exclude makefile --exclude hostperl \
11 --exclude miniperl --exclude generate_uudmap --exclude patches | ( cd ${D}${PTEST_PATH} && tar -xf - )
12
13 sed -i -e "s,${D},,g" \
14 -e "s,--sysroot=${STAGING_DIR_HOST},,g" \
15 -e "s,-isystem${STAGING_INCDIR} ,,g" \
16 -e "s,${STAGING_LIBDIR},${libdir},g" \
17 -e "s,${STAGING_BINDIR},${bindir},g" \
18 -e "s,${STAGING_INCDIR},${includedir},g" \
19 -e "s,${STAGING_BINDIR_NATIVE}/perl-native/,${bindir}/,g" \
20 -e "s,${STAGING_BINDIR_NATIVE}/,,g" \
21 -e "s,${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX},${bindir},g" \
22 ${D}${PTEST_PATH}/lib/Config.pm
23
24 ln -sf ${bindir}/perl ${D}${PTEST_PATH}/t/perl
25
26}
27
28python populate_packages_prepend() {
29 # Put all *.t files from the lib dir in the ptest package
30 # do_split_packages requires a pair of () in the regex, but we have nothing
31 # to match, so use an empty pair.
32 if bb.utils.contains('DISTRO_FEATURES', 'ptest', True, False, d):
33 do_split_packages(d, d.expand('${libdir}/perl/${PV}'), '.*\.t()',
34 '${PN}-ptest%s', '%s', recursive=True, match_path=True)
35}
36
37RDEPENDS_${PN}-ptest += "${PN}-modules ${PN}-doc ${PN}-misc sed"