diff options
| author | Marko Lindqvist <cazfi74@gmail.com> | 2012-12-26 03:10:56 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-31 09:43:26 +0000 |
| commit | 1cfb12babc308157f900135ef2be8bb7c74c58b8 (patch) | |
| tree | d9fd7c0b34e1c940ebf7709f990f329c3021c872 /meta/recipes-support/curl/curl_7.28.1.bb | |
| parent | b7515e25bfaa45c931a512d4850b75125fc18a68 (diff) | |
| download | poky-1cfb12babc308157f900135ef2be8bb7c74c58b8.tar.gz | |
curl: update to upstream version 7.28.1
(From OE-Core rev: 2cb1285195439faa48571acc5346d25b4de214b4)
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl/curl_7.28.1.bb')
| -rw-r--r-- | meta/recipes-support/curl/curl_7.28.1.bb | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl_7.28.1.bb b/meta/recipes-support/curl/curl_7.28.1.bb new file mode 100644 index 0000000000..1f200668f4 --- /dev/null +++ b/meta/recipes-support/curl/curl_7.28.1.bb | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | DESCRIPTION = "Command line tool and library for client-side URL transfers." | ||
| 2 | HOMEPAGE = "http://curl.haxx.se/" | ||
| 3 | BUGTRACKER = "http://curl.haxx.se/mail/list.cgi?list=curl-tracker" | ||
| 4 | SECTION = "console/network" | ||
| 5 | LICENSE = "MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac" | ||
| 7 | |||
| 8 | DEPENDS = "zlib gnutls" | ||
| 9 | DEPENDS_class-native = "zlib-native openssl-native" | ||
| 10 | DEPENDS_class-nativesdk = "nativesdk-zlib" | ||
| 11 | PR = "r2" | ||
| 12 | |||
| 13 | SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \ | ||
| 14 | file://pkgconfig_fix.patch" | ||
| 15 | |||
| 16 | # curl likes to set -g0 in CFLAGS, so we stop it | ||
| 17 | # from mucking around with debug options | ||
| 18 | # | ||
| 19 | SRC_URI += " file://configure_ac.patch" | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "26eb081c999b0e203770869427e9a93d" | ||
| 22 | SRC_URI[sha256sum] = "e569d6deb58a516e6858cd4c348949e0397433e1354666bafde1a52d1ea77367" | ||
| 23 | |||
| 24 | inherit autotools pkgconfig binconfig | ||
| 25 | |||
| 26 | EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ | ||
| 27 | --without-libssh2 \ | ||
| 28 | --with-random=/dev/urandom \ | ||
| 29 | --without-libidn \ | ||
| 30 | --enable-crypto-auth \ | ||
| 31 | --disable-ldap \ | ||
| 32 | --disable-ldaps \ | ||
| 33 | ${CURLGNUTLS} \ | ||
| 34 | " | ||
| 35 | |||
| 36 | CURLGNUTLS = " --with-gnutls=${STAGING_LIBDIR}/../ --without-ssl" | ||
| 37 | CURLGNUTLS_class-native = "--without-gnutls --with-ssl" | ||
| 38 | CURLGNUTLS_class-nativesdk = "--without-gnutls --without-ssl" | ||
| 39 | |||
| 40 | do_configure_prepend() { | ||
| 41 | sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g ${S}/configure.ac | ||
| 42 | } | ||
| 43 | |||
| 44 | PACKAGES =+ "${PN}-certs libcurl libcurl-dev libcurl-staticdev libcurl-doc" | ||
| 45 | |||
| 46 | FILES_${PN}-certs = "${datadir}/curl/curl-*" | ||
| 47 | PACKAGE_ARCH_${PN}-certs = "all" | ||
| 48 | |||
| 49 | FILES_lib${BPN} = "${libdir}/lib*.so.*" | ||
| 50 | RRECOMMENDS_lib${BPN} += "${PN}-certs" | ||
| 51 | FILES_lib${BPN}-dev = "${includedir} \ | ||
| 52 | ${libdir}/lib*.so \ | ||
| 53 | ${libdir}/lib*.la \ | ||
| 54 | ${libdir}/pkgconfig \ | ||
| 55 | ${datadir}/aclocal \ | ||
| 56 | ${bindir}/*-config" | ||
| 57 | FILES_lib${BPN}-staticdev = "${libdir}/lib*.a" | ||
| 58 | FILES_lib${BPN}-doc = "${mandir}/man3 \ | ||
| 59 | ${mandir}/man1/curl-config.1" | ||
| 60 | |||
| 61 | BBCLASSEXTEND = "native nativesdk" | ||
