6aa96ebee4e32e89d6b6cd990cd4055c7b0f30ea
[vuplus_openembedded] / pcre / pcre_4.4.oe
1 DEPENDS = "virtual/libc"
2 RDEPENDS = "libc6"
3 DESCRIPTION = "Perl-compatible regular expression library. PCRE has its own native \
4 API, but a set of 'wrapper' functions that are based on the POSIX API \
5 are also supplied in the library libpcreposix. Note that this just \
6 provides a POSIX calling interface to PCRE; the regular expressions \
7 themselves still follow Perl syntax and semantics. The header file for \
8 the POSIX-style functions is called pcreposix.h."
9
10 SRC_URI = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${PV}.tar.bz2 \
11            file://${FILESDIR}/rpath.patch;patch=1 \
12            file://${FILESDIR}/lai.patch;patch=1"
13 S = "${WORKDIR}/pcre-${PV}"
14
15 inherit autotools libtool
16
17 CFLAGS_append = " -D_REENTRANT"
18 EXTRA_OECONF = " --with-link-size=2 --enable-newline-is-lf --with-match-limit=10000000"
19
20 do_compile () {
21         ${BUILD_CC} -DLINK_SIZE=2 -I${S}/include -c dftables.c
22         ${BUILD_CC} dftables.o -o dftables
23         oe_runmake
24 }
25
26 do_stage () {
27         oe_soinstall .libs/libpcreposix.so.0.0.0 ${STAGING_LIBDIR}/
28         install -m 0644 .libs/libpcreposix.a ${STAGING_LIBDIR}/
29         install -m 0644 .libs/libpcreposix.lai ${STAGING_LIBDIR}/libpcreposix.la
30         oe_soinstall .libs/libpcre.so.0.0.1 ${STAGING_LIBDIR}/
31         install -m 0644 .libs/libpcre.a ${STAGING_LIBDIR}/
32         install -m 0644 .libs/libpcre.lai ${STAGING_LIBDIR}/libpcre.la
33         
34         install -m 0644 pcre.h ${STAGING_INCDIR}/
35         install -m 0644 pcreposix.h ${STAGING_INCDIR}/
36 }