blob: c098a4077ef625eaa1c4d26745d65e3a61bb9c9c [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "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."
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006
Andrew Geissler09036742021-06-25 14:25:14 -05007inherit autotools texinfo ptest gettext
Brad Bishop316dfdd2018-06-25 12:45:53 -04008
9SRC_URI = "${GNU_MIRROR}/m4/m4-${PV}.tar.gz \
10 file://ac_config_links.patch \
Andrew Geissler9aee5002022-03-30 16:27:02 +000011 file://0001-sigsegv-Fix-build-on-ppc-musl.patch \
Andrew Geisslerc5535c92023-01-27 16:10:19 -060012 file://0001-Define-alignof_slot-using-_Alignof-when-using-C11-or.patch \
Brad Bishop316dfdd2018-06-25 12:45:53 -040013 "
Patrick Williams213cb262021-08-07 19:21:33 -050014SRC_URI:append:class-target = " file://run-ptest \
Brad Bishopc342db32019-05-15 21:57:59 -040015 file://serial-tests-config.patch \
Brad Bishopc342db32019-05-15 21:57:59 -040016 "
Brad Bishop316dfdd2018-06-25 12:45:53 -040017
Andrew Geissler09036742021-06-25 14:25:14 -050018SRC_URI[md5sum] = "f4a2b0284d80353b995f8ef2385ed73c"
19SRC_URI[sha256sum] = "3be4a26d825ffdfda52a56fc43246456989a3630093cced3fbddf4771ee58a70"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000021LICENSE = "GPL-3.0-only"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022
Andrew Geissler09036742021-06-25 14:25:14 -050023LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464\
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024 file://examples/COPYING;md5=4031593b2166d6c47cae282d944a7ede"
25
Brad Bishop6e60e8b2018-02-01 10:27:11 -050026# Fix "Argument list too long" error when len(TMPDIR) = 410
27acpaths = "-I ./m4"
28
Brad Bishop316dfdd2018-06-25 12:45:53 -040029EXTRA_OECONF += "--without-libsigsegv-prefix"
30
31EXTRA_OEMAKE += "'infodir=${infodir}'"
Brad Bishopc342db32019-05-15 21:57:59 -040032
33do_compile_ptest() {
34 cd ${B}/tests
35 sed -i '/^buildtest-TESTS: /c buildtest-TESTS: $(TESTS) $(check_LIBRARIES) $(check_PROGRAMS)' Makefile
36 oe_runmake buildtest-TESTS
37}
38
39do_install_ptest() {
40 cp -r ${B}/tests ${D}${PTEST_PATH}
41 cp -r ${S}/tests/* ${D}${PTEST_PATH}/tests/
42 sed -i '/^Makefile:/c Makefile:' ${D}${PTEST_PATH}/tests/Makefile
43 sed -i -e "s;LOCALE_FR='fr_FR';LOCALE_FR='fr_FR.iso88591';g" \
44 -e "s;LOCALE_FR_UTF8='none';LOCALE_FR_UTF8='fr_FR.utf8';g" ${D}${PTEST_PATH}/tests/Makefile
45 find ${D}${PTEST_PATH} -type f -name *.[hoc] | xargs -i rm {}
46 cp ${S}/build-aux/update-copyright ${D}${PTEST_PATH}/tests/
47 sed -i 's;update-copyright;./update-copyright;g' ${D}${PTEST_PATH}/tests/test-update-copyright.sh
48 chmod 0755 ${D}${PTEST_PATH}/tests/test-mbrtowc-w32-1.sh ${D}${PTEST_PATH}/tests/test-spawn-pipe-main \
49 ${D}${PTEST_PATH}/tests/test-spawn-pipe-child ${D}${PTEST_PATH}/tests/test-version-etc \
50 ${D}${PTEST_PATH}/tests/test-xalloc-die
Andrew Geissler09036742021-06-25 14:25:14 -050051
52 ln -s ptest ${D}${libdir}/${BPN}/${BP}
Brad Bishopc342db32019-05-15 21:57:59 -040053}
54
Brad Bishop393846f2019-05-20 12:24:11 -040055
Patrick Williams213cb262021-08-07 19:21:33 -050056RDEPENDS:${PN}-ptest += "make coreutils diffutils"
57RDEPENDS:${PN}-ptest:append:libc-glibc = "\
Andrew Geissler517393d2023-01-13 08:55:19 -060058 locale-base-fr-fr \
Brad Bishopc342db32019-05-15 21:57:59 -040059 locale-base-fr-fr.iso-8859-1 \
60"
61
Patrick Williams213cb262021-08-07 19:21:33 -050062INSANE_SKIP:${PN}-ptest += "ldflags"
63INSANE_SKIP:${PN}-ptest += "rpaths"
Brad Bishopc342db32019-05-15 21:57:59 -040064