695e5219fc
>From ChangeLog: - security fix: long error message from ftp server could cause buffer overflow. - fixed ftp:fix-pasv-address. Now the address should be fixed properly. - handle HTTP `100 Continue' in any open mode. - status line fixed: don't write a space to last screen column. - security fix: check that addresses have proper length.
37 lines
980 B
Makefile
37 lines
980 B
Makefile
# $OpenBSD: Makefile,v 1.32 2002/07/01 02:03:31 kevlo Exp $
|
|
|
|
COMMENT= "shell-like command line ftp client"
|
|
|
|
DISTNAME= lftp-2.5.4
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.460
|
|
MASTER_SITES= http://the.wiretapped.net/mirrors/lftp/ \
|
|
ftp://ftp.ayamura.org/pub/lftp/ \
|
|
${MASTER_SITE_SUNSITE:=system/network/file-transfer/} \
|
|
ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \
|
|
http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/
|
|
|
|
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>
|