1DESCRIPTION = "The gSOAP toolkit provides a unique SOAP-to-C/C++ language binding \ 2for the development of SOAP Web Services and clients." 3SECTION = "devel" 4LICENSE = "GPL-2.0-with-OpenSSL-exception" 5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4f40a941379143186f9602242c3fb729 \ 6 file://GPLv2_license.txt;md5=a33672dbe491b6517750a0389063508b" 7 8SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}2/${BPN}_${PV}.zip \ 9 " 10SRC_URI[md5sum] = "0925d25bc455047b01d4fe9814d30173" 11SRC_URI[sha256sum] = "4e74838baf5437e95ae17aa3efb48bd0621f483bff4424f6255fcf327ff80765" 12 13inherit autotools 14 15BBCLASSEXTEND = "native" 16 17S = "${WORKDIR}/${BPN}-2.8" 18 19PARALLEL_MAKE = "" 20 21EXTRA_OEMAKE:class-target = "SOAP=${STAGING_BINDIR_NATIVE}/soapcpp2" 22 23DEPENDS = "openssl zlib flex bison bison-native" 24DEPENDS:append:class-target = " gsoap-native" 25 26do_install:append() { 27 install -d ${D}${libdir} 28 for lib in libgsoapssl libgsoapssl++ libgsoap libgsoapck++ libgsoap++ libgsoapck 29 do 30 oe_libinstall -C gsoap $lib ${D}${libdir} 31 done 32} 33 34do_install:class-native() { 35 oe_runmake DESTDIR=${D} BINDIR=${D}${bindir} install 36} 37 38FILES:${PN} = "${bindir}/wsdl2h ${bindir}/soapcpp2" 39FILES:${PN} += "${datadir}" 40FILES:${PN}-staticdev = "${libdir}" 41FILES:${PN}-dev = "${includedir}" 42RRECOMMENDS:${PN}-dev = "${PN}-staticdev" 43