Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2013 01:15:29 GMT
From:      John Marino <freebsd@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/184619: math/sdpara: [PATCH] unbreak F10 and head
Message-ID:  <201312090115.rB91FTTG012227@oldred.freebsd.org>
Resent-Message-ID: <201312090120.rB91K0sc027548@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         184619
>Category:       ports
>Synopsis:       math/sdpara: [PATCH] unbreak F10 and head
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 09 01:20:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
This port specifies the use of gmake, yet the internal makefile has "make" hardcoded which results in the use of bmake of F10 and head instead (unsuccessfully).

By updating the Makefile patch as shown in the attachment which lets gmake be used, the port will build on F10 and head.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: math/sdpara/files/patch-Makefile
===================================================================
--- math/sdpara/files/patch-Makefile	(revision 335916)
+++ math/sdpara/files/patch-Makefile	(working copy)
@@ -1,5 +1,5 @@
---- Makefile.orig	2009-01-09 11:26:29.000000000 +0900
-+++ Makefile	2009-02-17 14:11:48.000000000 +0900
+--- Makefile.orig	2009-01-09 02:26:29.000000000 +0000
++++ Makefile
 @@ -4,20 +4,20 @@
  # you edit here along your environment
  ############################################################
@@ -35,3 +35,16 @@
  
  # F77_FUNC 
  DEF_F77_FUNC = -DF77_FUNC\(name,NAME\)=name\ \#\#\ _ 
+@@ -82,10 +82,10 @@ cleanall: clean mumps-clean
+ force: cleanall all
+ 
+ mumps:
+-	cd mumps; make
++	cd mumps; $(MAKE)
+ 
+ mumps-clean:
+-	cd mumps; make distclean
++	cd mumps; $(MAKE) distclean
+ 
+ update_make_headers:
+ 	g++ -MM *.cpp > make.headers


>Release-Note:
>Audit-Trail:
>Unformatted:



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