mirror of
https://git.yoctoproject.org/poky
synced 2026-06-18 18:49:51 +00:00
9c1efb65c9
Previously the check for some recipes relied on sourceforge redirecting from downloads.sourceforge.net (SRC_URI is set to that) into the actual project page. Sourceforge does this for interactive browsers, but not for wget. With the check no longer mimicking a browser, and being truthful about coming from wget we need to explicitly fetch the project page in all cases, which is what this commit does. (many recipes already set this explicitly and don't need to be tweaked) (From OE-Core rev: 4c21ce6e34f6ce8fbf4db7bc2fd017c8f7a811b4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
75 lines
2.8 KiB
BlitzBasic
75 lines
2.8 KiB
BlitzBasic
DESCRIPTION = "The PCRE library is a set of functions that implement regular \
|
|
expression pattern matching using the same syntax and semantics as Perl 5. PCRE \
|
|
has its own native API, as well as a set of wrapper functions that correspond \
|
|
to the POSIX regular expression API."
|
|
SUMMARY = "Perl Compatible Regular Expressions"
|
|
HOMEPAGE = "http://www.pcre.org"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=b5d5d1a69a24ea2718263f1ff85a1c58"
|
|
SOURCEFORGE_PROJECT = "pcre"
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${SOURCEFORGE_PROJECT}/pcre-${PV}.tar.bz2 \
|
|
file://run-ptest \
|
|
file://Makefile \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "4dae6fdcd2bb0bb6c37b5f97c33c2be954da743985369cddac3546e3218bffb8"
|
|
|
|
CVE_PRODUCT = "pcre"
|
|
|
|
S = "${WORKDIR}/pcre-${PV}"
|
|
|
|
PROVIDES += "pcre"
|
|
DEPENDS += "bzip2 zlib"
|
|
|
|
PACKAGECONFIG ??= "pcre8 unicode-properties jit"
|
|
|
|
PACKAGECONFIG[pcre8] = "--enable-pcre8,--disable-pcre8"
|
|
PACKAGECONFIG[pcre16] = "--enable-pcre16,--disable-pcre16"
|
|
PACKAGECONFIG[pcre32] = "--enable-pcre32,--disable-pcre32"
|
|
PACKAGECONFIG[pcretest-readline] = "--enable-pcretest-libreadline,--disable-pcretest-libreadline,readline,"
|
|
PACKAGECONFIG[unicode-properties] = "--enable-unicode-properties,--disable-unicode-properties"
|
|
PACKAGECONFIG[jit] = "--enable-jit=auto,--disable-jit"
|
|
|
|
BINCONFIG = "${bindir}/pcre-config"
|
|
|
|
inherit autotools binconfig-disabled ptest sourceforge-releases
|
|
|
|
EXTRA_OECONF = "--enable-utf"
|
|
|
|
PACKAGES =+ "libpcrecpp libpcreposix pcregrep pcregrep-doc pcretest pcretest-doc"
|
|
|
|
SUMMARY:libpcrecpp = "${SUMMARY} - C++ wrapper functions"
|
|
SUMMARY:libpcreposix = "${SUMMARY} - C wrapper functions based on the POSIX regex API"
|
|
SUMMARY:pcregrep = "grep utility that uses perl 5 compatible regexes"
|
|
SUMMARY:pcregrep-doc = "grep utility that uses perl 5 compatible regexes - docs"
|
|
SUMMARY:pcretest = "program for testing Perl-comatible regular expressions"
|
|
SUMMARY:pcretest-doc = "program for testing Perl-comatible regular expressions - docs"
|
|
|
|
FILES:libpcrecpp = "${libdir}/libpcrecpp.so.*"
|
|
FILES:libpcreposix = "${libdir}/libpcreposix.so.*"
|
|
FILES:pcregrep = "${bindir}/pcregrep"
|
|
FILES:pcregrep-doc = "${mandir}/man1/pcregrep.1"
|
|
FILES:pcretest = "${bindir}/pcretest"
|
|
FILES:pcretest-doc = "${mandir}/man1/pcretest.1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install_ptest() {
|
|
t=${D}${PTEST_PATH}
|
|
cp ${UNPACKDIR}/Makefile $t
|
|
cp -r ${S}/testdata $t
|
|
for i in pcre_stringpiece_unittest pcregrep pcretest; \
|
|
do cp ${B}/.libs/$i $t; \
|
|
done
|
|
for i in RunTest RunGrepTest test-driver; \
|
|
do cp ${S}/$i $t; \
|
|
done
|
|
# Skip the fr_FR locale test. If the locale fr_FR is found, it is tested.
|
|
# If not found, the test is skipped. The test program assumes fr_FR is non-UTF-8
|
|
# locale so the test fails if fr_FR is UTF-8 locale.
|
|
sed -i -e 's:do3=yes:do3=no:g' ${D}${PTEST_PATH}/RunTest
|
|
}
|
|
|
|
RDEPENDS:${PN}-ptest += "make"
|