diff options
Diffstat (limited to 'lang/ratfor/Makefile')
-rw-r--r-- | lang/ratfor/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lang/ratfor/Makefile b/lang/ratfor/Makefile new file mode 100644 index 000000000000..3976211b6bba --- /dev/null +++ b/lang/ratfor/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: ratfor +# Date created: Sat Aug 26, 2000 +# Whom: David O'Brien (obrien@NUXI.com) +# +# $FreeBSD$ +# + +PORTNAME= ratfor +PORTVERSION= 1985.06 +CATEGORIES= lang +MASTER_SITES= http://sepwww.stanford.edu/sep/prof/ +DISTFILES= ratfor.shar.2 local.ratfor77.shar + +MAINTAINER= obrien@FreeBSD.org + +NO_WRKSUBDIR= yes +EXTRACT_CMD= ${CAT} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= | ${SH} +#USE_GMAKE= yes +ALL_TARGET= all tests +MAN1= ratfor.1 + +post-patch: + @cd ${WRKSRC} ; ${PATCH} --quiet < testw.patch + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ratfor77 ${PREFIX}/bin + cd ${PREFIX}/bin ; ${LN} -sf ratfor77 ratfor + ${INSTALL_MAN} ${WRKSRC}/ratfor.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> |