freebsd-ports/ftp/ftp-tls/Makefile
Marius Strobl 1e087a49e7 - Add MASTER_SITE_LOCAL as a backup master site, the primary one suffers
from outages at times.
- Fix compilation with GCC 4.x. [1]
- Quiet portlint.

Approved by:	netchild
Reported by:	kris [1]
Obtained from:	Fink [1]
2006-12-19 23:10:55 +00:00

42 lines
1,011 B
Makefile

# Ports collection makefile for: ftp-tls
# Date created: 24 October 2002
# Whom: marius@alchemy.franken.de
#
# $FreeBSD$
#
PORTNAME= ftp-tls
PORTVERSION= 20051021
CATEGORIES= ftp security
MASTER_SITES= http://www.ford-hutchinson.com/~fh-1-pfh/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= marius
MAINTAINER= marius@FreeBSD.org
COMMENT= Ftp client supporting FTP AUTH TLS
GNU_CONFIGURE= yes
USE_OPENSSL= yes
MAN1= ftp-tls.1
CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE}
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
.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
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in README.TLS draft-murray-auth-ftp-ssl-16.txt
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>