diff options
author | grog <grog@FreeBSD.org> | 2001-02-11 14:58:11 +0800 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 2001-02-11 14:58:11 +0800 |
commit | 2c39fc37ee40a9b044e1e43bf67fe8bcecf7fc40 (patch) | |
tree | af5763af76935d3bf6a3805cd43f6233e56a7a86 /cad/sceptre/files | |
parent | 442f83a43b3623995a45e141451709d8a7ff140a (diff) | |
download | freebsd-ports-graphics-2c39fc37ee40a9b044e1e43bf67fe8bcecf7fc40.tar.gz freebsd-ports-graphics-2c39fc37ee40a9b044e1e43bf67fe8bcecf7fc40.tar.zst freebsd-ports-graphics-2c39fc37ee40a9b044e1e43bf67fe8bcecf7fc40.zip |
SCEPTRE (System for Circuit Evaluation and Prediction of Transient
Radiation Effects) is a general purpose circuit analysis program which
provides all three major analyses, AC, DC, and transient analysis, on
either linear or nonlinear networks. It employs a free-form input
language and state variable methods to simulate problems of interest
to electrical engineers.
Requested-by: "Pedro F. Giffuni" <pfg1+@pitt.edu>
Diffstat (limited to 'cad/sceptre/files')
-rw-r--r-- | cad/sceptre/files/patch-aa | 19 | ||||
-rw-r--r-- | cad/sceptre/files/patch-ab | 41 |
2 files changed, 60 insertions, 0 deletions
diff --git a/cad/sceptre/files/patch-aa b/cad/sceptre/files/patch-aa new file mode 100644 index 00000000000..6323c53be39 --- /dev/null +++ b/cad/sceptre/files/patch-aa @@ -0,0 +1,19 @@ +--- x3/qqqcpu.f Mon Oct 4 03:53:42 1999 ++++ x3/qqqcpu.f Sun Feb 11 14:34:50 2001 +@@ -9,9 +9,14 @@ + data r0 /1d6/ + intrinsic ETime + +- CALL ETime(RESULT, TARRAY) ++C This appears not to be complete. The original code contained the ++C following two code lines, which generate an "incorrect type" error. ++C Since I don't have a description of ETIME, just carry out the sentiment ++C of the comment above ++C CALL ETime(RESULT, TARRAY) + +- r2 = r0 - tarray(1) ++C r2 = r0 - tarray(1) ++ r2 = r0 + + RETURN + diff --git a/cad/sceptre/files/patch-ab b/cad/sceptre/files/patch-ab new file mode 100644 index 00000000000..17deaf8fb79 --- /dev/null +++ b/cad/sceptre/files/patch-ab @@ -0,0 +1,41 @@ +--- Makefile~ Sun Nov 12 17:55:44 2000 ++++ Makefile Sun Feb 11 16:30:32 2001 +@@ -1,4 +1,4 @@ +-FC = g77 ++FC = f77 + FFLAGS = -fno-automatic -O + BASEDIR = `pwd` + INSTDIR = /usr/local +@@ -13,19 +13,19 @@ + cd x1; ${MAKE} "FC=${FC}" "FFLAGS=${FFLAGS}" + cd x2; ${MAKE} "FC=${FC}" "FFLAGS=${FFLAGS}" + install: +- install -s -m 755 x1/exec1 ${BINDIR} +- install -m 644 x2/exec2.o ${LIBDIR} +- install -m 644 x2/libx2.a ${LIBDIR} +- install -s -m 755 x3/ngp_gnu ${BINDIR} +- install -s -m 755 x3/asa ${BINDIR} +- install -m 644 x3/libx3.a ${LIBDIR} +- install -m 755 bin/sceptre ${BINDIR} +- install -m 755 bin/sceptre.inst ${BINDIR} +- install -m 755 bin/ngp ${BINDIR} +- install -m 644 lib/usrlib.a ${LIBDIR} +- install -m 644 lib/modellib.dat ${LIBDIR} +- install -d ${ETCDIR} +- install -m 644 etc/ngp.rc ${ETCDIR} ++ install -c -s -m 755 x1/exec1 ${BINDIR} ++ install -c -m 644 x2/exec2.o ${LIBDIR} ++ install -c -m 644 x2/libx2.a ${LIBDIR} ++ install -c -s -m 755 x3/ngp_gnu ${BINDIR} ++ install -c -s -m 755 x3/asa ${BINDIR} ++ install -c -m 644 x3/libx3.a ${LIBDIR} ++ install -c -m 755 bin/sceptre ${BINDIR} ++ install -c -m 755 bin/sceptre.inst ${BINDIR} ++ install -c -m 755 bin/ngp ${BINDIR} ++ install -c -m 644 lib/usrlib.a ${LIBDIR} ++ install -c -m 644 lib/modellib.dat ${LIBDIR} ++ install -c -d ${ETCDIR} ++ install -c -m 644 etc/ngp.rc ${ETCDIR} + @echo "installation finished" + uninstall: + @rm -fv ${BINDIR}/exec1 |