Date: Tue, 7 Jan 2014 22:55:35 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339045 - in head/lang/ratfor: . files Message-ID: <201401072255.s07MtZDi038214@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Tue Jan 7 22:55:35 2014 New Revision: 339045 URL: http://svnweb.freebsd.org/changeset/ports/339045 Log: Fix build with gcc47 maintainer timeout PR: ports/184574 Submitted by: Christoph Moench-Tegeder Modified: head/lang/ratfor/Makefile (contents, props changed) head/lang/ratfor/files/patch-Makefile (contents, props changed) Modified: head/lang/ratfor/Makefile ============================================================================== --- head/lang/ratfor/Makefile Tue Jan 7 22:50:47 2014 (r339044) +++ head/lang/ratfor/Makefile Tue Jan 7 22:55:35 2014 (r339045) @@ -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: head/lang/ratfor/files/patch-Makefile ============================================================================== --- head/lang/ratfor/files/patch-Makefile Tue Jan 7 22:50:47 2014 (r339044) +++ head/lang/ratfor/files/patch-Makefile Tue Jan 7 22:55:35 2014 (r339045) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401072255.s07MtZDi038214>