diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-01-27 02:13:52 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 06:29:53 +0800 |
commit | 2fc9dfe26673981dbd8438516fbe2abb32b5ac32 (patch) | |
tree | ed5c896eb1eecedf0c3ce035e758cf6d123ec7e4 /lang | |
parent | 0ba50dda24884f22a3a7a631971e886884fb500b (diff) | |
download | freebsd-ports-gnome-2fc9dfe26673981dbd8438516fbe2abb32b5ac32.tar.gz freebsd-ports-gnome-2fc9dfe26673981dbd8438516fbe2abb32b5ac32.tar.zst freebsd-ports-gnome-2fc9dfe26673981dbd8438516fbe2abb32b5ac32.zip |
Fix FC substitution
- Bump PORTREVISION for package change
PR: 225467
Submitted by: Erik B Knudsen <erkn@fysik.dtu.dk>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/p5-ExtUtils-F77/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lang/p5-ExtUtils-F77/Makefile b/lang/p5-ExtUtils-F77/Makefile index 3e554b0093ae..781a7a280cf9 100644 --- a/lang/p5-ExtUtils-F77/Makefile +++ b/lang/p5-ExtUtils-F77/Makefile @@ -3,7 +3,7 @@ PORTNAME= ExtUtils-F77 PORTVERSION= 1.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -19,8 +19,6 @@ USES= fortran perl5 USE_PERL5= configure post-patch: - @${REINPLACE_CMD} -e "s|'gfortran44'|'${FC}'|" \ - -e "s|'-O2'|'${CFLAGS}'|" \ - ${WRKSRC}/F77.pm + @${REINPLACE_CMD} -e "s|'gfortran48'|'${FC}'|; s|'-O2'|'${CFLAGS}'|" ${WRKSRC}/F77.pm .include <bsd.port.mk> |