eb74facdaf
>From ChangeLog: Some bugs have been fixed. o use trio library if system's printf is broken with %lld. o fixed single quote escaping in several places. o fixed coredump if service is unknown. o fixed keep-alive for http/1.1. o fixed uploading in ssl enabled ftp when data connection is protected. o don't send AUTH TLS to ftp proxy. o fixed fish protocol module.
38 lines
999 B
Makefile
38 lines
999 B
Makefile
# $OpenBSD: Makefile,v 1.27 2002/02/07 07:00:46 kevlo Exp $
|
|
|
|
COMMENT= "shell-like command line ftp client"
|
|
|
|
DISTNAME= lftp-2.4.9
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.460
|
|
MASTER_SITES= http://the.wiretapped.net/mirrors/lftp/ \
|
|
ftp://ftp.ayamura.org/pub/lftp/ \
|
|
${MASTER_SITE_SUNSITE} \
|
|
ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \
|
|
http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/
|
|
MASTER_SITE_SUBDIR= system/network/file-transfer/
|
|
|
|
HOMEPAGE= http://lftp.yar.ru/
|
|
|
|
MAINTAINER= Kevin Lo <kevlo@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-ssl
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
MODULES= gettext
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lftp
|
|
${INSTALL_DATA} ${WRKSRC}/lftp.conf ${PREFIX}/share/examples/lftp/lftp.conf-sample
|
|
|
|
.include <bsd.port.mk>
|