Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Oct 2013 00:37:47 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332190 - head/textproc/multimarkdown
Message-ID:  <201310310037.r9V0blQv024036@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adamw
Date: Thu Oct 31 00:37:47 2013
New Revision: 332190
URL: http://svnweb.freebsd.org/changeset/ports/332190

Log:
  Run the git commands in fetch instead of extract. The package cluster
  disables dialling out during extract.
  
  Thanks to:	William Grzybowski <william88@gmail.com>

Modified:
  head/textproc/multimarkdown/Makefile

Modified: head/textproc/multimarkdown/Makefile
==============================================================================
--- head/textproc/multimarkdown/Makefile	Thu Oct 31 00:32:31 2013	(r332189)
+++ head/textproc/multimarkdown/Makefile	Thu Oct 31 00:37:47 2013	(r332190)
@@ -12,7 +12,7 @@ COMMENT=	Extended Markdown processor wit
 
 LICENSE=	MIT
 
-EXTRACT_DEPENDS=	git:${PORTSDIR}/devel/git
+FETCH_DEPENDS=	git:${PORTSDIR}/devel/git
 
 WRKSRC=		${WRKDIR}/MultiMarkdown-4
 
@@ -31,13 +31,16 @@ OPTIONS_SUB=	yes
 CONFLICTS_INSTALL=	mtools-*
 .endif
 
-do-extract:
+do-fetch:
 	${MKDIR} ${WRKDIR}
 	cd ${WRKDIR} && git clone https://github.com/fletcher/MultiMarkdown-4.git
 	cd ${WRKSRC} && git checkout ${PORTVERSION}
 	cd ${WRKSRC} && git submodule init
 	cd ${WRKSRC} && git submodule update
 
+do-extract:
+	@${DO_NADA}	#normally do-extract starts with an rm -rf ${WRKSRC}
+
 post-patch:
 	@${REINPLACE_CMD} -E "s/^(CFLAGS).+=/\1 \+=/" ${WRKSRC}/Makefile ${WRKSRC}/greg/Makefile
 	@${REINPLACE_CMD} -E "s,^(xslt_path)=.*,\1=${DATADIR},; s,(xslt_path)/../,\1/," \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310310037.r9V0blQv024036>