diff options
author | salo <salo@pkgsrc.org> | 2005-05-30 16:01:40 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2005-05-30 16:01:40 +0000 |
commit | 838053b91b78e882f42bbb74d3ad574863e45ff8 (patch) | |
tree | 0e601c0d22a478634c34943abcf83568cbbaf15e /net/lftp/Makefile | |
parent | fea026691496512c8ffc74781d72a61f0bfce60e (diff) | |
download | pkgsrc-838053b91b78e882f42bbb74d3ad574863e45ff8.tar.gz |
Update to version 3.2.1
Changes:
- convert to PKG_OPTIONS framework
- make gnutls default option, ssl optional
3.2.1:
======
- fixed handling of file names starting with a tilde in sftp protocol.
- fixed minor problem with `lftp -u user --help'.
- fixed compilation with modules.
- fixed compilation without OpenSSL and GnuTLS.
- fixed compilation with certain compiler versions.
- relaxed version requirement on GnuTLS.
3.2.0:
======
- added support for gnutls library. Now OpenSSL is only used if explicitly
configured with option --with-openssl, and by default gnutls is used.
- added parser for AS/400 ftp listing.
- fixed a coredump in mirror when symbolic link target is unknown.
Diffstat (limited to 'net/lftp/Makefile')
-rw-r--r-- | net/lftp/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/lftp/Makefile b/net/lftp/Makefile index f1d8fb6f720..59c262cf83c 100644 --- a/net/lftp/Makefile +++ b/net/lftp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.56 2005/04/18 16:19:16 salo Exp $ +# $NetBSD: Makefile,v 1.57 2005/05/30 16:01:40 salo Exp $ # -DISTNAME= lftp-3.1.3 +DISTNAME= lftp-3.2.1 CATEGORIES= net MASTER_SITES= ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/ \ ftp://ftp.tuwien.ac.at/infosys/browsers/ftp/lftp/ \ @@ -26,7 +26,8 @@ USE_GNU_READLINE= # uses GNU readline internal _rl_mark_modified_lines SHLIBTOOL_OVERRIDE= libtool -CONFIGURE_ARGS+= --with-ssl=${SSLBASE} +.include "options.mk" + CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-modules @@ -44,6 +45,6 @@ post-install: .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/readline/buildlink3.mk" -.include "../../security/openssl/buildlink3.mk" +.include "../../textproc/expat/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |