summaryrefslogtreecommitdiff
path: root/lang/f2c
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2002-03-05 18:29:48 +0000
committerdmcmahill <dmcmahill>2002-03-05 18:29:48 +0000
commitb2b8b90d2f733a246067b4999ed410539796b247 (patch)
treea1c4113649c32d967a4f07dff14afd935037ebec /lang/f2c
parent18404125fcf494b4cd4157be3a50ee94469d8eef (diff)
downloadpkgsrc-b2b8b90d2f733a246067b4999ed410539796b247.tar.gz
obey CC and CFLAGS.
Diffstat (limited to 'lang/f2c')
-rw-r--r--lang/f2c/distinfo4
-rw-r--r--lang/f2c/patches/patch-ab16
2 files changed, 11 insertions, 9 deletions
diff --git a/lang/f2c/distinfo b/lang/f2c/distinfo
index 503f7a1f0a8..5134c6c97d9 100644
--- a/lang/f2c/distinfo
+++ b/lang/f2c/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.4 2002/01/22 16:47:22 dmcmahill Exp $
+$NetBSD: distinfo,v 1.5 2002/03/05 18:29:48 dmcmahill Exp $
SHA1 (f2c-20001205.tar.gz) = f3cc1653eb962fee45d850df50890fc53448a17f
Size (f2c-20001205.tar.gz) = 988607 bytes
SHA1 (patch-aa) = 488a5adc6bf30a28fa221351224fa16952d54537
-SHA1 (patch-ab) = ddd695d45ac7819578b22a8a8aed0f09803cd3a0
+SHA1 (patch-ab) = 97c676fa452daa674e11348412ccb26d38a7baa4
SHA1 (patch-ac) = 6fc52f9257cdecd3784e7f8897cce8b5656b73e4
SHA1 (patch-ad) = 0144d0cdf55ce8117d179a56acc4db64fe67c8e0
SHA1 (patch-ae) = b3ba2a1a40aee9f3151fc36aa89d34e472f80325
diff --git a/lang/f2c/patches/patch-ab b/lang/f2c/patches/patch-ab
index 6b29b72012c..f172161cd22 100644
--- a/lang/f2c/patches/patch-ab
+++ b/lang/f2c/patches/patch-ab
@@ -1,17 +1,19 @@
-$NetBSD: patch-ab,v 1.4 1999/12/16 00:58:27 dmcmahill Exp $
+$NetBSD: patch-ab,v 1.5 2002/03/05 18:29:49 dmcmahill Exp $
-Set optimisation level appropriately
+Obey CC and CFLAGS
Don't do additional checksums of the source (gets thrown
off by our patches, plus we already have files/md5)
---- ./src/makefile.orig Wed Feb 25 08:18:04 1998
-+++ ./src/makefile Tue Dec 7 18:15:45 1999
-@@ -3,5 +3,5 @@
+--- src/makefile.orig Wed Feb 25 08:18:04 1998
++++ src/makefile Tue Mar 5 13:09:23 2002
+@@ -2,6 +2,6 @@
+
.SUFFIXES: .c .o
- CC = cc
+-CC = cc
-CFLAGS = -O
-+CFLAGS = -O2
++#CC = cc
++#CFLAGS = -O2
SHELL = /bin/sh
YACC = yacc
@@ -25,5 +25,5 @@