2002-10-30 13:08:24 +01:00
|
|
|
# Ports collection makefile for: ftp-tls
|
|
|
|
# Date created: 24 October 2002
|
|
|
|
# Whom: marius@alchemy.franken.de
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= ftp-tls
|
2003-10-09 10:47:43 +02:00
|
|
|
PORTVERSION= 20031008
|
2002-10-30 13:08:24 +01:00
|
|
|
CATEGORIES= ftp security
|
2005-08-30 20:37:02 +02:00
|
|
|
MASTER_SITES= ftp://ftp.zeist.de/pub/distfiles/
|
2002-10-30 13:08:24 +01:00
|
|
|
|
2004-04-20 15:49:29 +02:00
|
|
|
MAINTAINER= marius@FreeBSD.org
|
2003-02-21 13:06:51 +01:00
|
|
|
COMMENT= Ftp client supporting FTP AUTH TLS
|
2002-10-30 13:08:24 +01:00
|
|
|
|
2003-08-29 21:52:59 +02:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_OPENSSL= yes
|
2002-10-30 13:08:24 +01:00
|
|
|
|
|
|
|
MAN1= ftp-tls.1
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${OSVERSION} < 400000
|
|
|
|
BROKEN= "Not supported on systems prior to FreeBSD 4.0 (missing getaddrinfo())"
|
|
|
|
.endif
|
|
|
|
|
2003-05-21 17:25:56 +02:00
|
|
|
CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE}
|
|
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
|
|
|
2002-10-30 13:08:24 +01:00
|
|
|
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 10:14:24 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
.for i in README.TLS draft-murray-auth-ftp-ssl-09.txt
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
2002-10-30 13:08:24 +01:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|