mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
8f3df8b447
- Automatically convert all licenses to valid SPDX license expressions using convert-spdx-licenses.py Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
47 lines
1.4 KiB
BlitzBasic
47 lines
1.4 KiB
BlitzBasic
SUMMARY = "C++ framework for implementing distributed and networked applications"
|
|
DESCRIPTION = "C++ network programming framework that implements many core \
|
|
patterns for concurrent communication software"
|
|
LICENSE = "LicenseRef-ACE-TAO-CIAO"
|
|
HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d2c090e9c730fd91677782d8e2091d77"
|
|
|
|
DEPENDS += "openssl gperf-native"
|
|
|
|
SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-8_0_6/ACE-${PV}.tar.bz2 \
|
|
file://ace_config.patch \
|
|
file://no_sysctl.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "4c5cb09ba91cf91ee86d1ed83cde9a1d3e4aca1da44dd372495137e2c955eff0"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/DOCGroup/ACE_TAO/releases"
|
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
CVE_STATUS[CVE-2009-1147] = "cpe-incorrect: this CVE is for vmware ace"
|
|
|
|
COMPATIBLE_HOST:libc-musl = "null"
|
|
|
|
S = "${UNPACKDIR}/ACE_wrappers"
|
|
B = "${UNPACKDIR}/ACE_wrappers/ace"
|
|
export ACE_ROOT = "${UNPACKDIR}/ACE_wrappers"
|
|
|
|
inherit pkgconfig
|
|
|
|
CXXFLAGS:append = " -fpermissive -Wno-deprecated-declarations"
|
|
CXX:append = " -ffile-prefix-map=${UNPACKDIR}= "
|
|
export CCFLAGS = "${CXXFLAGS}"
|
|
|
|
EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0"
|
|
|
|
do_install() {
|
|
export D="${D}"
|
|
oe_runmake install
|
|
|
|
for i in $(find ${D} -name "*.pc") ; do
|
|
sed -i -e s:${D}::g \
|
|
-e s:/${TARGET_SYS}::g \
|
|
$i
|
|
done
|
|
|
|
rm -r ${D}/usr/share
|
|
}
|