aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/curl/curl_7.22.0.bb
diff options
context:
space:
mode:
authorMei Lei <lei.mei@intel.com>2011-12-22 14:17:22 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-22 13:16:09 +0000
commitcf4b60ef5665809e8b64d5f02082e119966aa3b9 (patch)
tree8f307926d484c0b872913405ebd6d68a27628127 /meta/recipes-support/curl/curl_7.22.0.bb
parentc1a9304eb8e40c6b34b190d82dad1d6d3499713a (diff)
downloadopenembedded-core-contrib-cf4b60ef5665809e8b64d5f02082e119966aa3b9.tar.gz
curl: Upgrade from 7.22.0 to 7.23.1
Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl/curl_7.22.0.bb')
-rw-r--r--meta/recipes-support/curl/curl_7.22.0.bb61
1 files changed, 0 insertions, 61 deletions
diff --git a/meta/recipes-support/curl/curl_7.22.0.bb b/meta/recipes-support/curl/curl_7.22.0.bb
deleted file mode 100644
index 9ca450a87d..0000000000
--- a/meta/recipes-support/curl/curl_7.22.0.bb
+++ /dev/null
@@ -1,61 +0,0 @@
-DESCRIPTION = "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_virtclass-native = "zlib-native"
-DEPENDS_virtclass-nativesdk = "zlib-nativesdk"
-PR = "r0"
-
-SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \
- file://noldlibpath.patch \
- file://pkgconfig_fix.patch"
-
-SRC_URI[md5sum] = "bdb5c226d37c4a6082c70e7ef6f63060"
-SRC_URI[sha256sum] = "bda0da862322b122784f5a9d7a65efdd99a6061292cfb8e9357e0c67c03e5112"
-
-inherit autotools pkgconfig binconfig
-
-EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
- --without-ssl \
- --without-libssh2 \
- --with-random=/dev/urandom \
- --without-libidn \
- --enable-crypto-auth \
- ${CURLGNUTLS} \
- "
-
-CURLGNUTLS = " --with-gnutls=${STAGING_LIBDIR}/../"
-CURLGNUTLS_virtclass-native = "--without-gnutls"
-CURLGNUTLS_virtclass-nativesdk = "--without-gnutls"
-
-do_configure_prepend() {
- sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g configure.ac
-}
-
-PACKAGES += "${PN}-certs libcurl libcurl-dev libcurl-doc"
-
-FILES_${PN} = "${bindir}/curl"
-
-FILES_${PN}-certs = "${datadir}/curl/curl-*"
-PACKAGE_ARCH_${PN}-certs = "all"
-
-FILES_${PN}-doc = "${mandir}/man1/curl.1"
-
-FILES_lib${BPN} = "${libdir}/lib*.so.*"
-RRECOMMENDS_lib${BPN} += "${PN}-certs"
-FILES_lib${BPN}-dev = "${includedir} \
- ${libdir}/lib*.so \
- ${libdir}/lib*.a \
- ${libdir}/lib*.la \
- ${libdir}/pkgconfig \
- ${datadir}/aclocal \
- ${bindir}/*-config"
-
-FILES_lib${BPN}-doc = "${mandir}/man3 \
- ${mandir}/man1/curl-config.1"
-
-BBCLASSEXTEND = "native nativesdk"