2002-10-30 12:08:24 +00:00
|
|
|
# Ports collection makefile for: ftp-tls
|
|
|
|
# Date created: 24 October 2002
|
|
|
|
# Whom: marius@alchemy.franken.de
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= ftp-tls
|
2005-11-28 19:04:33 +00:00
|
|
|
PORTVERSION= 20051021
|
2002-10-30 12:08:24 +00:00
|
|
|
CATEGORIES= ftp security
|
2005-11-28 19:04:33 +00:00
|
|
|
MASTER_SITES= http://www.ford-hutchinson.com/~fh-1-pfh/
|
2002-10-30 12:08:24 +00:00
|
|
|
|
2004-04-20 13:49:29 +00:00
|
|
|
MAINTAINER= marius@FreeBSD.org
|
2003-02-21 12:06:51 +00:00
|
|
|
COMMENT= Ftp client supporting FTP AUTH TLS
|
2002-10-30 12:08:24 +00:00
|
|
|
|
2003-08-29 19:52:59 +00:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_OPENSSL= yes
|
2002-10-30 12:08:24 +00:00
|
|
|
|
|
|
|
MAN1= ftp-tls.1
|
|
|
|
|
2005-11-28 19:04:33 +00:00
|
|
|
CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE}
|
|
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
|
|
|
2002-10-30 12:08:24 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${OSVERSION} < 400000
|
|
|
|
BROKEN= "Not supported on systems prior to FreeBSD 4.0 (missing getaddrinfo())"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/ftp ${PREFIX}/bin/ftp-tls
|
|
|
|
@${INSTALL_MAN} ${WRKSRC}/ftp.1.TLS ${PREFIX}/man/man1/ftp-tls.1
|
2003-09-10 08:14:24 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
2005-11-28 19:04:33 +00:00
|
|
|
.for i in README.TLS draft-murray-auth-ftp-ssl-16.txt
|
2003-09-10 08:14:24 +00:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
2002-10-30 12:08:24 +00:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|