diff options
author | obrien <obrien@FreeBSD.org> | 1997-12-15 00:45:44 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-12-15 00:45:44 +0800 |
commit | 95dd13a09d6bec1bc1442081c690412fa498c65f (patch) | |
tree | 43b7ae5f562483d298c68e4cb6d47a7fc195c3d3 /ftp/ncftp3/Makefile | |
parent | d031537f9010a9356098a2346d93291e42a9ca1f (diff) | |
download | freebsd-ports-gnome-95dd13a09d6bec1bc1442081c690412fa498c65f.tar.gz freebsd-ports-gnome-95dd13a09d6bec1bc1442081c690412fa498c65f.tar.zst freebsd-ports-gnome-95dd13a09d6bec1bc1442081c690412fa498c65f.zip |
Creation of NcFTP version 3.x port.
Repository copied by: Satoshi
Diffstat (limited to 'ftp/ncftp3/Makefile')
-rw-r--r-- | ftp/ncftp3/Makefile | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/ftp/ncftp3/Makefile b/ftp/ncftp3/Makefile index d3332a891aa9..cc7cbc82b46f 100644 --- a/ftp/ncftp3/Makefile +++ b/ftp/ncftp3/Makefile @@ -1,23 +1,39 @@ +# ex:ts=8 # New ports collection makefile for: ncftp2 # Version required: 2.4.2 # Date created: 4 Nov 1994 # Whom: ache # -# $Id: Makefile,v 1.37 1996/11/18 11:35:35 asami Exp $ +# $Id: Makefile,v 1.38 1997/01/09 11:58:47 ache Exp $ # -DISTNAME= ncftp-2.4.2 +DISTNAME= ncftp-3.0beta6-src +PKGNAME= ncftp-3.0b6 CATEGORIES= net -MASTER_SITES= ftp://ftp.probe.net/pub/ncftp/ +MASTER_SITES= ftp://ftp.probe.net/pub/ncftp/3.0BETA/ MAINTAINER= ache@FreeBSD.ORG -GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_func_getmaxyx=yes ac_cv_lib_readline=yes -MAN1= ncftp2.1 +WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} +GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_func_getmaxyx=yes ac_cv_lib_readline=yes +MAN1= ncftp3.1 ncftpbatch.1 ncftpget.1 ncftpls.1 ncftpput.1 +MAN3= Strn.3 -do-install: - $(INSTALL_PROGRAM) $(WRKSRC)/ncftp $(PREFIX)/bin/ncftp2 - $(INSTALL_MAN) $(WRKSRC)/ncftp.1 $(PREFIX)/man/man1/ncftp2.1 +pre-build: + cd ${WRKSRC}/Strn ; make so + cd ${WRKSRC}/libncftp ; make so +do-install: + @$(INSTALL_PROGRAM) $(WRKSRC)/bin/ncftp $(PREFIX)/bin/ncftp3 + @cd ${WRKSRC}/bin ; $(INSTALL_PROGRAM) \ + ncftpbatch ncftpget ncftpls ncftpput $(PREFIX)/bin + @$(INSTALL_DATA) $(WRKSRC)/Strn/libStrn.so.1 $(PREFIX)/lib + @$(INSTALL_DATA) $(WRKSRC)/libncftp/libncftp.so.2 $(PREFIX)/lib + @${LDCONFIG} -m ${PREFIX}/lib + @$(INSTALL_MAN) $(WRKSRC)/doc/man/ncftp.1 $(PREFIX)/man/man1/ncftp3.1 + @cd ${WRKSRC}/doc/man ; $(INSTALL_MAN) \ + ncftpbatch.1 ncftpget.1 ncftpls.1 ncftpput.1 \ + $(PREFIX)/man/man1 + @$(INSTALL_MAN) $(WRKSRC)/Strn/Strn.3 $(PREFIX)/man/man3 .include <bsd.port.mk> |