diff options
Diffstat (limited to 'meta-oe/recipes-connectivity/ace/ace_8.0.2.bb')
-rw-r--r-- | meta-oe/recipes-connectivity/ace/ace_8.0.2.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb new file mode 100644 index 0000000000..35252c3efc --- /dev/null +++ b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb | |||
@@ -0,0 +1,46 @@ | |||
1 | SUMMARY = "C++ framework for implementing distributed and networked applications" | ||
2 | DESCRIPTION = "C++ network programming framework that implements many core \ | ||
3 | patterns for concurrent communication software" | ||
4 | LICENSE = "ACE-TAO-CIAO" | ||
5 | HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d2c090e9c730fd91677782d8e2091d77" | ||
7 | |||
8 | DEPENDS += "openssl gperf-native" | ||
9 | |||
10 | SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-8_0_2/ACE-${PV}.tar.bz2 \ | ||
11 | file://ace_config.patch \ | ||
12 | file://no_sysctl.patch \ | ||
13 | " | ||
14 | SRC_URI[sha256sum] = "dba38a905858ec4a44c04b4bbaef42b891adf061e8c0bbdaa1dce2c04fcccb7f" | ||
15 | |||
16 | UPSTREAM_CHECK_URI = "https://github.com/DOCGroup/ACE_TAO/releases" | ||
17 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)" | ||
18 | |||
19 | CVE_STATUS[CVE-2009-1147] = "cpe-incorrect: this CVE is for vmware ace" | ||
20 | |||
21 | COMPATIBLE_HOST:libc-musl = "null" | ||
22 | |||
23 | S = "${UNPACKDIR}/ACE_wrappers" | ||
24 | B = "${UNPACKDIR}/ACE_wrappers/ace" | ||
25 | export ACE_ROOT = "${UNPACKDIR}/ACE_wrappers" | ||
26 | |||
27 | inherit pkgconfig | ||
28 | |||
29 | CXXFLAGS:append = " -fpermissive -Wno-deprecated-declarations" | ||
30 | CXX:append = " -ffile-prefix-map=${UNPACKDIR}= " | ||
31 | export CCFLAGS = "${CXXFLAGS}" | ||
32 | |||
33 | EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0" | ||
34 | |||
35 | do_install() { | ||
36 | export D="${D}" | ||
37 | oe_runmake install | ||
38 | |||
39 | for i in $(find ${D} -name "*.pc") ; do | ||
40 | sed -i -e s:${D}::g \ | ||
41 | -e s:/${TARGET_SYS}::g \ | ||
42 | $i | ||
43 | done | ||
44 | |||
45 | rm -r ${D}/usr/share | ||
46 | } | ||