From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 15:50:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 08663641 for ; Thu, 26 Sep 2013 15:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 CFCC0248B for ; Thu, 26 Sep 2013 15:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8QFo1ml074304 for ; Thu, 26 Sep 2013 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QFo1uT074303; Thu, 26 Sep 2013 15:50:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 15:50:01 GMT Message-Id: <201309261550.r8QFo1uT074303@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Vitaly Magerya Subject: Re: ports/182033: [maintainer] make devel/wordgrinder build when gcc is missing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Vitaly Magerya List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 15:50:02 -0000 The following reply was made to PR ports/182033; it has been noted by GNATS. From: Vitaly Magerya To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182033: [maintainer] make devel/wordgrinder build when gcc is missing Date: Thu, 26 Sep 2013 18:46:58 +0300 This is a multi-part message in MIME format. --------------040209030807070001090701 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here's an updated patch with new MASTER_SITE_SUBDIR; it must have changed at some point. BTW, it's 'editors/wordgrinder', not 'devel/wordgrinder'. You can find redports logs at [1]. Unfortunately, 10-CURRENT machines seem to be down at the moment, so no logs for that. Also, may I note that pkg-fallout@ messages about this port are getting boring, considering that a fix is already submitted? [1] https://redports.org/buildarchive/20130926120300-53781/ --------------040209030807070001090701 Content-Type: text/plain; charset=UTF-8; name="wordgrinder.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="wordgrinder.diff.txt" diff -ruN wordgrinder.orig/Makefile wordgrinder/Makefile --- wordgrinder.orig/Makefile 2013-09-20 19:36:23.000000000 +0300 +++ wordgrinder/Makefile 2013-09-26 15:01:12.000000000 +0300 @@ -5,18 +5,19 @@ PORTVERSION= 0.3.3 CATEGORIES= editors MASTER_SITES= SF +MASTER_SITE_SUBDIR=${PORTNAME}/${PORTNAME} MAINTAINER= vmagerya@gmail.com COMMENT= A simple Unicode-aware console-based word processor +LICENSE= MIT + RUN_DEPENDS= ${LUA_MODLIBDIR}/lfs.so:${PORTSDIR}/devel/luafilesystem USE_LUA= 5.1+ USE_BZIP2= yes -LICENSE= MIT - MAN1= wordgrinder.1 PLIST_DIRS= share/doc/wordgrinder @@ -34,6 +35,8 @@ ${WRKSRC}/pmfile ${REINPLACE_CMD} 's,^LUACOMPILER =.*$$,LUACOMPILER = "${LUAC_CMD}",' \ ${WRKSRC}/tools/lua.pm + ${REINPLACE_CMD} "/CCOMPILER = /s,gcc,cc ," ${WRKSRC}/tools/c.pm + ${REINPLACE_CMD} "/CC=/s,gcc,cc ," ${WRKSRC}/pm do-build: (cd ${WRKSRC}; ./pm) --------------040209030807070001090701--