svn commit: r339050 - in branches/2014Q1/lang/ratfor: . files

Mathieu Arnold mat at FreeBSD.org
Tue Jan 7 23:23:57 UTC 2014


Author: mat
Date: Tue Jan  7 23:23:56 2014
New Revision: 339050
URL: http://svnweb.freebsd.org/changeset/ports/339050

Log:
  MFH: r339045
  
  Fix build with gcc47
  
  maintainer timeout
  
  PR:		ports/184574
  Submitted by:	Christoph Moench-Tegeder
  Approved by:	portmgr (implicit)

Modified:
  branches/2014Q1/lang/ratfor/Makefile   (contents, props changed)
  branches/2014Q1/lang/ratfor/files/patch-Makefile   (contents, props changed)
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/lang/ratfor/Makefile
==============================================================================
--- branches/2014Q1/lang/ratfor/Makefile	Tue Jan  7 23:22:58 2014	(r339049)
+++ branches/2014Q1/lang/ratfor/Makefile	Tue Jan  7 23:23:56 2014	(r339050)
@@ -26,7 +26,6 @@ USE_FORTRAN=	yes
 NO_STAGE=	yes
 post-patch:
 	@cd ${WRKSRC} ; ${PATCH} --quiet < testw.patch
-	@${REINPLACE_CMD} -e 's|%%F77%%|${F77}|' ${WRKSRC}/Makefile
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/ratfor77 ${PREFIX}/bin

Modified: branches/2014Q1/lang/ratfor/files/patch-Makefile
==============================================================================
--- branches/2014Q1/lang/ratfor/files/patch-Makefile	Tue Jan  7 23:22:58 2014	(r339049)
+++ branches/2014Q1/lang/ratfor/files/patch-Makefile	Tue Jan  7 23:23:56 2014	(r339050)
@@ -1,16 +1,22 @@
---- Makefile~	Sat Jan 13 18:13:44 2007
-+++ Makefile	Sat Jan 13 18:14:35 2007
-@@ -28,11 +28,11 @@
+--- Makefile.orig	2013-11-16 17:28:28.000000000 +0100
++++ Makefile	2013-11-16 17:27:51.000000000 +0100
+@@ -26,13 +26,15 @@
+ clean:
+ 	rm -f *.o *~ ratfor ratfor77 a.out test testw test.f testw.f
  
- test: ratfor
+-test: ratfor
++test: test.f
++
++test.f: ratfor
  	./ratfor -o test.f test.r
 -	f77 -o test test.f
-+	%%F77%% -o test test.f
  
- testw: ratfor
+-testw: ratfor
++testw: testw.f
++
++testw.f: ratfor
  	./ratfor -o testw.f testw.r
 -	f77 -o testw testw.f
-+	%%F77%% -o testw testw.f
  
  tests: test testw
  	./test


More information about the svn-ports-all mailing list