1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/ftp/ncftp1/Makefile
Adam Weinberger 6817641b20 STAGE support, and turn "INSTALL_AS_NCFTP" into an OPTION. Note
that the port still doesn't build.
2014-04-18 19:21:04 +00:00

30 lines
685 B
Makefile

# Created by: jkh
# $FreeBSD$
PORTNAME= ncftp
PORTVERSION= 1.9.5
CATEGORIES= ftp
MASTER_SITES= ftp://ftp.ncftp.com/ncftp/
PKGNAMESUFFIX= 1
MAINTAINER= obrien@FreeBSD.org
COMMENT= FTP replacement with advanced user interface
OPTIONS_DEFINE= AS_NCFTP
AS_NCFTP_DESC= Install binary as ncftp instead of ncftp1
.include <bsd.port.options.mk>
NCFTP= ${PORTNAME}
.if empty(PORT_OPTIONS:MAS_NCFTP)
NCFTP:= ${NCFTP}${PKGNAMESUFFIX}
.endif
PLIST_FILES= bin/${NCFTP} man/man1/${NCFTP}.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${NCFTP}
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/${NCFTP}.1.gz
.include <bsd.port.mk>