summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/lftp
diff options
context:
space:
mode:
authorMingli Yu <Mingli.Yu@windriver.com>2016-08-18 15:05:11 +0800
committerJoe MacDonald <joe_macdonald@mentor.com>2016-09-05 13:34:11 -0400
commit908a27cab82a45c60bba5d38deac98a6893b8c7d (patch)
tree123cb35aa1e14b5ec6db3fc84799ff6092af0966 /meta-networking/recipes-connectivity/lftp
parent215740db679714c686df05a96137107054d4582e (diff)
downloadmeta-openembedded-908a27cab82a45c60bba5d38deac98a6893b8c7d.tar.gz
lftp: 4.6.3a -> 4.7.3
* Upgrade lftp from 4.6.3a to 4.7.3 * Add readline and expat to PACKAGECONFIG and update zlib to add detailed prefix as better configure checks is included in 4.7.3 as below commit from lftp repo https://github.com/lavv17/lftp.git commit c2ef3838421ca954c378d109c0328fdeea3fc89e Author: Alexander V. Lukyanov <lavv17f@gmail.com> Date: Mon Dec 14 11:34:38 2015 +0300 use better configure checks for expat, zlib, readline Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/lftp')
-rw-r--r--meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb (renamed from meta-networking/recipes-connectivity/lftp/lftp_4.6.3a.bb)11
1 files changed, 6 insertions, 5 deletions
diff --git a/meta-networking/recipes-connectivity/lftp/lftp_4.6.3a.bb b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
index b25db8bbc..e4a8e49cf 100644
--- a/meta-networking/recipes-connectivity/lftp/lftp_4.6.3a.bb
+++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
@@ -5,23 +5,24 @@ HOMEPAGE = "http://lftp.yar.ru/"
5SECTION = "console/network" 5SECTION = "console/network"
6LICENSE = "GPLv3" 6LICENSE = "GPLv3"
7LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" 7LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
8DEPENDS = "readline"
9 8
10SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \ 9SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \
11 file://fix-gcc-6-conflicts-signbit.patch \ 10 file://fix-gcc-6-conflicts-signbit.patch \
12 " 11 "
13SRC_URI[md5sum] = "2777dd514d21fe1da764bedd1d0ab36c" 12SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"
14SRC_URI[sha256sum] = "a8b53e5ca2c1acbecd181c87f21a8673ca9038dc9f2be6ab8c23790bd91fd446" 13SRC_URI[sha256sum] = "ce6519831603c19c2cf2e3c10b41d6ddc87a16049b99383e7b9b77fbc7707214"
15 14
16inherit autotools gettext pkgconfig 15inherit autotools gettext pkgconfig
17 16
18EXTRA_OECONF += "--with-modules" 17EXTRA_OECONF += "--with-modules"
19 18
20PACKAGECONFIG ??= "libidn openssl zlib gnutls" 19PACKAGECONFIG ??= "libidn openssl zlib gnutls readline expat"
21PACKAGECONFIG[libidn] = "--with-libidn, --without-libidn, libidn" 20PACKAGECONFIG[libidn] = "--with-libidn, --without-libidn, libidn"
22PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl" 21PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl"
23PACKAGECONFIG[zlib] = "--with-zlib, --without-zlib, zlib" 22PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_INCDIR}/.., --without-zlib, zlib"
24PACKAGECONFIG[gnutls] = "--with-gnutls, --without-gnutls, gnutls" 23PACKAGECONFIG[gnutls] = "--with-gnutls, --without-gnutls, gnutls"
24PACKAGECONFIG[readline] = "--with-readline --with-readline-inc=${STAGING_INCDIR} --with-readline-lib=-lreadline, , readline"
25PACKAGECONFIG[expat] = "--with-expat=${STAGING_INCDIR}/.. --with-expat-inc=${STAGING_INCDIR} --with-expat-lib=-lexpat, , expat"
25 26
26FILES_${PN}-dbg += "${libdir}/lftp/${PV}/.debug" 27FILES_${PN}-dbg += "${libdir}/lftp/${PV}/.debug"
27RDEPENDS_${PN} = "perl bash readline" 28RDEPENDS_${PN} = "perl bash readline"