svn commit: r429905 - head/devel/noweb

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Dec 29 13:03:33 UTC 2016


Author: amdmi3
Date: Thu Dec 29 13:03:32 2016
New Revision: 429905
URL: https://svnweb.freebsd.org/changeset/ports/429905

Log:
  - Fix fetch: the only ftp MASTER_SITE requires extended passive mode support from fetcher, so use ftp(1) to fetch
  
  PR:		214206
  Submitted by:	une at edu.hkg.ac.jp

Modified:
  head/devel/noweb/Makefile

Modified: head/devel/noweb/Makefile
==============================================================================
--- head/devel/noweb/Makefile	Thu Dec 29 12:59:31 2016	(r429904)
+++ head/devel/noweb/Makefile	Thu Dec 29 13:03:32 2016	(r429905)
@@ -10,11 +10,6 @@ MASTER_SITES=	ftp://www.eecs.harvard.edu
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Simple, extensible literate-programming tool
 
-# The file is accessible via browser, but it times out on "make fetch"
-# This happens on both FreeBSD and DragonFly.  Interested users should
-# host the file and change the MASTER_SITES accordingly
-BROKEN=		unfetchable due to settings at host FTP server
-
 LICENSE=	noweb
 LICENSE_NAME=	noweb
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT
@@ -23,6 +18,11 @@ LICENSE_PERMS=	dist-mirror dist-sell pkg
 BUILD_DEPENDS=	icont:lang/icon
 RUN_DEPENDS=	iconx:lang/icon
 
+# Master site uses extended passive mode fetch(1) does not support
+FETCH_CMD=	/usr/bin/ftp
+FETCH_ARGS=	# empty
+DISABLE_SIZE=	yes
+
 PORTSCOUT=	skipv:2.11
 
 USES=		tar:tgz


More information about the svn-ports-all mailing list