summaryrefslogtreecommitdiff
path: root/meta/recipes-support/libpcre/libpcre_8.12.bb
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-11-16 11:14:36 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-17 14:06:03 +0000
commitaba671f805010313d8b7c02b560da2646de1164b (patch)
treebe2e409c483fc758e5164aa6e20b2fd40f3579ce /meta/recipes-support/libpcre/libpcre_8.12.bb
parent942cdda2194078755a11efef3ba3f502f72e4f5e (diff)
downloadopenembedded-core-aba671f805010313d8b7c02b560da2646de1164b.tar.gz
openembedded-core-aba671f805010313d8b7c02b560da2646de1164b.tar.bz2
openembedded-core-aba671f805010313d8b7c02b560da2646de1164b.tar.xz
openembedded-core-aba671f805010313d8b7c02b560da2646de1164b.zip
libpcre: upgrade from 8.12 to 8.20
The license file has updated the copyright years, hence new checksum for license file. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libpcre/libpcre_8.12.bb')
-rw-r--r--meta/recipes-support/libpcre/libpcre_8.12.bb55
1 files changed, 0 insertions, 55 deletions
diff --git a/meta/recipes-support/libpcre/libpcre_8.12.bb b/meta/recipes-support/libpcre/libpcre_8.12.bb
deleted file mode 100644
index 54d1f9840..000000000
--- a/meta/recipes-support/libpcre/libpcre_8.12.bb
+++ /dev/null
@@ -1,55 +0,0 @@
-DESCRIPTION = "Perl-compatible regular expression library. PCRE has its own native \
-API, but a set of 'wrapper' functions that are based on the POSIX API \
-are also supplied in the library libpcreposix. Note that this just \
-provides a POSIX calling interface to PCRE; the regular expressions \
-themselves still follow Perl syntax and semantics. The header file for \
-the POSIX-style functions is called pcreposix.h."
-SECTION = "devel"
-PR = "r1"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENCE;md5=77f9b14fe707d0376d89bc162e6c54ff"
-SRC_URI = "${SOURCEFORGE_MIRROR}/pcre/pcre-${PV}.tar.bz2 \
- file://pcre-cross.patch \
- file://fix-pcre-name-collision.patch"
-
-SRC_URI[md5sum] = "f14a9fef3c92f3fc6c5ac92d7a2c7eb3"
-SRC_URI[sha256sum] = "c63070d461edc451ec9457f2324e152a531e907d5c5d2d8f8121e725acd1aeec"
-S = "${WORKDIR}/pcre-${PV}"
-
-PROVIDES = "pcre"
-DEPENDS = "bzip2 zlib readline"
-
-inherit autotools binconfig
-
-PARALLEL_MAKE = ""
-
-CFLAGS_append = " -D_REENTRANT"
-CXXFLAGS_powerpc += "-lstdc++"
-EXTRA_OECONF = " --with-link-size=2 --enable-newline-is-lf --with-match-limit=10000000 --enable-rebuild-chartables --enable-utf8"
-
-do_compile () {
- # stop libtool from trying to link with host libraries - fix from #33
- # this resolve build problem on amd64 - #1015
- if [ -e ${S}/${HOST_SYS}-libtool ] ; then
- sed -i 's:-L\$:-L${STAGING_LIBDIR} -L\$:' ${S}/${HOST_SYS}-libtool
- else
- ln -sf ${S}/libtool ${S}/${HOST_SYS}-libtool
- sed -i 's:-L\$:-L${STAGING_LIBDIR} -L\$:' ${S}/${HOST_SYS}-libtool
- fi
-
- # The generation of dftables can lead to timestamp problems with ccache
- # because the generated config.h seems newer. It is sufficient to ensure that the
- # attempt to build dftables inside make will actually work (foo_FOR_BUILD is
- # only used for this).
- oe_runmake CC_FOR_BUILD="${BUILD_CC}" CFLAGS_FOR_BUILD="-DLINK_SIZE=2 -I${S}/include" LINK_FOR_BUILD="${BUILD_CC} -L${S}/lib"
-}
-
-python populate_packages_prepend () {
- pcre_libdir = bb.data.expand('${libdir}', d)
- do_split_packages(d, pcre_libdir, '^lib(.*)\.so\.+', 'lib%s', 'libpcre %s library', extra_depends='', allow_links=True)
-}
-
-FILES_${PN} = "${libdir}/libpcre.so.*"
-FILES_${PN}-dev += "${bindir}/*"
-
-BBCLASSEXTEND = "native"