summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libpcre/libpcre_8.32.bb
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2013-06-03 10:22:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 16:48:23 +0100
commit8ec642bf2d873661ada77ba0e602365c3f4e7efb (patch)
tree3a0f369f9cca952f15dca49f0de62152445cb0ec /meta/recipes-support/libpcre/libpcre_8.32.bb
parent26133c29161230ea51e6cde425468ba3aee1cd10 (diff)
downloadpoky-8ec642bf2d873661ada77ba0e602365c3f4e7efb.tar.gz
libpcre: upgraded to 8.33
The license didn't modify, just the license years (2012->2013). (From OE-Core rev: 8085ccf585b7d7f70f47362308ddacf9aa577649) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libpcre/libpcre_8.32.bb')
-rw-r--r--meta/recipes-support/libpcre/libpcre_8.32.bb61
1 files changed, 0 insertions, 61 deletions
diff --git a/meta/recipes-support/libpcre/libpcre_8.32.bb b/meta/recipes-support/libpcre/libpcre_8.32.bb
deleted file mode 100644
index a2a8d808e2..0000000000
--- a/meta/recipes-support/libpcre/libpcre_8.32.bb
+++ /dev/null
@@ -1,61 +0,0 @@
1DESCRIPTION = "The PCRE library is a set of functions that implement regular \
2expression pattern matching using the same syntax and semantics as Perl 5. PCRE \
3has its own native API, as well as a set of wrapper functions that correspond \
4to the POSIX regular expression API."
5SUMMARY = "Perl Compatible Regular Expressions"
6HOMEPAGE = "http://www.pcre.org"
7SECTION = "devel"
8PR = "r1"
9LICENSE = "BSD"
10LIC_FILES_CHKSUM = "file://LICENCE;md5=115e2bee152e2e23e838a29136094877"
11SRC_URI = "${SOURCEFORGE_MIRROR}/project/pcre/pcre/${PV}/pcre-${PV}.tar.bz2 \
12 file://pcre-cross.patch \
13 file://fix-pcre-name-collision.patch"
14
15SRC_URI[md5sum] = "62f02a76bb57a40bc66681760ed511d5"
16SRC_URI[sha256sum] = "a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55"
17
18S = "${WORKDIR}/pcre-${PV}"
19
20FILESPATH .= ":${@base_set_filespath([bb.which(BBPATH, 'recipes-support/libpcre/files', direction=True)], d)}"
21
22PROVIDES += "pcre"
23DEPENDS += "bzip2 zlib"
24
25PACKAGECONFIG[pcretest-readline] = "--enable-pcretest-libreadline,--disable-pcretest-libreadline,readline,"
26
27inherit autotools binconfig
28
29PARALLEL_MAKE = ""
30
31EXTRA_OECONF = "\
32 --enable-newline-is-lf \
33 --enable-rebuild-chartables \
34 --enable-utf8 \
35 --with-link-size=2 \
36 --with-match-limit=10000000 \
37"
38
39# Set LINK_SIZE in BUILD_CFLAGS given that the autotools bbclass use it to
40# set CFLAGS_FOR_BUILD, required for the libpcre build.
41BUILD_CFLAGS =+ "-DLINK_SIZE=2 -I${B}"
42CFLAGS += "-D_REENTRANT"
43CXXFLAGS_append_powerpc = " -lstdc++"
44
45PACKAGES =+ "libpcrecpp libpcreposix pcregrep pcregrep-doc pcretest pcretest-doc"
46
47SUMMARY_libpcrecpp = "${SUMMARY} - C++ wrapper functions"
48SUMMARY_libpcreposix = "${SUMMARY} - C wrapper functions based on the POSIX regex API"
49SUMMARY_pcregrep = "grep utility that uses perl 5 compatible regexes"
50SUMMARY_pcregrep-doc = "grep utility that uses perl 5 compatible regexes - docs"
51SUMMARY_pcretest = "program for testing Perl-comatible regular expressions"
52SUMMARY_pcretest-doc = "program for testing Perl-comatible regular expressions - docs"
53
54FILES_libpcrecpp = "${libdir}/libpcrecpp.so.*"
55FILES_libpcreposix = "${libdir}/libpcreposix.so.*"
56FILES_pcregrep = "${bindir}/pcregrep"
57FILES_pcregrep-doc = "${mandir}/man1/pcregrep.1"
58FILES_pcretest = "${bindir}/pcretest"
59FILES_pcretest-doc = "${mandir}/man1/pcretest.1"
60
61BBCLASSEXTEND = "native nativesdk"