diff options
author | Joshua Peck Macdonald <jmacd@FreeBSD.org> | 1995-04-15 22:48:25 +0000 |
---|---|---|
committer | Joshua Peck Macdonald <jmacd@FreeBSD.org> | 1995-04-15 22:48:25 +0000 |
commit | 4fa9c45b4a1f1ea553f0b99046cbbc087a0573bf (patch) | |
tree | af0ce6c4a188fbecb706929d198a947dece5ac6a /lang/logo | |
parent | 1af9bb385bd0cda39e8bb5c44ced08ab02f9b8af (diff) | |
download | ports-4fa9c45b4a1f1ea553f0b99046cbbc087a0573bf.tar.gz ports-4fa9c45b4a1f1ea553f0b99046cbbc087a0573bf.zip |
Reason I started changing this makefile was because I noticed asami
got the version number wrong which was because Jordan got the version
number wrong, it had 7.3 instead of 3.1, kind of far off (can anyone say
Tcl?) anyways, I also noticed that it didn't even work to begin with
because there was
a) no install target
b) it ignored ${PREFIX}
so I fixed it up and added myself as MAINTAINER, unless anyone minds,
I didn't do this originally, but I see bh (the implementor) three tines
a week so I can probably deal with problems pretty well.
Notes
Notes:
svn path=/head/; revision=1373
Diffstat (limited to 'lang/logo')
-rw-r--r-- | lang/logo/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lang/logo/Makefile b/lang/logo/Makefile index 1eb872917f14..d5abac67c4be 100644 --- a/lang/logo/Makefile +++ b/lang/logo/Makefile @@ -1,5 +1,5 @@ # New ports collection makefile for: logo -# Version required: 7.3 +# Version required: 3.1 # Date created: 22 October 1994 # Whom: jkh # @@ -7,12 +7,13 @@ # DISTNAME= ucblogo -PKGNAME= ucblogo-7.3 -CATEGORIES+= languages -MASTER_SITES= ftp://anarres.cs.berkeley.edu/pub/ucblogo/ EXTRACT_SUFX= .tar.Z +MASTER_SITES= ftp://anarres.cs.berkeley.edu/pub/ucblogo/ +CATEGORIES+= languages +MAINTAINER= jmacd@FreeBSD.ORG MAKEFILE= makefile +MAKE_FLAGS+= "LIBLOC = ${PREFIX}/lib/logo" WRKSRC= ${WRKDIR} HAS_CONFIGURE= yes |