diff options
author | ache <ache@FreeBSD.org> | 1995-01-05 04:21:11 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-01-05 04:21:11 +0000 |
commit | 6c5dfc5d79c468cf377ef085cf7b73de6abacbc8 (patch) | |
tree | fa5f559a5d469338692787fecf2628797ef5e9a8 /archivers/zoo/files | |
parent | 5c2eff7ff4d70ac7efcb9cc435bebf4d6ff06233 (diff) | |
download | FreeBSD-ports-6c5dfc5d79c468cf377ef085cf7b73de6abacbc8.zip FreeBSD-ports-6c5dfc5d79c468cf377ef085cf7b73de6abacbc8.tar.gz |
Addition to upgrade
Diffstat (limited to 'archivers/zoo/files')
-rw-r--r-- | archivers/zoo/files/patch-ab | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/archivers/zoo/files/patch-ab b/archivers/zoo/files/patch-ab new file mode 100644 index 0000000..6613d11 --- /dev/null +++ b/archivers/zoo/files/patch-ab @@ -0,0 +1,68 @@ +*** makefile.old Thu Aug 8 09:34:44 1991 +--- makefile Thu Jan 5 05:07:23 1995 +*************** +*** 18,30 **** + + MAKE = make # needed for some systems e.g. older BSD + +! CC = cc +! CFLAGS = + MODEL = + EXTRA = -DBIG_MEM -DNDEBUG + LINTFLAGS = -DLINT +! OPTIM = -O +! DESTDIR = /usr/local/bin + + #List of all object files created for Zoo + ZOOOBJS = addbfcrc.o addfname.o basename.o comment.o crcdefs.o \ +--- 18,30 ---- + + MAKE = make # needed for some systems e.g. older BSD + +! #CC = cc +! #CFLAGS = + MODEL = + EXTRA = -DBIG_MEM -DNDEBUG + LINTFLAGS = -DLINT +! OPTIM = $(CFLAGS) +! DESTDIR = $(PREFIX)/bin + + #List of all object files created for Zoo + ZOOOBJS = addbfcrc.o addfname.o basename.o comment.o crcdefs.o \ +*************** +*** 67,73 **** + @echo "lint_turboc: Run lint under **IX for checking Turbo C/MSDOS code" + + # install alpha zoo as "tzoo" +! install: + mv zoo $(DESTDIR)/tzoo + + # install beta zoo as "bzoo" +--- 67,73 ---- + @echo "lint_turboc: Run lint under **IX for checking Turbo C/MSDOS code" + + # install alpha zoo as "tzoo" +! inst_test: + mv zoo $(DESTDIR)/tzoo + + # install beta zoo as "bzoo" +*************** +*** 75,82 **** + mv zoo $(DESTDIR)/bzoo + + # install production zoo as "zoo" +! inst_prod: +! mv zoo $(DESTDIR)/zoo + + # executable targets + TARGETS = zoo fiz +--- 75,83 ---- + mv zoo $(DESTDIR)/bzoo + + # install production zoo as "zoo" +! install: +! $(INSTALL) $(COPY) $(STRIP) -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) $(TARGETS) $(DESTDIR) +! $(INSTALL) -c -o $(BINOWN) -g $(BINGRP) -m 444 zoo.1 fiz.1 $(PREFIX)/man/man1 + + # executable targets + TARGETS = zoo fiz |