aboutsummaryrefslogtreecommitdiffstats
path: root/misc/tcb/files
diff options
context:
space:
mode:
authorjseger <jseger@FreeBSD.org>1998-12-24 21:49:52 +0800
committerjseger <jseger@FreeBSD.org>1998-12-24 21:49:52 +0800
commit7b07ebc9b753613032e4c1df2247b76b394a7861 (patch)
tree288d97c96e0f44e679ea9693640fc68c7624d1c3 /misc/tcb/files
parent8eaefc6c630cae53858c3abbee2c6d7db01c86e6 (diff)
downloadfreebsd-ports-gnome-7b07ebc9b753613032e4c1df2247b76b394a7861.tar.gz
freebsd-ports-gnome-7b07ebc9b753613032e4c1df2247b76b394a7861.tar.zst
freebsd-ports-gnome-7b07ebc9b753613032e4c1df2247b76b394a7861.zip
Import of tcb v1.4a
Tcb is a file viewer that works on a terminal. It allows view file in ASCII or HEX format. PR: ports/8911 Submitted by: andy@icc.surw.chel.su
Diffstat (limited to 'misc/tcb/files')
-rw-r--r--misc/tcb/files/patch-aa39
1 files changed, 39 insertions, 0 deletions
diff --git a/misc/tcb/files/patch-aa b/misc/tcb/files/patch-aa
new file mode 100644
index 000000000000..e3e973bddd31
--- /dev/null
+++ b/misc/tcb/files/patch-aa
@@ -0,0 +1,39 @@
+--- config.sh.orig Mon Nov 23 09:51:15 1998
++++ config.sh Thu Dec 24 08:41:14 1998
+@@ -56,20 +56,24 @@
+ fi
+ fi
+
++if [ `uname` = FreeBSD ]; then # FreeBSD
++LIB=$USR_DIR/share/$TCB
++else
+ LIB=$USR_DIR/lib/$TCB
++fi
+ BIN=$USR_DIR/bin
+ MAN=$USR_DIR/man/man1
+
+ cat >> .config <<EOF
+-CC= gcc
++CC?= gcc
+ #CFLAGS= -Wall -O2 -g
+-CFLAGS= -Wall -O2
++CFLAGS?= -Wall -O2
+ #LDFLAGS=
+ LDFLAGS= -s
+ OBJS= alloc.o child.o code.o disp.o fork.o init.o key.o menu.o \\
+ mode.o scroll.o shell.o str.o sub.o tc.o tcb.o vt.o
+ EOF
+-if which grep >/dev/null && make -v 2>&1|grep 'GNU Make' >/dev/null 2>&1 && which sed >/dev/null; then
++if which grep >/dev/null && gmake -v 2>&1|grep 'GNU Make' >/dev/null 2>&1 && which sed >/dev/null; then
+ cat >> .config <<EOF
+ PROT= mode.P tc.P tcb.P
+
+@@ -113,7 +117,7 @@
+
+ cat > install.sh <<EOF
+ #! /bin/sh
+-cd src; make; cd ..
++cd src; gmake; cd ..
+ echo 'Installing tcb:'
+ mkdir -p \$1$BIN
+ mkdir -p \$1$LIB