diff options
author | obrien <obrien@FreeBSD.org> | 2004-04-19 11:42:54 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-04-19 11:42:54 +0000 |
commit | 974063c5991f451b5e78e079ce4ba41406e164a5 (patch) | |
tree | 2c13a9305cc6da3bcb0c2f72ddc119ac64516acd /ftp/ncftp3 | |
parent | 53dbe8ce3c39014aa14fa59237c78ba056e4610a (diff) | |
download | FreeBSD-ports-974063c5991f451b5e78e079ce4ba41406e164a5.zip FreeBSD-ports-974063c5991f451b5e78e079ce4ba41406e164a5.tar.gz |
Make 'pkg_add -r ncftp' now refer to ncftp3. The ncftp3 binary is now
installed as `bin/ncftp'. This behavior can be changed by building with
INSTALL_AS_NCFTP3 for ncftp3; and INSTALL_AS_NCFTP for ncftp & ncftp2.
Diffstat (limited to 'ftp/ncftp3')
-rw-r--r-- | ftp/ncftp3/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftp/ncftp3/Makefile b/ftp/ncftp3/Makefile index c72f10d..2066070 100644 --- a/ftp/ncftp3/Makefile +++ b/ftp/ncftp3/Makefile @@ -24,10 +24,10 @@ USE_BZIP2= yes .include <bsd.port.pre.mk> -.if defined(INSTALL_AS_NCFTP) -LATEST_LINK= ncftp -.else +.if defined(INSTALL_AS_NCFTP3) LATEST_LINK= ncftp3 +.else +LATEST_LINK= ncftp .endif WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} INSTALLS_SHLIB= yes @@ -44,7 +44,7 @@ LIBSTRN= libStrn.so.1 pre-fetch: @${ECHO} "" - @${ECHO} "Use INSTALL_AS_NCFTP=yes to install ncftp3 as ${PREFIX}/bin/ncftp" + @${ECHO} "Use INSTALL_AS_NCFTP3=yes to install ncftp v3 as ${PREFIX}/bin/ncftp3" @${ECHO} "" pre-build: |