mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
36 lines
944 B
Makefile
36 lines
944 B
Makefile
# Created by: David O'Brien (obrien@NUXI.com)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ratfor
|
|
PORTVERSION= 1985.06
|
|
PORTREVISION= 7
|
|
CATEGORIES= lang
|
|
MASTER_SITES= LOCAL/obrien \
|
|
http://sepwww.stanford.edu/sep/prof/
|
|
DISTFILES= ratfor.shar.2 local.ratfor77.shar
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Rational FORTRAN compiler
|
|
|
|
BROKEN_powerpc= ./ratfor -o test.f test.r keeps creating huge output file
|
|
BROKEN_powerpc64= ./ratfor -o test.f test.r keeps creating huge output file
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${CAT}
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS= | ${SH}
|
|
ALL_TARGET= all tests
|
|
USES= fortran
|
|
|
|
PLIST_FILES= bin/ratfor bin/ratfor77 man/man1/ratfor.1.gz
|
|
|
|
post-patch:
|
|
@${PATCH} -d ${WRKSRC} --quiet < ${WRKSRC}/testw.patch
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ratfor77 ${STAGEDIR}${PREFIX}/bin
|
|
${LN} -sf ${PREFIX}/bin/ratfor77 ${STAGEDIR}${PREFIX}/bin/ratfor
|
|
${INSTALL_MAN} ${WRKSRC}/ratfor.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|