diff options
author | asami <asami@FreeBSD.org> | 1995-09-23 10:15:46 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-09-23 10:15:46 +0000 |
commit | 995e9c427a6c3897cad285b444a681fe3f9dd60a (patch) | |
tree | 175e583bd135c26939b5471e4f2ba61d7b2a089a /misc/colorls | |
parent | 102eb498b559197c4e8ae68acdcd8d2c254de5a5 (diff) | |
download | FreeBSD-ports-995e9c427a6c3897cad285b444a681fe3f9dd60a.zip FreeBSD-ports-995e9c427a6c3897cad285b444a681fe3f9dd60a.tar.gz |
Remove hack to get around ncftp's inability to grab tarfiles generated
on-the-fly. Use ncftp2 instead, and depend on it via FETCH_DEPENDS.
Diffstat (limited to 'misc/colorls')
-rw-r--r-- | misc/colorls/Makefile | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/misc/colorls/Makefile b/misc/colorls/Makefile index f0ecb53..0b32cd7 100644 --- a/misc/colorls/Makefile +++ b/misc/colorls/Makefile @@ -3,30 +3,21 @@ # Date created: 8 March 1995 # Whom: Satoshi Asami # -# $Id: Makefile,v 1.4 1995/04/15 01:28:36 asami Exp $ +# $Id: Makefile,v 1.5 1995/04/23 13:02:01 asami Exp $ # DISTNAME= colorls PKGNAME= colorls-2.0.5 CATEGORIES+= utilities -# MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/src/bin/ +MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/src/bin/ DISTFILES= ls.tar.gz MAINTAINER= asami@FreeBSD.ORG -WRKSRC= ${WRKDIR}/ls +FETCH_DEPENDS= ncftp2:${PORTSDIR}/net/ncftp2 -FTP_SITE= ftp.freebsd.org -FTP_DIR= /pub/FreeBSD/FreeBSD-current/src/bin/ - -.if !defined(MASTER_SITE_OVERRIDE) -do-fetch: - @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi - @(cd ${DISTDIR}; \ - if [ ! -f ${DISTFILES} ]; then \ - (sleep 5; echo "cd ${FTP_DIR}"; echo "get ${DISTFILES}") | ${NCFTP} ${NCFTPFLAGS} ${FTP_SITE}; \ - fi \ - ) -.endif +WRKSRC= ${WRKDIR}/pub/FreeBSD/FreeBSD-current/src/bin/ls +NCFTP= ncftp2 +NCFTPFLAGS= .include <bsd.port.mk> |