diff options
author | jmz <jmz@FreeBSD.org> | 2001-02-08 07:34:20 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2001-02-08 07:34:20 +0800 |
commit | 3ad241709dcce2f95fef32f0d3d6012ad98fb799 (patch) | |
tree | 66bd5664a6d66a1e5b1a3c95d0af4495a695d01e /math | |
parent | 12e26d839884cbdab50f1d166de7a0a155ba035e (diff) | |
download | freebsd-ports-gnome-3ad241709dcce2f95fef32f0d3d6012ad98fb799.tar.gz freebsd-ports-gnome-3ad241709dcce2f95fef32f0d3d6012ad98fb799.tar.zst freebsd-ports-gnome-3ad241709dcce2f95fef32f0d3d6012ad98fb799.zip |
Upgrade to version 2.11.2
Update MASTER_SITES
Diffstat (limited to 'math')
-rw-r--r-- | math/calc/Makefile | 10 | ||||
-rw-r--r-- | math/calc/distinfo | 2 | ||||
-rw-r--r-- | math/calc/files/patch-ac | 11 | ||||
-rw-r--r-- | math/calc/files/patch-ad | 11 |
4 files changed, 6 insertions, 28 deletions
diff --git a/math/calc/Makefile b/math/calc/Makefile index 06838d0818bd..0737f6089b6a 100644 --- a/math/calc/Makefile +++ b/math/calc/Makefile @@ -6,12 +6,12 @@ # PORTNAME= calc -PORTVERSION= 2.11.1 +PORTVERSION= 2.11.2 CATEGORIES= math -MASTER_SITES= ftp://reality.sgi.com/users/chongo/src/calc/ \ - ftp://ftp.uu.net/pub/calc/ \ - http://reality.sgi.com/chongo/src/calc/ -DISTNAME= calc-2.11.1t3.0 +MASTER_SITES= ftp://ftp.uu.net/pub/calc/ \ + ftp://ftp.u-aizu.ac.jp/pub/SciEng/math/math-packs/calc/ \ + ftp://ftp.batnet.com/pub/wombats/noll/ftp/pub/calc/ +DISTNAME= calc-2.11.2t1.0 MAINTAINER= jmz@FreeBSD.org diff --git a/math/calc/distinfo b/math/calc/distinfo index 87350963bcc7..295cb7ecc5d5 100644 --- a/math/calc/distinfo +++ b/math/calc/distinfo @@ -1 +1 @@ -MD5 (calc-2.11.1t3.0.tar.gz) = 6b5ea47ecd97dbc4098a272994907642 +MD5 (calc-2.11.2t1.0.tar.gz) = 3822525a5e1b50749b15fcb1cd28f885 diff --git a/math/calc/files/patch-ac b/math/calc/files/patch-ac deleted file mode 100644 index 7ea12c3ca0af..000000000000 --- a/math/calc/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- help.c.orig Sat Dec 25 17:57:30 1999 -+++ help.c Sat Dec 25 17:56:57 1999 -@@ -137,7 +137,7 @@ - /* - * write the line to pager, if possible - */ -- } while(fputs(buf, cmd) > 0); -+ } while (fputs(buf, cmd) >= 0); - - /* - * all done, EOF or error, so just clean up diff --git a/math/calc/files/patch-ad b/math/calc/files/patch-ad deleted file mode 100644 index 0f8af0eaf01d..000000000000 --- a/math/calc/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- calc.c.orig Sun Feb 6 00:53:48 2000 -+++ calc.c Sun Feb 6 00:57:01 2000 -@@ -233,7 +233,7 @@ - /* argument + space separator */ - cmdlen += strlen(argv[i]) + 1; - } -- if (i > MAXCMD) { -+ if (cmdlen > MAXCMD) { - /* - * we are too early in processing to call - * libcalc_call_me_last() - nothing to cleanup |