1SUMMARY = "Traditional Unix macro processor" 2HOMEPAGE = "https://www.gnu.org/software/m4/m4.html" 3DESCRIPTION = "GNU m4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 \ 4compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). \ 5GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc." 6 7inherit autotools texinfo ptest gettext 8 9SRC_URI = "${GNU_MIRROR}/m4/m4-${PV}.tar.gz \ 10 file://ac_config_links.patch \ 11 file://0001-sigsegv-Fix-build-on-ppc-musl.patch \ 12 " 13SRC_URI:append:class-target = " file://run-ptest \ 14 file://serial-tests-config.patch \ 15 " 16 17SRC_URI[md5sum] = "f4a2b0284d80353b995f8ef2385ed73c" 18SRC_URI[sha256sum] = "3be4a26d825ffdfda52a56fc43246456989a3630093cced3fbddf4771ee58a70" 19 20LICENSE = "GPL-3.0-only" 21 22LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464\ 23 file://examples/COPYING;md5=4031593b2166d6c47cae282d944a7ede" 24 25# Fix "Argument list too long" error when len(TMPDIR) = 410 26acpaths = "-I ./m4" 27 28EXTRA_OECONF += "--without-libsigsegv-prefix" 29 30EXTRA_OEMAKE += "'infodir=${infodir}'" 31 32do_compile_ptest() { 33 cd ${B}/tests 34 sed -i '/^buildtest-TESTS: /c buildtest-TESTS: $(TESTS) $(check_LIBRARIES) $(check_PROGRAMS)' Makefile 35 oe_runmake buildtest-TESTS 36} 37 38do_install_ptest() { 39 cp -r ${B}/tests ${D}${PTEST_PATH} 40 cp -r ${S}/tests/* ${D}${PTEST_PATH}/tests/ 41 sed -i '/^Makefile:/c Makefile:' ${D}${PTEST_PATH}/tests/Makefile 42 sed -i -e "s;LOCALE_FR='fr_FR';LOCALE_FR='fr_FR.iso88591';g" \ 43 -e "s;LOCALE_FR_UTF8='none';LOCALE_FR_UTF8='fr_FR.utf8';g" ${D}${PTEST_PATH}/tests/Makefile 44 find ${D}${PTEST_PATH} -type f -name *.[hoc] | xargs -i rm {} 45 cp ${S}/build-aux/update-copyright ${D}${PTEST_PATH}/tests/ 46 sed -i 's;update-copyright;./update-copyright;g' ${D}${PTEST_PATH}/tests/test-update-copyright.sh 47 chmod 0755 ${D}${PTEST_PATH}/tests/test-mbrtowc-w32-1.sh ${D}${PTEST_PATH}/tests/test-spawn-pipe-main \ 48 ${D}${PTEST_PATH}/tests/test-spawn-pipe-child ${D}${PTEST_PATH}/tests/test-version-etc \ 49 ${D}${PTEST_PATH}/tests/test-xalloc-die 50 51 ln -s ptest ${D}${libdir}/${BPN}/${BP} 52} 53 54 55RDEPENDS:${PN}-ptest += "make coreutils diffutils" 56RDEPENDS:${PN}-ptest:append:libc-glibc = "\ 57 locale-base-fr-fr.iso-8859-1 \ 58" 59 60INSANE_SKIP:${PN}-ptest += "ldflags" 61INSANE_SKIP:${PN}-ptest += "rpaths" 62 63