flex_2.6.4.bb 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. SUMMARY = "Flex (The Fast Lexical Analyzer)"
  2. DESCRIPTION = "Flex is a fast lexical analyser generator. Flex is a tool for generating programs that recognize \
  3. lexical patterns in text."
  4. HOMEPAGE = "http://sourceforge.net/projects/flex/"
  5. SECTION = "devel"
  6. LICENSE = "BSD-3-Clause & LGPL-2.0-or-later"
  7. LICENSE:${PN}-libfl = "BSD-3-Clause"
  8. DEPENDS = "${@bb.utils.contains('PTEST_ENABLED', '1', 'bison-native flex-native', '', d)}"
  9. BBCLASSEXTEND = "native nativesdk"
  10. LIC_FILES_CHKSUM = "file://COPYING;md5=e4742cf92e89040b39486a6219b68067 \
  11. file://src/gettext.h;beginline=1;endline=17;md5=9c05dda2f58d89b850c399cf22e1a00c"
  12. SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/flex-${PV}.tar.gz \
  13. file://run-ptest \
  14. file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \
  15. ${@bb.utils.contains('PTEST_ENABLED', '1', '', 'file://disable-tests.patch', d)} \
  16. file://0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch \
  17. file://check-funcs.patch \
  18. file://0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch \
  19. "
  20. SRC_URI[md5sum] = "2882e3179748cc9f9c23ec593d6adc8d"
  21. SRC_URI[sha256sum] = "e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995"
  22. GITHUB_BASE_URI = "https://github.com/westes/flex/releases"
  23. # Disputed - yes there is stack exhaustion but no bug and it is building the
  24. # parser, not running it, effectively similar to a compiler ICE. Upstream no plans to address
  25. # https://github.com/westes/flex/issues/414
  26. CVE_CHECK_IGNORE += "CVE-2019-6293"
  27. inherit autotools gettext texinfo ptest github-releases
  28. M4 = "${bindir}/m4"
  29. M4:class-native = "${STAGING_BINDIR_NATIVE}/m4"
  30. EXTRA_OECONF += "ac_cv_path_M4=${M4} ac_cv_func_reallocarray=no"
  31. EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4"
  32. EXTRA_OEMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', 'FLEX=${STAGING_BINDIR_NATIVE}/flex', '', d)}"
  33. do_install:append:class-native() {
  34. create_wrapper ${D}/${bindir}/flex M4=${M4}
  35. }
  36. do_install:append:class-nativesdk() {
  37. create_wrapper ${D}/${bindir}/flex M4=${M4}
  38. }
  39. PACKAGES =+ "${PN}-libfl"
  40. FILES:${PN}-libfl = "${libdir}/libfl.so.* ${libdir}/libfl_pic.so.*"
  41. RDEPENDS:${PN} += "m4"
  42. RDEPENDS:${PN}-ptest += "bash gawk make"
  43. do_compile_ptest() {
  44. oe_runmake -C ${B}/tests -f ${B}/tests/Makefile top_builddir=${B} INCLUDES=-I${S}/src buildtests
  45. }
  46. PTEST_PARALLEL_MAKE = ""
  47. do_install_ptest() {
  48. mkdir -p ${D}${PTEST_PATH}/build-aux/
  49. cp ${S}/build-aux/test-driver ${D}${PTEST_PATH}/build-aux/
  50. cp -r ${S}/tests/* ${D}${PTEST_PATH}
  51. cp -r ${B}/tests/* ${D}${PTEST_PATH}
  52. sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
  53. -e 's|${DEBUG_PREFIX_MAP}||g' \
  54. -e 's:${HOSTTOOLS_DIR}/::g' \
  55. -e 's:${RECIPE_SYSROOT_NATIVE}::g' \
  56. -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \-e 's/^Makefile:/_Makefile:/' \
  57. -e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/^top_srcdir = \(.*\)/top_srcdir = ./' \
  58. -e 's/^builddir = \(.*\)/builddir = ./' -e 's/^top_builddir = \(.*\)/top_builddir = ./' \
  59. -e 's:${UNINATIVE_LOADER}:${base_bindir}/false:g' \
  60. -i ${D}${PTEST_PATH}/Makefile
  61. }
  62. # The uninative loader is different on i386 & x86_64 hosts. Since it is only
  63. # being replaced with /bin/false anyway, it doesn't need to be part of the task
  64. # hash
  65. do_install_ptest[vardepsexclude] += "UNINATIVE_LOADER"
  66. # Not Apache Flex, or Adobe Flex, or IBM Flex.
  67. CVE_PRODUCT = "flex_project:flex"