diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-01-27 02:13:52 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-01-27 02:13:52 +0800 |
commit | 4b76055f550fa9150350009c08c7a399fc151d53 (patch) | |
tree | 2161e6c3edaf4212f8b7f3c80a4aa6e2799ced49 /lang | |
parent | b1538a1231dc3feb701ca0c15829774709428bf4 (diff) | |
download | freebsd-ports-gnome-4b76055f550fa9150350009c08c7a399fc151d53.tar.gz freebsd-ports-gnome-4b76055f550fa9150350009c08c7a399fc151d53.tar.zst freebsd-ports-gnome-4b76055f550fa9150350009c08c7a399fc151d53.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> |