diff options
author | msmith <msmith@FreeBSD.org> | 1997-01-16 00:56:10 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1997-01-16 00:56:10 +0000 |
commit | e520e01ac9db64e22f29c35eb1348445cec6a225 (patch) | |
tree | 280892b9bbc49933c427c6c104541a8cdf71765f /lang/bwbasic | |
parent | 32fed0074a8ef18d95c31140545e34758f84b8b5 (diff) | |
download | FreeBSD-ports-e520e01ac9db64e22f29c35eb1348445cec6a225.zip FreeBSD-ports-e520e01ac9db64e22f29c35eb1348445cec6a225.tar.gz |
Update to version 2.20pl1, also fix some glaring stupidity that causes
one of the supplied tests to fail.
Located-on-radar-by: Josh Gilliam -- soil@quick.net
Diffstat (limited to 'lang/bwbasic')
-rw-r--r-- | lang/bwbasic/Makefile | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/lang/bwbasic/Makefile b/lang/bwbasic/Makefile index 5912738..8713aec 100644 --- a/lang/bwbasic/Makefile +++ b/lang/bwbasic/Makefile @@ -1,20 +1,34 @@ # New ports collection makefile for: bwbasic -# Version required: 2.10 -# Date created: 9 Aug 1995 -# Whom: msmith@atrad.adelaide.edu.au +# Version required: 2.20 +# Date created: 16 Jan 1997 +# Whom: msmith@gsoft.com.au # -# $Id: Makefile,v 1.4 1996/11/12 02:18:04 obrien Exp $ +# $Id: Makefile,v 1.5 1996/12/31 08:25:17 msmith Exp $ # -DISTNAME= bwbasic-2.10 +DISTNAME= bwbasic-2.20 CATEGORIES= lang -MASTER_SITES= ftp://locke.ccil.org/pub/retro/bwbasic-2.10.tar.gz +MASTER_SITES= ftp://ftp.rahul.net/pub/rhn/ +DISTFILES= bwbasic-2.20.tar.Z bwb-2.20-patch01.tar.Z.uu.txt +EXTRACT_ONLY= bwbasic-2.20.tar.Z -MAINTAINER= msmith@atrad.adelaide.edu.au +MAINTAINER= msmith@gsoft.com.au HAS_CONFIGURE= yes GNU_CONFIGURE= yes +# The patches come in a totally bizarre format; we have to +# uudecode them, unpack the resulting tarfile, and then replace +# some of the original files. +# +# This method pollutes the port directory temporarily. + +pre-patch: + uudecode ${DISTDIR}/bwb-2.20-patch01.tar.Z.uu.txt + tar xzf bwb-2.20-patch01.tar.Z + mv bwb-2.20-patch01/* ${WRKSRC} + rm -rf bwb-2.20-patch01 bwb-2.20-patch01.tar.Z + # This puts the documentation in ${PREFIX}/share/bwbasic, and the # test programs in ${PREFIX}/share/bwbasic/bwbtest. |