diff options
author | cracauer <cracauer@FreeBSD.org> | 1998-06-08 21:59:35 +0800 |
---|---|---|
committer | cracauer <cracauer@FreeBSD.org> | 1998-06-08 21:59:35 +0800 |
commit | 9f46f7f34a85de7d1f4600c7aadef79b8360c190 (patch) | |
tree | 33931b4720b81aecbdd7d8ddeb4b02ac2dfbfb96 /shells/es/Makefile | |
parent | 13fca5b2abf9b25986d1087c70bfba226afa3193 (diff) | |
download | freebsd-ports-gnome-9f46f7f34a85de7d1f4600c7aadef79b8360c190.tar.gz freebsd-ports-gnome-9f46f7f34a85de7d1f4600c7aadef79b8360c190.tar.zst freebsd-ports-gnome-9f46f7f34a85de7d1f4600c7aadef79b8360c190.zip |
Update to 0.9beta1.
This version is now GNU configure driven.
A word of warning for future committers so that you don't fall into
the same trap as I did: The source has an printf-style funtion
"print". This doesn't understand "%u", so the usual print-casting
stuff for long long ints isn't
printf("%u", (unsigned int)foo);
but
print("%d", (int)foo);
which obviously looses in some cases, but I didn't take the effort to
extend this function to take 64 bit value (just unsigned is limited as
well).
In this case, it isn't that bad, since it is used to print limits, but
memory limits are internally stored as "mega" or "kilo" anyway.
Diffstat (limited to 'shells/es/Makefile')
-rw-r--r-- | shells/es/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/shells/es/Makefile b/shells/es/Makefile index 9ba10337aadb..32e1cdebd1f0 100644 --- a/shells/es/Makefile +++ b/shells/es/Makefile @@ -3,14 +3,19 @@ # Date created: Sun Aug 13 12:36:14 CDT 1995 # Whom: erich@rrnet.com # -# $Id: Makefile,v 1.3 1996/07/30 04:17:03 asami Exp $ +# $Id: Makefile,v 1.4 1996/11/18 11:39:46 asami Exp $ # -DISTNAME= es-0.9-alpha1 -PKGNAME= es-0.9a1 +DISTNAME= es-0.9-beta1 +PKGNAME= es-0.9b1 CATEGORIES= shells MASTER_SITES= ftp://ftp.sys.toronto.edu/pub/es/ MAINTAINER= erich@FreeBSD.org +GNU_CONFIGURE= yes + +ALL_TARGET= es +MAN1= es.1 + .include <bsd.port.mk> |