From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 00:37:48 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 131342D1; Thu, 31 Oct 2013 00:37:48 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3DF3200B; Thu, 31 Oct 2013 00:37:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V0blLt024037; Thu, 31 Oct 2013 00:37:47 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V0blQv024036; Thu, 31 Oct 2013 00:37:47 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201310310037.r9V0blQv024036@svn.freebsd.org> From: Adam Weinberger Date: Thu, 31 Oct 2013 00:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332190 - head/textproc/multimarkdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 00:37:48 -0000 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 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/," \