summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/flex/flex.inc
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /meta/recipes-devtools/flex/flex.inc
downloadpoky-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-devtools/flex/flex.inc')
-rw-r--r--meta/recipes-devtools/flex/flex.inc44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc
new file mode 100644
index 0000000000..75c10ef340
--- /dev/null
+++ b/meta/recipes-devtools/flex/flex.inc
@@ -0,0 +1,44 @@
1SUMMARY = "Flex (The Fast Lexical Analyzer)"
2DESCRIPTION = "Flex is a fast lexical analyser generator. Flex is a tool for generating programs that recognize \
3lexical patterns in text."
4HOMEPAGE = "http://sourceforge.net/projects/flex/"
5
6SECTION = "devel"
7LICENSE = "BSD"
8
9SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \
10 file://run-ptest \
11"
12
13inherit autotools gettext ptest
14
15
16M4 = "${bindir}/m4"
17M4_class-native = "${STAGING_BINDIR_NATIVE}/m4"
18
19EXTRA_OECONF += "ac_cv_path_M4=${M4}"
20EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4"
21
22do_install_append_class-native() {
23 create_wrapper ${D}/${bindir}/flex M4=${M4}
24}
25
26do_install_append_class-nativesdk() {
27 create_wrapper ${D}/${bindir}/flex M4=${M4}
28}
29
30RDEPENDS_${PN} += "m4"
31DEPENDS_${PN}-ptest += "bison-native flex-native"
32
33do_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
40do_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}