pkgsrc/net/lftp/options.mk
adam 949b8adbc4 Version 4.7.7:
mirror: fixed coredump when source directory does not exist.
mirror: don't create target directory if can't enter to the source directory.
ftp: fixed a rare hang when a NOOP was sent between "transfer ok" reply and EOF on data socket.
fixed xfer:log setting (compatibility alias).
ftp: don't use EPSV with a proxy.
2017-07-08 21:45:42 +00:00

47 lines
1.3 KiB
Makefile

# $NetBSD: options.mk,v 1.14 2017/07/08 21:45:42 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.lftp
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
PKG_OPTIONS_GROUP.ssl= gnutls ssl
PKG_SUPPORTED_OPTIONS= perl dnssec
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
PLIST_VARS+= perl
# SSL support
.if !empty(PKG_OPTIONS:Mgnutls)
USE_TOOLS+= pkg-config
CONFIGURE_ARGS+= --without-openssl
. include "../../security/gnutls/buildlink3.mk"
.elif !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --without-gnutls
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
. include "../../security/openssl/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-gnutls
CONFIGURE_ARGS+= --without-openssl
.endif
.PHONY: post-install-perl
.if !empty(PKG_OPTIONS:Mperl)
USE_TOOLS+= perl:run
DEPENDS+= p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5
DEPENDS+= p5-String-CRC32-[0-9]*:../../textproc/p5-String-CRC32
REPLACE_PERL+= src/convert-mozilla-cookies src/verify-file
PLIST.perl= yes
post-install-perl:
${INSTALL_SCRIPT} ${WRKSRC}/src/convert-mozilla-cookies \
${WRKSRC}/src/verify-file ${DESTDIR}${PREFIX}/share/lftp
.else
post-install-perl:
.endif
# DNSSEC support
.if !empty(PKG_OPTIONS:Mdnssec)
. include "../../security/dnssec-tools/buildlink3.mk"
CONFIGURE_ARGS+= --with-dnssec-local-validation
.endif