diff options
author | andreas <andreas@FreeBSD.org> | 1998-09-09 19:22:37 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1998-09-09 19:22:37 +0000 |
commit | e271de250775b872bbd5d5a1d830a3c7e48d0bee (patch) | |
tree | 3f4411495e5a989957b1d09de898971c83c4e2ff /deskutils/abacus/files | |
parent | a7d62ad9f6c5950b77a88741ec27d7e42a95a020 (diff) | |
download | FreeBSD-ports-e271de250775b872bbd5d5a1d830a3c7e48d0bee.zip FreeBSD-ports-e271de250775b872bbd5d5a1d830a3c7e48d0bee.tar.gz |
new port abacus
spreadsheet for Tcl/Tk
Abacus is a small, light and easy to use spreadsheet being developed
as graduation project under the tutorship of Prof. Arlindo Oliveira,
and the spreadsheet is being developed using the Tcl/Tk toolkit, as
well as plain old C/C++ for all the "number-crunching" tasks.
PR: 7674
Submitted by: Andrey V. Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'deskutils/abacus/files')
-rw-r--r-- | deskutils/abacus/files/patch-aa | 26 | ||||
-rw-r--r-- | deskutils/abacus/files/patch-ab | 19 | ||||
-rw-r--r-- | deskutils/abacus/files/patch-ac | 11 | ||||
-rw-r--r-- | deskutils/abacus/files/patch-ad | 11 |
4 files changed, 67 insertions, 0 deletions
diff --git a/deskutils/abacus/files/patch-aa b/deskutils/abacus/files/patch-aa new file mode 100644 index 0000000..98e32a7 --- /dev/null +++ b/deskutils/abacus/files/patch-aa @@ -0,0 +1,26 @@ +--- Makefile Thu Aug 6 21:15:12 1998 ++++ /home/andy/tmp/wrk/Makefile Tue Aug 18 15:24:56 1998 +@@ -1,4 +1,4 @@ +-# $Id: Makefile,v 1.20 1998/08/06 21:15:11 aml Exp $ ++# $Id: Makefile,v 1.20 1998/08/06 21:15:11 aml Exp andy $ + # Main Makefile for xxl + # + # Authors: Arlindo Oliveira (aml@inesc.pt) +@@ -8,7 +8,7 @@ + # explicit permission of the copyright holder. + # + +-CCFLAGS= -g ++CCFLAGS= $(CFLAGS) -I$(X11BASE)/include -I$(LOCALBASE)/include/tcl8.0 -I$(LOCALBASE)/include/tk8.0 + TARGET = tcl_interf/nxlc + DIRS = display calc io graphics include runlib lib canvas tcl_interf + TARDIRS = $(DIRS) lib RCS tests regressive doc +@@ -32,7 +32,7 @@ + rm -f *~ gmon.out tests/* regressive/*.bck + + dep : version +- for i in $(DIRS); do $(MAKE) dep -C $$i; done ++ for i in $(DIRS); do $(MAKE) dep -C $$i CCFLAGS="$(CCFLAGS)"; done + rm -f *~ + + diff --git a/deskutils/abacus/files/patch-ab b/deskutils/abacus/files/patch-ab new file mode 100644 index 0000000..ab95910 --- /dev/null +++ b/deskutils/abacus/files/patch-ab @@ -0,0 +1,19 @@ +--- abacus Mon Aug 3 11:25:52 1998 ++++ /home/andy/tmp/wrk/abacus Tue Aug 18 15:55:55 1998 +@@ -1,6 +1,6 @@ + #!/bin/sh + # The next line restarts using nxlc \ +-exec $ABACUS_HOME/tcl_interf/nxlc -f $0 ${1+"$@"} ++exec /usr/X11R6/share/abacus/tcl_interf/nxlc -f $0 ${1+"$@"} + # $Id: xxl,v 1.9 1997/03/27 10:00:57 aml Exp $ + + global env +@@ -15,7 +15,7 @@ + if [info exists env(ABACUS_HOME)] { + set home $env(ABACUS_HOME) + } else { +- set home "." ++ set home "/usr/X11R6/share/abacus" + } + + wm withdraw . diff --git a/deskutils/abacus/files/patch-ac b/deskutils/abacus/files/patch-ac new file mode 100644 index 0000000..a02c27f --- /dev/null +++ b/deskutils/abacus/files/patch-ac @@ -0,0 +1,11 @@ +--- calc/Makefile Thu Nov 6 00:30:09 1997 ++++ /home/andy/tmp/wrk/calc/Makefile Tue Aug 18 15:32:43 1998 +@@ -58,7 +58,7 @@ + $(LEX) -i -t scan.l > scan.c + + gram.o: gram.cc +- $(CCC) $(IFLAGS) -g gram.cc -o gram.o -c ++ $(CCC) $(CCFLAGS) $(IFLAGS) -g gram.cc -o gram.o -c + + gram.cc: gram.y scan.c + $(YACC) -d gram.y diff --git a/deskutils/abacus/files/patch-ad b/deskutils/abacus/files/patch-ad new file mode 100644 index 0000000..7d2cc01 --- /dev/null +++ b/deskutils/abacus/files/patch-ad @@ -0,0 +1,11 @@ +--- tcl_interf/Makefile Thu Aug 6 21:08:39 1998 ++++ /home/andy/tmp/wrk/tcl_interf/Makefile Tue Aug 18 15:37:43 1998 +@@ -23,7 +23,7 @@ + LIBDIR = ../lib + + XXL_LIBS = $(LIBDIR)/libcalc.a $(LIBDIR)/libio.a $(LIBDIR)/libcanvas.a +-LIBS = -ltk8.0 -ltcl8.0 -lX11 -ldl -lm ++LIBS = -ltk80 -ltcl80 -lX11 -lm + + CC = gcc + CCC = g++ |