mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Update to 3.7.3
- Pass maintainership to submitter PR: 124069 Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com>
This commit is contained in:
parent
79afaab21e
commit
0d9cd53bf0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214358
6 changed files with 62 additions and 14 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= lftp
|
||||
PORTVERSION= 3.7.1
|
||||
PORTVERSION= 3.7.3
|
||||
CATEGORIES= ftp ipv6
|
||||
MASTER_SITES= ftp://ftp.wiretapped.net/pub/mirrors/lftp/ \
|
||||
ftp://ftp.wiretapped.net/pub/mirrors/lftp/old/ \
|
||||
|
@ -20,7 +20,7 @@ MASTER_SITES= ftp://ftp.wiretapped.net/pub/mirrors/lftp/ \
|
|||
http://lftp.cybermirror.org/ \
|
||||
http://lftp.cybermirror.org/old/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= ganael.laplanche@martymac.com
|
||||
COMMENT= Shell-like command line ftp client
|
||||
|
||||
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
|
||||
|
@ -48,20 +48,25 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/libreadline.so.5:${PORTSDIR}/devel/readline
|
|||
.endif
|
||||
|
||||
.if defined(WITH_GNUTLS)
|
||||
CONFIGURE_ARGS+= --with-gnutls
|
||||
LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls
|
||||
CONFIGURE_ARGS+= --with-gnutls
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-gnutls
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_OPENSSL)
|
||||
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
|
||||
CONFIGURE_ARGS+= --with-openssl
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-openssl
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_NLS)
|
||||
USE_GETTEXT= yes
|
||||
CONFIGURE_ARGS+= --enable-nls
|
||||
PLIST_SUB+= NLS=""
|
||||
.else
|
||||
CONFIGURE_ARGS+=--disable-nls
|
||||
CONFIGURE_ARGS+= --disable-nls
|
||||
PLIST_SUB+= NLS="@comment "
|
||||
.endif
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (lftp-3.7.1.tar.bz2) = 60bb61fc1a5e96392bbd2dc88b938109
|
||||
SHA256 (lftp-3.7.1.tar.bz2) = a91b411acd3e1df394a8340a8ce0352795486cbc032e49d7093dc6a9cfb42864
|
||||
SIZE (lftp-3.7.1.tar.bz2) = 1165288
|
||||
MD5 (lftp-3.7.3.tar.bz2) = fc98506620b059d712341d624eb720d6
|
||||
SHA256 (lftp-3.7.3.tar.bz2) = f81d70b148d1f460658dad8a48b21b8ed918f60211770299151b64c8e49edfcf
|
||||
SIZE (lftp-3.7.3.tar.bz2) = 1315201
|
||||
|
|
41
ftp/lftp/files/patch-lib-Makefile.in
Normal file
41
ftp/lftp/files/patch-lib-Makefile.in
Normal file
|
@ -0,0 +1,41 @@
|
|||
--- 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 @@
|
||||
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
|
||||
|
||||
@@ -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)
|
||||
- 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 \
|
||||
- sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
|
||||
- $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
||||
- rm -f $(charset_tmp) ; \
|
||||
- fi ; \
|
||||
- fi
|
||||
|
||||
uninstall-local: all-local
|
||||
- if test -f $(charset_alias); then \
|
||||
- sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
|
||||
- if grep '^# Packages using this file: $$' $(charset_tmp) \
|
||||
- > /dev/null; then \
|
||||
- rm -f $(charset_alias); \
|
||||
- else \
|
||||
- $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
|
||||
- fi; \
|
||||
- rm -f $(charset_tmp); \
|
||||
- fi
|
||||
|
||||
charset.alias: config.charset
|
||||
rm -f t-$@ $@
|
|
@ -1,6 +1,6 @@
|
|||
--- ltmain.sh.orig Fri May 23 15:22:56 2003
|
||||
+++ ltmain.sh Thu May 27 12:50:36 2004
|
||||
@@ -5425,10 +5425,12 @@
|
||||
--- build-aux/ltmain.sh.orig 2007-12-29 12:41:13.000000000 +0100
|
||||
+++ build-aux/ltmain.sh 2008-05-28 16:41:23.818197162 +0200
|
||||
@@ -6058,10 +6058,12 @@
|
||||
fi
|
||||
|
||||
# Install the pseudo-library for information purposes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- src/Makefile.in.orig Thu Dec 23 15:03:41 2004
|
||||
+++ src/Makefile.in Thu Dec 23 15:06:20 2004
|
||||
@@ -834,7 +834,7 @@
|
||||
--- src/Makefile.in.orig 2008-05-23 15:54:07.000000000 +0200
|
||||
+++ src/Makefile.in 2008-05-28 16:41:23.857301294 +0200
|
||||
@@ -1217,7 +1217,7 @@
|
||||
|
||||
info-am:
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ lib/liblftp-tasks.a
|
|||
%%DATADIR%%/import-ncftp
|
||||
%%DATADIR%%/import-netscape
|
||||
%%DATADIR%%/verify-file
|
||||
@dirrm %%DATADIR%%
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/lftp.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/lftp.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/lftp.mo
|
||||
|
@ -21,4 +22,5 @@ lib/liblftp-tasks.a
|
|||
%%NLS%%share/locale/zh_CN/LC_MESSAGES/lftp.mo
|
||||
%%NLS%%share/locale/zh_HK/LC_MESSAGES/lftp.mo
|
||||
%%NLS%%share/locale/zh_TW/LC_MESSAGES/lftp.mo
|
||||
@dirrm %%DATADIR%%
|
||||
%%NLS%%@dirrmtry share/locale/zh_HK/LC_MESSAGES
|
||||
%%NLS%%@dirrmtry share/locale/zh_HK
|
||||
|
|
Loading…
Add table
Reference in a new issue