mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02:00
This will allow for easier configuration of curl for SSL vs gnutls [YOCTO #6329] (From OE-Core rev: 6a8144390eb2dee6e1baf7be75cffcacbb247002) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
66 lines
2.3 KiB
BlitzBasic
66 lines
2.3 KiB
BlitzBasic
SUMMARY = "Command line tool and library for client-side URL transfers"
|
|
HOMEPAGE = "http://curl.haxx.se/"
|
|
BUGTRACKER = "http://curl.haxx.se/mail/list.cgi?list=curl-tracker"
|
|
SECTION = "console/network"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac"
|
|
|
|
DEPENDS = "zlib gnutls"
|
|
DEPENDS_class-native = "zlib-native openssl-native"
|
|
DEPENDS_class-nativesdk = "nativesdk-zlib"
|
|
|
|
SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \
|
|
file://pkgconfig_fix.patch \
|
|
"
|
|
|
|
# curl likes to set -g0 in CFLAGS, so we stop it
|
|
# from mucking around with debug options
|
|
#
|
|
SRC_URI += " file://configure_ac.patch"
|
|
|
|
SRC_URI[md5sum] = "7dda0cc2e4136f78d5801ac347be696b"
|
|
SRC_URI[sha256sum] = "24502492de3168b0556d8e1a06f14f7589e57b204917d602a572e14239b3e09e"
|
|
|
|
inherit autotools pkgconfig binconfig multilib_header
|
|
|
|
PACKAGECONFIG ??= "gnutls ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
|
|
PACKAGECONFIG_class-native = "ipv6 ssl"
|
|
PACKAGECONFIG_class-nativesdk = "ipv6"
|
|
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
|
PACKAGECONFIG[ssl] = "--with-ssl, --without-ssl, ,"
|
|
PACKAGECONFIG[gnutls] = "--with-gnutls=${STAGING_LIBDIR}/../, --without-gnutls, gnutls,"
|
|
|
|
EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
|
|
--without-libssh2 \
|
|
--with-random=/dev/urandom \
|
|
--without-libidn \
|
|
--enable-crypto-auth \
|
|
--disable-ldap \
|
|
--disable-ldaps \
|
|
--with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \
|
|
"
|
|
|
|
do_configure_prepend() {
|
|
sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g ${S}/configure.ac
|
|
}
|
|
|
|
do_install_append() {
|
|
oe_multilib_header curl/curlbuild.h
|
|
}
|
|
|
|
PACKAGES =+ "lib${BPN} lib${BPN}-dev lib${BPN}-staticdev lib${BPN}-doc"
|
|
|
|
FILES_lib${BPN} = "${libdir}/lib*.so.*"
|
|
RRECOMMENDS_lib${BPN} += "ca-certificates"
|
|
FILES_lib${BPN}-dev = "${includedir} \
|
|
${libdir}/lib*.so \
|
|
${libdir}/lib*.la \
|
|
${libdir}/pkgconfig \
|
|
${datadir}/aclocal \
|
|
${bindir}/*-config"
|
|
FILES_lib${BPN}-staticdev = "${libdir}/lib*.a"
|
|
FILES_lib${BPN}-doc = "${mandir}/man3 \
|
|
${mandir}/man1/curl-config.1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|