diff options
author | beech <beech@FreeBSD.org> | 2009-03-15 06:31:46 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2009-03-15 06:31:46 +0800 |
commit | eb321f9c4009655c1bf984845675db9405ed45dd (patch) | |
tree | cbfca8f409a32b25e814fcd885fb07fec144f124 /ftp/lftp | |
parent | 4b67b0bed2a3969613422a7525f1ef569460cea4 (diff) | |
download | freebsd-ports-gnome-eb321f9c4009655c1bf984845675db9405ed45dd.tar.gz freebsd-ports-gnome-eb321f9c4009655c1bf984845675db9405ed45dd.tar.zst freebsd-ports-gnome-eb321f9c4009655c1bf984845675db9405ed45dd.zip |
- Update to 3.7.9
Changes (from Changelog):
* new setting ftp:prefer-epsv.
* add support for IPv6 scope for link-local addresses (Arkadiusz Miskiewicz).
* fix compilation on OpenBSD (Kevin Lo).
* fix parsing of NT unix-like listings where hour is one digit.
* gnulib sources updated, vsnprintf-posix module imported.
PR: ports/132480
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
Diffstat (limited to 'ftp/lftp')
-rw-r--r-- | ftp/lftp/Makefile | 2 | ||||
-rw-r--r-- | ftp/lftp/distinfo | 6 | ||||
-rw-r--r-- | ftp/lftp/files/patch-lib-Makefile.in | 21 |
3 files changed, 15 insertions, 14 deletions
diff --git a/ftp/lftp/Makefile b/ftp/lftp/Makefile index 61223a2fd522..7de5b6f75c1d 100644 --- a/ftp/lftp/Makefile +++ b/ftp/lftp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 3.7.8 +PORTVERSION= 3.7.9 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/ \ ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/old/ \ diff --git a/ftp/lftp/distinfo b/ftp/lftp/distinfo index dc45c4f3ddfb..53146f8d61c3 100644 --- a/ftp/lftp/distinfo +++ b/ftp/lftp/distinfo @@ -1,3 +1,3 @@ -MD5 (lftp-3.7.8.tar.bz2) = 999e2d77a2f1db5b6f883a8e3a40cee2 -SHA256 (lftp-3.7.8.tar.bz2) = 2c9ee5395a34e37a97b485a93bc691239f46f98db75bf26167dbf56323b2d613 -SIZE (lftp-3.7.8.tar.bz2) = 1385167 +MD5 (lftp-3.7.9.tar.bz2) = 3b7f85e73467d56488b32f5d746d6772 +SHA256 (lftp-3.7.9.tar.bz2) = b97a70007c163a0e56a2f87ddd60cdabceae537dc9d9b11e8158b97cb5c02f7e +SIZE (lftp-3.7.9.tar.bz2) = 1487185 diff --git a/ftp/lftp/files/patch-lib-Makefile.in b/ftp/lftp/files/patch-lib-Makefile.in index 7543ca708df3..dcc86fc56be0 100644 --- a/ftp/lftp/files/patch-lib-Makefile.in +++ b/ftp/lftp/files/patch-lib-Makefile.in @@ -1,29 +1,30 @@ ---- lib/Makefile.in.orig 2008-05-23 15:54:06.000000000 +0200 -+++ lib/Makefile.in 2008-05-28 17:40:42.280514020 +0200 -@@ -576,8 +576,6 @@ +--- lib/Makefile.in.orig 2009-03-09 17:51:32.687581242 +0000 ++++ lib/Makefile.in 2009-03-09 17:59:43.191630779 +0000 +@@ -879,8 +879,6 @@ libgnu_la_LDFLAGS = $(AM_LDFLAGS) GPERF = gperf LINK_WARNING_H = $(top_srcdir)/build-aux/link-warning.h -charset_alias = $(DESTDIR)$(libdir)/charset.alias -charset_tmp = $(DESTDIR)$(libdir)/charset.tmp all: $(BUILT_SOURCES) config.h - $(MAKE) $(AM_MAKEFLAGS) all-am + $(MAKE) $(AM_MAKEFLAGS) all-recursive -@@ -1107,29 +1105,8 @@ - all-local: charset.alias ref-add.sed ref-del.sed - install-exec-local: all-local - test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir) +@@ -1610,30 +1608,9 @@ + fi ; \ + if $$need_charset_alias; then \ + $(mkinstalldirs) $(DESTDIR)$(libdir) ; \ +- fi ; \ - if test -f $(charset_alias); then \ - sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \ - $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \ - rm -f $(charset_tmp) ; \ - else \ -- if test $(GLIBC21) = no; then \ +- if $$need_charset_alias; then \ - sed -f ref-add.sed charset.alias > $(charset_tmp) ; \ - $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \ - rm -f $(charset_tmp) ; \ - fi ; \ -- fi + fi uninstall-local: all-local - if test -f $(charset_alias); then \ |