diff options
author | jmz <jmz@FreeBSD.org> | 1999-05-02 21:29:35 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1999-05-02 21:29:35 +0000 |
commit | fea81e3457aa2b2c4b3ac9c6c0a01c397aaa9197 (patch) | |
tree | b8fcf8cfd9fd7ae3e4a5a37921de88b8164fd763 /graphics/pgplot/Makefile | |
parent | 5ee098cda95eeda43cca65e7b5b80af32a01cf87 (diff) | |
download | FreeBSD-ports-fea81e3457aa2b2c4b3ac9c6c0a01c397aaa9197.zip FreeBSD-ports-fea81e3457aa2b2c4b3ac9c6c0a01c397aaa9197.tar.gz |
Compile with g77 on 4.0-CURRENT
Submitted by: obrien
Diffstat (limited to 'graphics/pgplot/Makefile')
-rw-r--r-- | graphics/pgplot/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/graphics/pgplot/Makefile b/graphics/pgplot/Makefile index 594e2b8..226903f 100644 --- a/graphics/pgplot/Makefile +++ b/graphics/pgplot/Makefile @@ -3,7 +3,7 @@ # Date created: 21 December 1996 # Whom: jmz # -# $Id: Makefile,v 1.8 1998/12/05 02:25:45 jmz Exp $ +# $Id: Makefile,v 1.9 1998/12/22 08:22:54 asami Exp $ # DISTNAME= pgplot5.2 @@ -24,6 +24,14 @@ VERSION= 5 VERSION= 5.2 .endif +.if ${OSVERSION} < 400004 +FC= ./xf77 +.else +FC= f77 +.endif + +MAKE_ENV+= FC=${FC} + post-install: .for f in libcpgplot.so libpgplot.so ${LN} -sf $f.${VERSION} ${PREFIX}/lib/$f |