summaryrefslogtreecommitdiff
path: root/lang/f2c
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>1999-11-23 21:12:12 +0000
committerdmcmahill <dmcmahill>1999-11-23 21:12:12 +0000
commitbb4a169fefb545c105cd4ef3e1b2ca956bbff158 (patch)
tree08f6438bf7ed1bec3d7c6fa0a12c2108fb086f92 /lang/f2c
parent1cc07d4706a067ae5388f6bfcc8d8a6a7ba94c0c (diff)
downloadpkgsrc-bb4a169fefb545c105cd4ef3e1b2ca956bbff158.tar.gz
changed the default for CPP to be /usr/bin/cpp instead of /lib/cpp in f2c-f77
Diffstat (limited to 'lang/f2c')
-rw-r--r--lang/f2c/files/patch-sum4
-rw-r--r--lang/f2c/patches/patch-ac19
2 files changed, 15 insertions, 8 deletions
diff --git a/lang/f2c/files/patch-sum b/lang/f2c/files/patch-sum
index 95ab356436d..ef1332927f8 100644
--- a/lang/f2c/files/patch-sum
+++ b/lang/f2c/files/patch-sum
@@ -1,8 +1,8 @@
-$NetBSD: patch-sum,v 1.1 1999/07/09 13:54:07 agc Exp $
+$NetBSD: patch-sum,v 1.2 1999/11/23 21:12:12 dmcmahill Exp $
MD5 (patch-aa) = f778f52d2eda5dedbd1f73460da49b5c
MD5 (patch-ab) = f0e04aaca0d81c1235d2a7b2555e73cb
-MD5 (patch-ac) = b52e2ef633aa874cc381ba0344f334d2
+MD5 (patch-ac) = d679ffe651e6378d6134bef8655a113d
MD5 (patch-ad) = 34ef8c1b13e93867d02a2196773e3217
MD5 (patch-ae) = 44a559d6bc12dc96301697d05cded510
MD5 (patch-af) = 903e70837b3f084d6d908550163c89eb
diff --git a/lang/f2c/patches/patch-ac b/lang/f2c/patches/patch-ac
index e7015f99027..a05a20e889d 100644
--- a/lang/f2c/patches/patch-ac
+++ b/lang/f2c/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.4 1999/01/14 13:56:04 frueauf Exp $
+$NetBSD: patch-ac,v 1.5 1999/11/23 21:12:13 dmcmahill Exp $
Much cleanup of the script. Added various options such as
-O for optimization
@@ -6,8 +6,8 @@ Much cleanup of the script. Added various options such as
-Wall for gcc warnings
-Wl, for additional linker arguments
---- fc.orig Tue May 16 17:37:49 1995
-+++ fc Tue Jan 12 20:31:32 1999
+--- ./fc.orig Tue May 16 17:37:49 1995
++++ ./fc Tue Nov 23 16:08:52 1999
@@ -1,26 +1,54 @@
#!/bin/sh
-PATH=/v/bin:/bin:/usr/bin
@@ -15,10 +15,11 @@ Much cleanup of the script. Added various options such as
+#USAGESTART
# f77-style shell script to compile and load fortran, C, and assembly codes
-
-+#
- # usage: f77 [options] files [-l library]
+-# usage: f77 [options] files [-l library]
-
+#
++# usage: f2c-f77 [options] files [-l library]
++#
# Options:
-
-# -o objfile Override default executable name a.out.
@@ -106,7 +107,13 @@ Much cleanup of the script. Added various options such as
+CC=${CC_f2c:-'cc '}
EFL=${EFL:-efl}
EFLFLAGS=${EFLFLAGS:-'system=portable deltastno=10'}
-@@ -58,25 +83,29 @@
+@@ -53,30 +78,34 @@
+ F2C=${F2C:-f2c}
+ F2CFLAGS=${F2CFLAGS:='-ARw8 -Nn802 -Nx400'}
+-CPP=${CPP:-/lib/cpp}
++CPP=${CPP:-/usr/bin/cpp}
+ rc=0
+ trap "rm -f $s $t; exit \$rc" 0
OUTF=a.out
cOPT=1
-set -- `getopt cCD:gI:N:Oo:Suw6 "$@"`