diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2004-04-19 11:42:54 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2004-04-19 11:42:54 +0000 |
commit | 6427a0487521b48d7971d29dcedd62814e21d618 (patch) | |
tree | 950a3cf46c61a2fe6f6b6f37fd8632993bc50aec /ftp/ncftp3 | |
parent | - Use /var/spool/leafnode as the default spooldir (diff) |
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 c72f10da36a2..2066070255a7 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: |