summaryrefslogtreecommitdiff
path: root/x11/blast
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-11-13 12:41:39 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-11-13 12:41:39 +0000
commit92cb14961276109a5c384faad8b01035e6c9a243 (patch)
tree52a6ccb1657c964ed74817c0b5617d8297802c57 /x11/blast
parentuse updated net/wais (diff)
Fix Makefiles to work with new bsd.port.mk. Mostly just replacing
${COMPRESS_MAN} so they will at least work. I will come back later and get rid of all the .if !defined(NOMANCOMPRESS) stuff.
Notes
Notes: svn path=/head/; revision=4440
Diffstat (limited to 'x11/blast')
-rw-r--r--x11/blast/Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/x11/blast/Makefile b/x11/blast/Makefile
index 43e02b118201..6f6d4c982299 100644
--- a/x11/blast/Makefile
+++ b/x11/blast/Makefile
@@ -3,7 +3,7 @@
# Date created: 9 Jul 1996
# Whom: searle
#
-# $Id: Makefile,v 1.1.1.1 1996/07/31 22:07:51 chuckr Exp $
+# $Id: Makefile,v 1.2 1996/08/03 22:39:17 chuckr Exp $
#
DISTNAME= blast-1.0-ss-9.03
@@ -18,8 +18,7 @@ MASTER_SITES= ftp://hpux.csc.liv.ac.uk/hpux/X11/Demos/blast-1.0/ \
MAINTAINER= searle@longacre.demon.co.uk
USE_X11= yes
-
-MANDIR= $(PREFIX)/man/man1
+MAN1= blast.1
pre-configure:
mv $(WRKDIR)/blast-1.0 $(WRKSRC)
@@ -28,10 +27,7 @@ do-build:
cc $(WRKSRC)/blast.c -I/usr/X11R6/include -O2 -L$(PREFIX)/lib -lX11 -lXext -o $(WRKSRC)/blast
do-install:
- $(INSTALL) -c $(WRKSRC)/blast $(PREFIX)/bin/blast
- $(INSTALL) -c $(WRKSRC)/blast.man $(DESTDIR)$(MANDIR)/blast.1
-.if !defined(NOMANCOMPRESS)
- gzip -9nf $(MANDIR)/blast.1
-.endif
+ $(INSTALL_PROGRAM) $(WRKSRC)/blast $(PREFIX)/bin/blast
+ $(INSTALL_MAN) $(WRKSRC)/blast.man $(PREFIX)/man/man1/blast.1
.include <bsd.port.mk>