diff options
author | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-24 13:49:52 +0000 |
---|---|---|
committer | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-24 13:49:52 +0000 |
commit | 1172e97bde8314d0bfdd35d0b9c5b361d7ed9cec (patch) | |
tree | 6348aa256c830c5b3ecac2919b32b79ae6999377 /misc/tcb/files | |
parent | Add SUBDIR += vtwm (diff) |
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
Notes
Notes:
svn path=/head/; revision=15587
Diffstat (limited to 'misc/tcb/files')
-rw-r--r-- | misc/tcb/files/patch-aa | 39 |
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 |