Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 | |
| 6 | SECTION = "devel" |
| 7 | LICENSE = "BSD" |
| 8 | DEPENDS += "${@'bison-native flex-native' if '${PTEST_ENABLED}' == '1' else ''}" |
| 9 | |
| 10 | SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \ |
| 11 | file://run-ptest \ |
| 12 | " |
| 13 | |
| 14 | inherit autotools gettext texinfo ptest |
| 15 | |
| 16 | |
| 17 | M4 = "${bindir}/m4" |
| 18 | M4_class-native = "${STAGING_BINDIR_NATIVE}/m4" |
| 19 | |
| 20 | EXTRA_OECONF += "ac_cv_path_M4=${M4}" |
| 21 | EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4" |
| 22 | |
| 23 | do_install_append_class-native() { |
| 24 | create_wrapper ${D}/${bindir}/flex M4=${M4} |
| 25 | } |
| 26 | |
| 27 | do_install_append_class-nativesdk() { |
| 28 | create_wrapper ${D}/${bindir}/flex M4=${M4} |
| 29 | } |
| 30 | |
| 31 | RDEPENDS_${PN} += "m4" |
| 32 | |
| 33 | do_compile_ptest() { |
| 34 | for i in `find ${S}/tests/ -type d |grep -Ev "concatenated-options|reject|table-opts" | awk -F/ '{print $NF}'`; \ |
| 35 | do oe_runmake -C ${S}/tests/$i -f ${B}/tests/$i/Makefile top_builddir=${B} FLEX=flex $i; \ |
| 36 | done |
| 37 | oe_runmake -C ${S}/tests/test-reject -f ${B}/tests/test-reject/Makefile top_builddir=${B} FLEX=flex test-reject-nr test-reject-r test-reject-ser test-reject-ver |
| 38 | } |
| 39 | |
| 40 | do_install_ptest() { |
| 41 | for i in `find ${S}/tests/ -type d | awk -F/ '{print $NF}'`; \ |
| 42 | do cp -r ${S}/tests/$i ${D}${PTEST_PATH}; \ |
| 43 | done |
| 44 | } |