From nobody@FreeBSD.org  Mon Dec  9 01:03:04 2013
Return-Path: <nobody@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 ESMTPS id 0F2A8598
	for <freebsd-gnats-submit@FreeBSD.org>; Mon,  9 Dec 2013 01:03:04 +0000 (UTC)
Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id EF5181347
	for <freebsd-gnats-submit@FreeBSD.org>; Mon,  9 Dec 2013 01:03:03 +0000 (UTC)
Received: from oldred.freebsd.org ([127.0.1.6])
	by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9133oY074212
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 9 Dec 2013 01:03:03 GMT
	(envelope-from nobody@oldred.freebsd.org)
Received: (from nobody@localhost)
	by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9133Cf074209;
	Mon, 9 Dec 2013 01:03:03 GMT
	(envelope-from nobody)
Message-Id: <201312090103.rB9133Cf074209@oldred.freebsd.org>
Date: Mon, 9 Dec 2013 01:03:03 GMT
From: John Marino <freebsd@marino.st>
To: freebsd-gnats-submit@FreeBSD.org
Subject: math/parmgridgen: [PATCH] unbreak F10 and head
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: devel@stasyan.com

>Number:         184618
>Category:       ports
>Synopsis:       math/parmgridgen: [PATCH] unbreak F10 and head
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    marino
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 09 01:10:00 UTC 2013
>Closed-Date:    Tue Dec 24 21:51:51 UTC 2013
>Last-Modified:  Thu Dec 26 13:10:00 UTC 2013
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
This port specifies gmake to be used, but the master makefile has "make" hardcoded, which causes bmake to be used instead on F10 and head (unsuccessfully).

Adding this one-line diff to the port's makefile will unbreak the port.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- Makefile.orig	2013-12-09 00:53:05.761868000 +0000
+++ Makefile
@@ -21,6 +21,7 @@ MAKE_JOBS_UNSAFE=	yes
 
 NO_STAGE=	yes
 post-patch:
+		@${REINPLACE_CMD} 's|make|$$(MAKE)|g' ${WRKSRC}/Makefile
 #respect CFLAGS
 .		for f in IMlib Lib Programs
 		    @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Mon Dec 9 01:10:08 UTC 2013 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184618 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: devel@stasyan.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head
Date: Mon, 9 Dec 2013 01:10:07 UT

 Maintainer of math/parmgridgen,
 
 Please note that PR ports/184618 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184618
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
Responsible-Changed-From-To: freebsd-ports-bugs->marino 
Responsible-Changed-By: marino 
Responsible-Changed-When: Mon Dec 9 01:20:43 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184618 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184618: commit references a PR
Date: Tue, 24 Dec 2013 21:43:34 +0000 (UTC)

 Author: marino
 Date: Tue Dec 24 21:43:27 2013
 New Revision: 337390
 URL: http://svnweb.freebsd.org/changeset/ports/337390
 
 Log:
   math/parmgridgen: Unbreak on FreeBSD 10+
   
   The breakage was caused by processing makefiles with bmake instead of the
   specified gmake.
   
   PR:		ports/184618
   Approved by:	maintainer timeout
 
 Modified:
   head/math/parmgridgen/Makefile
 
 Modified: head/math/parmgridgen/Makefile
 ==============================================================================
 --- head/math/parmgridgen/Makefile	Tue Dec 24 21:35:54 2013	(r337389)
 +++ head/math/parmgridgen/Makefile	Tue Dec 24 21:43:27 2013	(r337390)
 @@ -21,6 +21,7 @@ MAKE_JOBS_UNSAFE=	yes
  
  NO_STAGE=	yes
  post-patch:
 +		@${REINPLACE_CMD} 's|make|$$(MAKE)|g' ${WRKSRC}/Makefile
  #respect CFLAGS
  .		for f in IMlib Lib Programs
  		    @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: feedback->closed 
State-Changed-By: marino 
State-Changed-When: Tue Dec 24 21:51:49 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184618 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184618: commit references a PR
Date: Thu, 26 Dec 2013 13:06:00 +0000 (UTC)

 Author: mat
 Date: Thu Dec 26 13:05:51 2013
 New Revision: 337491
 URL: http://svnweb.freebsd.org/changeset/ports/337491
 
 Log:
   MFH: r337390
   
   math/parmgridgen: Unbreak on FreeBSD 10+
   
   The breakage was caused by processing makefiles with bmake instead of the
   specified gmake.
   
   PR:		ports/184618
   Approved by:	maintainer timeout
   Approved by:	portmgr (implicit)
 
 Modified:
   branches/2014Q1/math/parmgridgen/Makefile
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Modified: branches/2014Q1/math/parmgridgen/Makefile
 ==============================================================================
 --- branches/2014Q1/math/parmgridgen/Makefile	Thu Dec 26 13:05:03 2013	(r337490)
 +++ branches/2014Q1/math/parmgridgen/Makefile	Thu Dec 26 13:05:51 2013	(r337491)
 @@ -21,6 +21,7 @@ MAKE_JOBS_UNSAFE=	yes
  
  NO_STAGE=	yes
  post-patch:
 +		@${REINPLACE_CMD} 's|make|$$(MAKE)|g' ${WRKSRC}/Makefile
  #respect CFLAGS
  .		for f in IMlib Lib Programs
  		    @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
